Home | History | Annotate | Download | only in button

Lines Matching refs:Button

12 class Button;
15 // An interface implemented by an object to let it know that a button was
19 virtual void ButtonPressed(Button* sender, const ui::Event& event) = 0;
25 // A View representing a button. Depending on the specific type, the button
27 class VIEWS_EXPORT Button : public View {
29 virtual ~Button();
31 // Button states for various button sub-types.
40 // Button styles with associated images and border painters.
62 // Construct the Button with a Listener. The listener can be NULL. This can be
65 explicit Button(ButtonListener* listener);
67 // Cause the button to notify the listener that a click occurred.
70 // The button's listener. Notified when clicked.
80 // The id tag associated with this button. Used to disambiguate buttons in
84 DISALLOW_COPY_AND_ASSIGN(Button);