| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_EXAMPLES_BUTTON_EXAMPLE_H_ | 5 #ifndef UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ |
| 6 #define UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ | 6 #define UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "ui/views/controls/button/button.h" | 9 #include "ui/views/controls/button/button.h" |
| 10 #include "ui/views/examples/example_base.h" | 10 #include "ui/views/examples/example_base.h" |
| 11 | 11 |
| 12 namespace views { | 12 namespace views { |
| 13 | 13 |
| 14 class ImageButton; | 14 class ImageButton; |
| 15 class LabelButton; | 15 class LabelButton; |
| 16 | 16 |
| 17 namespace examples { | 17 namespace examples { |
| 18 | 18 |
| 19 // ButtonExample simply counts the number of clicks. | 19 // ButtonExample simply counts the number of clicks. |
| 20 class VIEWS_EXAMPLES_EXPORT ButtonExample : public ExampleBase, | 20 class VIEWS_EXAMPLES_EXPORT ButtonExample : public ExampleBase, |
| 21 public ButtonListener { | 21 public ButtonListener { |
| 22 public: | 22 public: |
| 23 ButtonExample(); | 23 ButtonExample(); |
| 24 ~ButtonExample() override; | 24 ~ButtonExample() override; |
| 25 | 25 |
| 26 // ExampleBase: | 26 // ExampleBase: |
| 27 void CreateExampleView(View* container) override; | 27 void CreateExampleView(View* container) override; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 void LabelButtonPressed(const ui::Event& event); | 30 void LabelButtonPressed(LabelButton* label_button, const ui::Event& event); |
| 31 | 31 |
| 32 // ButtonListener: | 32 // ButtonListener: |
| 33 void ButtonPressed(Button* sender, const ui::Event& event) override; | 33 void ButtonPressed(Button* sender, const ui::Event& event) override; |
| 34 | 34 |
| 35 // Example buttons. | 35 // Example buttons. |
| 36 LabelButton* label_button_; | 36 LabelButton* label_button_ = nullptr; |
| 37 ImageButton* image_button_; | 37 LabelButton* styled_button_ = nullptr; |
| 38 LabelButton* disabled_button_ = nullptr; |
| 39 ImageButton* image_button_ = nullptr; |
| 38 | 40 |
| 39 const gfx::ImageSkia* icon_; | 41 const gfx::ImageSkia* icon_ = nullptr; |
| 40 | 42 |
| 41 // The number of times the buttons are pressed. | 43 // The number of times the buttons are pressed. |
| 42 int count_; | 44 int count_ = 0; |
| 43 | 45 |
| 44 DISALLOW_COPY_AND_ASSIGN(ButtonExample); | 46 DISALLOW_COPY_AND_ASSIGN(ButtonExample); |
| 45 }; | 47 }; |
| 46 | 48 |
| 47 } // namespace examples | 49 } // namespace examples |
| 48 } // namespace views | 50 } // namespace views |
| 49 | 51 |
| 50 #endif // UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ | 52 #endif // UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ |
| OLD | NEW |