OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/views/controls/button/button.h" | 5 #include "ui/views/controls/button/button.h" |
6 | 6 |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "ui/accessibility/ax_view_state.h" | 8 #include "ui/accessibility/ax_view_state.h" |
9 | 9 |
10 namespace views { | 10 namespace views { |
11 | 11 |
12 //////////////////////////////////////////////////////////////////////////////// | 12 //////////////////////////////////////////////////////////////////////////////// |
13 // Button, static public: | 13 // Button, static public: |
14 | 14 |
15 // static | 15 // static |
16 Button::ButtonState Button::GetButtonStateFrom(ui::NativeTheme::State state) { | 16 Button::ButtonState Button::GetButtonStateFrom(ui::NativeTheme::State state) { |
17 switch (state) { | 17 switch (state) { |
18 case ui::NativeTheme::kDisabled: return Button::STATE_DISABLED; | 18 case ui::NativeTheme::kDisabled: return Button::STATE_DISABLED; |
19 case ui::NativeTheme::kHovered: return Button::STATE_HOVERED; | 19 case ui::NativeTheme::kHovered: return Button::STATE_HOVERED; |
20 case ui::NativeTheme::kNormal: return Button::STATE_NORMAL; | 20 case ui::NativeTheme::kNormal: return Button::STATE_NORMAL; |
21 case ui::NativeTheme::kPressed: return Button::STATE_PRESSED; | 21 case ui::NativeTheme::kPressed: return Button::STATE_PRESSED; |
22 case ui::NativeTheme::kMaxState: NOTREACHED() << "Unknown state: " << state; | 22 default: NOTREACHED(); return Button::STATE_NORMAL; |
sky
2014/07/10 16:05:39
Same comment here about compile error.
Peter Kasting
2014/07/10 18:23:15
See reply on other comment.
Peter Kasting
2014/07/10 21:44:25
Changed this.
| |
23 } | 23 } |
24 return Button::STATE_NORMAL; | |
25 } | 24 } |
26 | 25 |
27 //////////////////////////////////////////////////////////////////////////////// | 26 //////////////////////////////////////////////////////////////////////////////// |
28 // Button, public: | 27 // Button, public: |
29 | 28 |
30 Button::~Button() { | 29 Button::~Button() { |
31 } | 30 } |
32 | 31 |
33 void Button::SetTooltipText(const base::string16& tooltip_text) { | 32 void Button::SetTooltipText(const base::string16& tooltip_text) { |
34 tooltip_text_ = tooltip_text; | 33 tooltip_text_ = tooltip_text; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
68 } | 67 } |
69 | 68 |
70 void Button::NotifyClick(const ui::Event& event) { | 69 void Button::NotifyClick(const ui::Event& event) { |
71 // We can be called when there is no listener, in cases like double clicks on | 70 // We can be called when there is no listener, in cases like double clicks on |
72 // menu buttons etc. | 71 // menu buttons etc. |
73 if (listener_) | 72 if (listener_) |
74 listener_->ButtonPressed(this, event); | 73 listener_->ButtonPressed(this, event); |
75 } | 74 } |
76 | 75 |
77 } // namespace views | 76 } // namespace views |
OLD | NEW |