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/native_theme/native_theme.h" | 8 #include "ui/native_theme/native_theme.h" |
9 #include "ui/views/view.h" | 9 #include "ui/views/view.h" |
10 | 10 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
62 | 62 |
63 protected: | 63 protected: |
64 // Construct the Button with a Listener. The listener can be NULL. This can be | 64 // Construct the Button with a Listener. The listener can be NULL. This can be |
65 // true of buttons that don't have a listener - e.g. menubuttons where there's | 65 // true of buttons that don't have a listener - e.g. menubuttons where there's |
66 // no default action and checkboxes. | 66 // no default action and checkboxes. |
67 explicit Button(ButtonListener* listener); | 67 explicit Button(ButtonListener* listener); |
68 | 68 |
69 // Cause the button to notify the listener that a click occurred. | 69 // Cause the button to notify the listener that a click occurred. |
70 virtual void NotifyClick(const ui::Event& event); | 70 virtual void NotifyClick(const ui::Event& event); |
71 | 71 |
72 // Called when a button gets released without triggering an action or when | |
73 // a NOTIFY_ON_PRESS button is pressed with a wrong mouse button. | |
74 // Note: This is only wired up for mouse button events AND not gesture | |
75 // events. | |
sadrul
2015/11/25 22:18:42
*and
varkha
2015/11/25 22:35:48
Done.
| |
76 virtual void OnClickCanceled(const ui::Event& event); | |
77 | |
72 // The button's listener. Notified when clicked. | 78 // The button's listener. Notified when clicked. |
73 ButtonListener* listener_; | 79 ButtonListener* listener_; |
74 | 80 |
75 private: | 81 private: |
76 // The text shown in a tooltip. | 82 // The text shown in a tooltip. |
77 base::string16 tooltip_text_; | 83 base::string16 tooltip_text_; |
78 | 84 |
79 // Accessibility data. | 85 // Accessibility data. |
80 base::string16 accessible_name_; | 86 base::string16 accessible_name_; |
81 | 87 |
82 // The id tag associated with this button. Used to disambiguate buttons in | 88 // The id tag associated with this button. Used to disambiguate buttons in |
83 // the ButtonListener implementation. | 89 // the ButtonListener implementation. |
84 int tag_; | 90 int tag_; |
85 | 91 |
86 DISALLOW_COPY_AND_ASSIGN(Button); | 92 DISALLOW_COPY_AND_ASSIGN(Button); |
87 }; | 93 }; |
88 | 94 |
89 } // namespace views | 95 } // namespace views |
90 | 96 |
91 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ | 97 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ |
OLD | NEW |