| 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/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "ui/views/controls/button/text_button.h" | 10 #include "ui/views/controls/button/text_button.h" |
| 11 #include "ui/views/examples/example_base.h" | 11 #include "ui/views/examples/example_base.h" |
| 12 | 12 |
| 13 namespace views { | 13 namespace views { |
| 14 | 14 |
| 15 class ImageButton; | 15 class ImageButton; |
| 16 class LabelButton; | 16 class LabelButton; |
| 17 | 17 |
| 18 namespace examples { | 18 namespace examples { |
| 19 | 19 |
| 20 // ButtonExample simply counts the number of clicks. | 20 // ButtonExample simply counts the number of clicks. |
| 21 class ButtonExample : public ExampleBase, public ButtonListener { | 21 class VIEWS_EXAMPLES_EXPORT ButtonExample : public ExampleBase, |
| 22 public ButtonListener { |
| 22 public: | 23 public: |
| 23 ButtonExample(); | 24 ButtonExample(); |
| 24 virtual ~ButtonExample(); | 25 virtual ~ButtonExample(); |
| 25 | 26 |
| 26 // Overridden from ExampleBase: | 27 // Overridden from ExampleBase: |
| 27 virtual void CreateExampleView(View* container) OVERRIDE; | 28 virtual void CreateExampleView(View* container) OVERRIDE; |
| 28 | 29 |
| 29 private: | 30 private: |
| 30 void TextButtonPressed(const ui::Event& event); | 31 void TextButtonPressed(const ui::Event& event); |
| 31 void LabelButtonPressed(const ui::Event& event); | 32 void LabelButtonPressed(const ui::Event& event); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 46 // The number of times the buttons are pressed. | 47 // The number of times the buttons are pressed. |
| 47 int count_; | 48 int count_; |
| 48 | 49 |
| 49 DISALLOW_COPY_AND_ASSIGN(ButtonExample); | 50 DISALLOW_COPY_AND_ASSIGN(ButtonExample); |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 } // namespace examples | 53 } // namespace examples |
| 53 } // namespace views | 54 } // namespace views |
| 54 | 55 |
| 55 #endif // UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ | 56 #endif // UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_ |
| OLD | NEW |