| 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. |
| 73 // Note: This is only wired up for mouse button events AND not gesture |
| 74 // events. |
| 75 virtual void NotifyMouseReleasedWithoutClick(const ui::Event& event); |
| 76 |
| 72 // The button's listener. Notified when clicked. | 77 // The button's listener. Notified when clicked. |
| 73 ButtonListener* listener_; | 78 ButtonListener* listener_; |
| 74 | 79 |
| 75 private: | 80 private: |
| 76 // The text shown in a tooltip. | 81 // The text shown in a tooltip. |
| 77 base::string16 tooltip_text_; | 82 base::string16 tooltip_text_; |
| 78 | 83 |
| 79 // Accessibility data. | 84 // Accessibility data. |
| 80 base::string16 accessible_name_; | 85 base::string16 accessible_name_; |
| 81 | 86 |
| 82 // The id tag associated with this button. Used to disambiguate buttons in | 87 // The id tag associated with this button. Used to disambiguate buttons in |
| 83 // the ButtonListener implementation. | 88 // the ButtonListener implementation. |
| 84 int tag_; | 89 int tag_; |
| 85 | 90 |
| 86 DISALLOW_COPY_AND_ASSIGN(Button); | 91 DISALLOW_COPY_AND_ASSIGN(Button); |
| 87 }; | 92 }; |
| 88 | 93 |
| 89 } // namespace views | 94 } // namespace views |
| 90 | 95 |
| 91 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ | 96 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_H_ |
| OLD | NEW |