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

Side by Side Diff: ui/views/controls/button/menu_button.cc

Issue 1904753002: MenuButton: support Mac look & feel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add basic tests 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
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 #include "ui/views/controls/button/menu_button.h" 5 #include "ui/views/controls/button/menu_button.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "ui/accessibility/ax_view_state.h" 8 #include "ui/accessibility/ax_view_state.h"
9 #include "ui/base/dragdrop/drag_drop_types.h" 9 #include "ui/base/dragdrop/drag_drop_types.h"
10 #include "ui/base/l10n/l10n_util.h" 10 #include "ui/base/l10n/l10n_util.h"
11 #include "ui/base/resource/resource_bundle.h" 11 #include "ui/base/resource/resource_bundle.h"
12 #include "ui/base/ui_base_switches_util.h" 12 #include "ui/base/ui_base_switches_util.h"
13 #include "ui/events/event.h" 13 #include "ui/events/event.h"
14 #include "ui/events/event_constants.h" 14 #include "ui/events/event_constants.h"
15 #include "ui/gfx/canvas.h" 15 #include "ui/gfx/canvas.h"
16 #include "ui/gfx/image/image.h" 16 #include "ui/gfx/image/image.h"
17 #include "ui/gfx/screen.h" 17 #include "ui/gfx/screen.h"
18 #include "ui/gfx/text_constants.h" 18 #include "ui/gfx/text_constants.h"
19 #include "ui/resources/grit/ui_resources.h" 19 #include "ui/resources/grit/ui_resources.h"
20 #include "ui/strings/grit/ui_strings.h" 20 #include "ui/strings/grit/ui_strings.h"
21 #include "ui/views/animation/ink_drop_delegate.h" 21 #include "ui/views/animation/ink_drop_delegate.h"
22 #include "ui/views/controls/button/button.h" 22 #include "ui/views/controls/button/button.h"
23 #include "ui/views/controls/button/menu_button_listener.h" 23 #include "ui/views/controls/button/menu_button_listener.h"
24 #include "ui/views/controls/focusable_border.h"
24 #include "ui/views/mouse_constants.h" 25 #include "ui/views/mouse_constants.h"
25 #include "ui/views/resources/grit/views_resources.h" 26 #include "ui/views/resources/grit/views_resources.h"
27 #include "ui/views/style/platform_style.h"
26 #include "ui/views/widget/root_view.h" 28 #include "ui/views/widget/root_view.h"
27 #include "ui/views/widget/widget.h" 29 #include "ui/views/widget/widget.h"
28 30
29 using base::TimeTicks; 31 using base::TimeTicks;
30 using base::TimeDelta; 32 using base::TimeDelta;
31 33
32 namespace views { 34 namespace views {
33 35
34 // Default menu offset. 36 // Default menu offset.
35 static const int kDefaultMenuOffsetX = -2; 37 static const int kDefaultMenuOffsetX = -2;
36 static const int kDefaultMenuOffsetY = -4; 38 static const int kDefaultMenuOffsetY = -4;
37 39
38 // static 40 // static
39 const char MenuButton::kViewClassName[] = "MenuButton"; 41 const char MenuButton::kViewClassName[] = "MenuButton";
40 const int MenuButton::kMenuMarkerPaddingLeft = 3;
41 const int MenuButton::kMenuMarkerPaddingRight = -1;
42 42
43 //////////////////////////////////////////////////////////////////////////////// 43 ////////////////////////////////////////////////////////////////////////////////
44 // 44 //
45 // MenuButton::PressedLock 45 // MenuButton::PressedLock
46 // 46 //
47 //////////////////////////////////////////////////////////////////////////////// 47 ////////////////////////////////////////////////////////////////////////////////
48 48
49 MenuButton::PressedLock::PressedLock(MenuButton* menu_button) 49 MenuButton::PressedLock::PressedLock(MenuButton* menu_button)
50 : PressedLock(menu_button, false) {} 50 : PressedLock(menu_button, false) {}
51 51
(...skipping 14 matching lines...) Expand all
66 // 66 //
67 //////////////////////////////////////////////////////////////////////////////// 67 ////////////////////////////////////////////////////////////////////////////////
68 68
69 MenuButton::MenuButton(const base::string16& text, 69 MenuButton::MenuButton(const base::string16& text,
70 MenuButtonListener* menu_button_listener, 70 MenuButtonListener* menu_button_listener,
71 bool show_menu_marker) 71 bool show_menu_marker)
72 : LabelButton(nullptr, text), 72 : LabelButton(nullptr, text),
73 menu_offset_(kDefaultMenuOffsetX, kDefaultMenuOffsetY), 73 menu_offset_(kDefaultMenuOffsetX, kDefaultMenuOffsetY),
74 listener_(menu_button_listener), 74 listener_(menu_button_listener),
75 show_menu_marker_(show_menu_marker), 75 show_menu_marker_(show_menu_marker),
76 menu_marker_(ui::ResourceBundle::GetSharedInstance()
77 .GetImageNamed(IDR_MENU_DROPARROW)
78 .ToImageSkia()),
79 destroyed_flag_(nullptr), 76 destroyed_flag_(nullptr),
80 pressed_lock_count_(0), 77 pressed_lock_count_(0),
81 increment_pressed_lock_called_(nullptr), 78 increment_pressed_lock_called_(nullptr),
82 should_disable_after_press_(false), 79 should_disable_after_press_(false),
83 weak_factory_(this) { 80 weak_factory_(this) {
84 SetHorizontalAlignment(gfx::ALIGN_LEFT); 81 SetHorizontalAlignment(gfx::ALIGN_LEFT);
82 if (show_menu_marker_) {
tapted 2016/05/09 08:01:35 just call OnEnabledChanged
83 menu_marker_ = PlatformStyle::CreateMenuButtonArrow(enabled());
84 }
85 } 85 }
86 86
87 MenuButton::~MenuButton() { 87 MenuButton::~MenuButton() {
88 if (destroyed_flag_) 88 if (destroyed_flag_)
89 *destroyed_flag_ = true; 89 *destroyed_flag_ = true;
90 } 90 }
91 91
92 //////////////////////////////////////////////////////////////////////////////// 92 ////////////////////////////////////////////////////////////////////////////////
93 // 93 //
94 // MenuButton - Public APIs 94 // MenuButton - Public APIs
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 } 191 }
192 192
193 //////////////////////////////////////////////////////////////////////////////// 193 ////////////////////////////////////////////////////////////////////////////////
194 // 194 //
195 // MenuButton - Events 195 // MenuButton - Events
196 // 196 //
197 //////////////////////////////////////////////////////////////////////////////// 197 ////////////////////////////////////////////////////////////////////////////////
198 198
199 gfx::Size MenuButton::GetPreferredSize() const { 199 gfx::Size MenuButton::GetPreferredSize() const {
200 gfx::Size prefsize = LabelButton::GetPreferredSize(); 200 gfx::Size prefsize = LabelButton::GetPreferredSize();
201 if (show_menu_marker_) { 201 prefsize.Enlarge(GetShoulderWidth(), 0);
202 prefsize.Enlarge(menu_marker_->width() + kMenuMarkerPaddingLeft +
203 kMenuMarkerPaddingRight,
204 0);
205 }
206 return prefsize; 202 return prefsize;
207 } 203 }
208 204
209 const char* MenuButton::GetClassName() const { 205 const char* MenuButton::GetClassName() const {
210 return kViewClassName; 206 return kViewClassName;
211 } 207 }
212 208
213 bool MenuButton::OnMousePressed(const ui::MouseEvent& event) { 209 bool MenuButton::OnMousePressed(const ui::MouseEvent& event) {
214 if (request_focus_on_press()) 210 if (request_focus_on_press())
215 RequestFocus(); 211 RequestFocus();
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 return false; 300 return false;
305 } 301 }
306 302
307 void MenuButton::GetAccessibleState(ui::AXViewState* state) { 303 void MenuButton::GetAccessibleState(ui::AXViewState* state) {
308 CustomButton::GetAccessibleState(state); 304 CustomButton::GetAccessibleState(state);
309 state->role = ui::AX_ROLE_POP_UP_BUTTON; 305 state->role = ui::AX_ROLE_POP_UP_BUTTON;
310 state->default_action = l10n_util::GetStringUTF16(IDS_APP_ACCACTION_PRESS); 306 state->default_action = l10n_util::GetStringUTF16(IDS_APP_ACCACTION_PRESS);
311 state->AddStateFlag(ui::AX_STATE_HASPOPUP); 307 state->AddStateFlag(ui::AX_STATE_HASPOPUP);
312 } 308 }
313 309
310 void MenuButton::OnEnabledChanged() {
311 if (show_menu_marker_)
312 menu_marker_ = PlatformStyle::CreateMenuButtonArrow(enabled());
tapted 2016/05/09 08:01:35 So now the background is not unexpectedly blue, th
313 LabelButton::OnEnabledChanged();
314 }
315
316 void MenuButton::OnNativeThemeChanged(const ui::NativeTheme* theme) {
317 LabelButton::OnNativeThemeChanged(theme);
318 if (ShouldUsePlatformStyleBackground()) {
319 set_background(PlatformStyle::CreateMenuButtonBackground(GetShoulderWidth())
320 .release());
321 }
322 if (ShouldUsePlatformStyleBorder())
tapted 2016/05/09 08:01:35 There's still an issue with this. MenuButton inher
323 SetBorder(PlatformStyle::CreateMenuButtonBorder());
324 }
325
314 void MenuButton::PaintMenuMarker(gfx::Canvas* canvas) { 326 void MenuButton::PaintMenuMarker(gfx::Canvas* canvas) {
315 gfx::Insets insets = GetInsets(); 327 gfx::Insets insets = GetInsets();
316 328
317 // Using the Views mirroring infrastructure incorrectly flips icon content. 329 // Using the Views mirroring infrastructure incorrectly flips icon content.
318 // Instead, manually mirror the position of the down arrow. 330 // Instead, manually mirror the position of the down arrow.
319 gfx::Rect arrow_bounds(width() - insets.right() - 331 gfx::Rect arrow_bounds(width() - GetShoulderWidth(), 0, GetShoulderWidth(),
320 menu_marker_->width() - kMenuMarkerPaddingRight, 332 height());
321 height() / 2 - menu_marker_->height() / 2, 333 arrow_bounds.ClampToCenteredSize(menu_marker_.size());
322 menu_marker_->width(),
323 menu_marker_->height());
324 arrow_bounds.set_x(GetMirroredXForRect(arrow_bounds)); 334 arrow_bounds.set_x(GetMirroredXForRect(arrow_bounds));
325 canvas->DrawImageInt(*menu_marker_, arrow_bounds.x(), arrow_bounds.y()); 335 canvas->DrawImageInt(menu_marker_, arrow_bounds.x(), arrow_bounds.y());
336 }
337
338 bool MenuButton::ShouldUsePlatformStyleBackground() const {
339 return true;
340 }
341
342 bool MenuButton::ShouldUsePlatformStyleBorder() const {
343 return true;
326 } 344 }
327 345
328 gfx::Rect MenuButton::GetChildAreaBounds() { 346 gfx::Rect MenuButton::GetChildAreaBounds() {
329 gfx::Size s = size(); 347 return gfx::Rect(width() - GetShoulderWidth(), height());
330
331 if (show_menu_marker_) {
332 s.set_width(s.width() - menu_marker_->width() - kMenuMarkerPaddingLeft -
333 kMenuMarkerPaddingRight);
334 }
335
336 return gfx::Rect(s);
337 } 348 }
338 349
339 bool MenuButton::IsTriggerableEvent(const ui::Event& event) { 350 bool MenuButton::IsTriggerableEvent(const ui::Event& event) {
340 if (!IsTriggerableEventType(event)) 351 if (!IsTriggerableEventType(event))
341 return false; 352 return false;
342 353
343 TimeDelta delta = TimeTicks::Now() - menu_closed_time_; 354 TimeDelta delta = TimeTicks::Now() - menu_closed_time_;
344 if (delta.InMilliseconds() < kMinimumMsBetweenButtonClicks) 355 if (delta.InMilliseconds() < kMinimumMsBetweenButtonClicks)
345 return false; // Not enough time since the menu closed. 356 return false; // Not enough time since the menu closed.
346 357
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 int MenuButton::GetMaximumScreenXCoordinate() { 419 int MenuButton::GetMaximumScreenXCoordinate() {
409 if (!GetWidget()) { 420 if (!GetWidget()) {
410 NOTREACHED(); 421 NOTREACHED();
411 return 0; 422 return 0;
412 } 423 }
413 424
414 gfx::Rect monitor_bounds = GetWidget()->GetWorkAreaBoundsInScreen(); 425 gfx::Rect monitor_bounds = GetWidget()->GetWorkAreaBoundsInScreen();
415 return monitor_bounds.right() - 1; 426 return monitor_bounds.right() - 1;
416 } 427 }
417 428
429 int MenuButton::GetShoulderWidth() const {
430 const int kPadding = 7;
431 if (!show_menu_marker_)
432 return 0;
433 return menu_marker_.width() + 2 * kPadding;
434 }
435
418 } // namespace views 436 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698