Chromium Code Reviews| 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 #ifndef UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ | 5 #ifndef UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ |
| 6 #define UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ | 6 #define UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ |
| 7 | 7 |
| 8 #include "ui/views/view.h" | 8 #include "ui/views/view.h" |
| 9 | 9 |
| 10 namespace views { | 10 namespace views { |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 virtual ~ButtonListener() {} | 22 virtual ~ButtonListener() {} |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 // A View representing a button. Depending on the specific type, the button | 25 // A View representing a button. Depending on the specific type, the button |
| 26 // could be implemented by a native control or custom rendered. | 26 // could be implemented by a native control or custom rendered. |
| 27 class VIEWS_EXPORT Button : public View { | 27 class VIEWS_EXPORT Button : public View { |
| 28 public: | 28 public: |
| 29 virtual ~Button(); | 29 virtual ~Button(); |
| 30 | 30 |
| 31 // Button states for various button sub-types. | 31 // Button states for various button sub-types. |
| 32 // TODO(msw): Add toggled state for checkboxes, radio buttons, etc. | |
| 33 enum ButtonState { | 32 enum ButtonState { |
| 34 STATE_NORMAL = 0, | 33 STATE_NORMAL = 0, |
| 35 STATE_HOVERED, | 34 STATE_HOVERED, |
| 36 STATE_PRESSED, | 35 STATE_PRESSED, |
| 37 STATE_DISABLED, | 36 STATE_DISABLED, |
| 38 STATE_COUNT, | 37 STATE_COUNT, |
| 39 }; | 38 }; |
| 40 | 39 |
| 41 // Button styles with associated images and border painters. | 40 // Button styles with associated images and border painters. |
| 42 // TODO(msw): Add "Blue Button", Checkbox, Radio, Menu, ComboBox, etc. | 41 // TODO(msw): Add "Blue Button", Menu, ComboBox, etc. |
| 43 enum ButtonStyle { | 42 enum ButtonStyle { |
| 44 STYLE_BUTTON = 0, | 43 STYLE_BUTTON = 0, |
| 45 STYLE_TEXTBUTTON, | 44 STYLE_TEXTBUTTON, |
| 46 STYLE_NATIVE_TEXTBUTTON, | 45 STYLE_NATIVE_TEXTBUTTON, |
| 46 STYLE_CHECKBOX, | |
|
msw
2013/05/21 02:24:11
Sorry for the reversal here, but remove these styl
tfarina
2013/05/21 02:50:53
Done.
| |
| 47 STYLE_RADIO, | |
| 47 STYLE_COUNT, | 48 STYLE_COUNT, |
| 48 }; | 49 }; |
| 49 | 50 |
| 50 void SetTooltipText(const string16& tooltip_text); | 51 void SetTooltipText(const string16& tooltip_text); |
| 51 | 52 |
| 52 int tag() const { return tag_; } | 53 int tag() const { return tag_; } |
| 53 void set_tag(int tag) { tag_ = tag; } | 54 void set_tag(int tag) { tag_ = tag; } |
| 54 | 55 |
| 55 void SetAccessibleName(const string16& name); | 56 void SetAccessibleName(const string16& name); |
| 56 | 57 |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 81 // The id tag associated with this button. Used to disambiguate buttons in | 82 // The id tag associated with this button. Used to disambiguate buttons in |
| 82 // the ButtonListener implementation. | 83 // the ButtonListener implementation. |
| 83 int tag_; | 84 int tag_; |
| 84 | 85 |
| 85 DISALLOW_COPY_AND_ASSIGN(Button); | 86 DISALLOW_COPY_AND_ASSIGN(Button); |
| 86 }; | 87 }; |
| 87 | 88 |
| 88 } // namespace views | 89 } // namespace views |
| 89 | 90 |
| 90 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ | 91 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ |
| OLD | NEW |