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_CONTROLS_BUTTON_IMAGE_BUTTON_H_ | 5 #ifndef UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_ |
6 #define UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_ | 6 #define UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_ |
7 | 7 |
8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "ui/base/layout.h" | 11 #include "ui/base/layout.h" |
12 #include "ui/gfx/image/image_skia.h" | 12 #include "ui/gfx/image/image_skia.h" |
13 #include "ui/views/controls/button/custom_button.h" | 13 #include "ui/views/controls/button/custom_button.h" |
14 | 14 |
15 namespace views { | 15 namespace views { |
16 | 16 |
17 class Painter; | 17 class Painter; |
18 | 18 |
19 // An image button. | 19 // An image button. |
20 | 20 |
21 // Note that this type of button is not focusable by default and will not be | 21 // Note that this type of button is not focusable by default and will not be |
22 // part of the focus chain. Call SetFocusable(true) to make it part of the | 22 // part of the focus chain, unless in accessibility mode. Call |
23 // focus chain. | 23 // SetFocusBehavior(CONTROL) to make it part of the focus chain. |
24 | 24 |
tapted
2016/03/15 05:05:31
(while you're here - this blank line should be del
karandeepb
2016/03/17 07:24:46
Done.
| |
25 class VIEWS_EXPORT ImageButton : public CustomButton { | 25 class VIEWS_EXPORT ImageButton : public CustomButton { |
26 public: | 26 public: |
27 static const char kViewClassName[]; | 27 static const char kViewClassName[]; |
28 | 28 |
29 enum HorizontalAlignment { | 29 enum HorizontalAlignment { |
30 ALIGN_LEFT = 0, | 30 ALIGN_LEFT = 0, |
31 ALIGN_CENTER, | 31 ALIGN_CENTER, |
32 ALIGN_RIGHT | 32 ALIGN_RIGHT |
33 }; | 33 }; |
34 | 34 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
162 // The parent class's tooltip_text_ is displayed when not toggled, and | 162 // The parent class's tooltip_text_ is displayed when not toggled, and |
163 // this one is shown when toggled. | 163 // this one is shown when toggled. |
164 base::string16 toggled_tooltip_text_; | 164 base::string16 toggled_tooltip_text_; |
165 | 165 |
166 DISALLOW_COPY_AND_ASSIGN(ToggleImageButton); | 166 DISALLOW_COPY_AND_ASSIGN(ToggleImageButton); |
167 }; | 167 }; |
168 | 168 |
169 } // namespace views | 169 } // namespace views |
170 | 170 |
171 #endif // UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_ | 171 #endif // UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_ |
OLD | NEW |