| 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 class MdTextButton; |
| 16 | 17 |
| 17 namespace examples { | 18 namespace examples { |
| 18 | 19 |
| 19 // ButtonExample simply counts the number of clicks. | 20 // ButtonExample simply counts the number of clicks. |
| 20 class VIEWS_EXAMPLES_EXPORT ButtonExample : public ExampleBase, | 21 class VIEWS_EXAMPLES_EXPORT ButtonExample : public ExampleBase, |
| 21 public ButtonListener { | 22 public ButtonListener { |
| 22 public: | 23 public: |
| 23 ButtonExample(); | 24 ButtonExample(); |
| 24 ~ButtonExample() override; | 25 ~ButtonExample() override; |
| 25 | 26 |
| 26 // ExampleBase: | 27 // ExampleBase: |
| 27 void CreateExampleView(View* container) override; | 28 void CreateExampleView(View* container) override; |
| 28 | 29 |
| 29 private: | 30 private: |
| 30 void LabelButtonPressed(LabelButton* label_button, const ui::Event& event); | 31 void LabelButtonPressed(LabelButton* label_button, const ui::Event& event); |
| 31 | 32 |
| 32 // ButtonListener: | 33 // ButtonListener: |
| 33 void ButtonPressed(Button* sender, const ui::Event& event) override; | 34 void ButtonPressed(Button* sender, const ui::Event& event) override; |
| 34 | 35 |
| 35 // Example buttons. | 36 // Example buttons. |
| 36 LabelButton* label_button_ = nullptr; | 37 LabelButton* label_button_ = nullptr; |
| 37 LabelButton* styled_button_ = nullptr; | 38 LabelButton* styled_button_ = nullptr; |
| 38 LabelButton* disabled_button_ = nullptr; | 39 LabelButton* disabled_button_ = nullptr; |
| 40 MdTextButton* md_button_ = nullptr; |
| 41 MdTextButton* md_default_button_ = nullptr; |
| 42 MdTextButton* md_prominent_button_ = nullptr; |
| 39 ImageButton* image_button_ = nullptr; | 43 ImageButton* image_button_ = nullptr; |
| 40 | 44 |
| 41 const gfx::ImageSkia* icon_ = nullptr; | 45 const gfx::ImageSkia* icon_ = nullptr; |
| 42 | 46 |
| 43 // The number of times the buttons are pressed. | 47 // The number of times the buttons are pressed. |
| 44 int count_ = 0; | 48 int count_ = 0; |
| 45 | 49 |
| 46 DISALLOW_COPY_AND_ASSIGN(ButtonExample); | 50 DISALLOW_COPY_AND_ASSIGN(ButtonExample); |
| 47 }; | 51 }; |
| 48 | 52 |
| 49 } // namespace examples | 53 } // namespace examples |
| 50 } // namespace views | 54 } // namespace views |
| 51 | 55 |
| 52 #endif // UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ | 56 #endif // UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ |
| OLD | NEW |