Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: ui/views/controls/button/image_button.h

Issue 1898633004: Views: Add new SetFocusBehavior method. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/views/controls/button/custom_button.h ('k') | ui/views/controls/button/label_button.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <memory> 8 #include <memory>
9 9
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "ui/base/layout.h" 12 #include "ui/base/layout.h"
13 #include "ui/gfx/image/image_skia.h" 13 #include "ui/gfx/image/image_skia.h"
14 #include "ui/views/controls/button/custom_button.h" 14 #include "ui/views/controls/button/custom_button.h"
15 15
16 namespace views { 16 namespace views {
17 17
18 class Painter; 18 class Painter;
19 19
20 // An image button. 20 // An image button.
21 21
22 // Note that this type of button is not focusable by default and will not be 22 // Note that this type of button is not focusable by default and will not be
23 // part of the focus chain. Call SetFocusable(true) to make it part of the 23 // part of the focus chain. Call SetFocusBehavior(FocusBehavior::ALWAYS) to
24 // focus chain. 24 // make it part of the focus chain.
25 25
26 class VIEWS_EXPORT ImageButton : public CustomButton { 26 class VIEWS_EXPORT ImageButton : public CustomButton {
27 public: 27 public:
28 static const char kViewClassName[]; 28 static const char kViewClassName[];
29 29
30 enum HorizontalAlignment { 30 enum HorizontalAlignment {
31 ALIGN_LEFT = 0, 31 ALIGN_LEFT = 0,
32 ALIGN_CENTER, 32 ALIGN_CENTER,
33 ALIGN_RIGHT 33 ALIGN_RIGHT
34 }; 34 };
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 // The parent class's tooltip_text_ is displayed when not toggled, and 163 // The parent class's tooltip_text_ is displayed when not toggled, and
164 // this one is shown when toggled. 164 // this one is shown when toggled.
165 base::string16 toggled_tooltip_text_; 165 base::string16 toggled_tooltip_text_;
166 166
167 DISALLOW_COPY_AND_ASSIGN(ToggleImageButton); 167 DISALLOW_COPY_AND_ASSIGN(ToggleImageButton);
168 }; 168 };
169 169
170 } // namespace views 170 } // namespace views
171 171
172 #endif // UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_ 172 #endif // UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_
OLDNEW
« no previous file with comments | « ui/views/controls/button/custom_button.h ('k') | ui/views/controls/button/label_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698