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

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: cache arrow images 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"
tapted 2016/04/26 05:05:57 is this still needed?
Elly Fong-Jones 2016/04/26 17:41:25 It seems to be needed so that the destructor can d
tapted 2016/04/27 03:25:11 Ah, that's subtle. I think we could have PlatformS
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;
(...skipping 30 matching lines...) Expand all
66 // 68 //
67 //////////////////////////////////////////////////////////////////////////////// 69 ////////////////////////////////////////////////////////////////////////////////
68 70
69 MenuButton::MenuButton(const base::string16& text, 71 MenuButton::MenuButton(const base::string16& text,
70 MenuButtonListener* menu_button_listener, 72 MenuButtonListener* menu_button_listener,
71 bool show_menu_marker) 73 bool show_menu_marker)
72 : LabelButton(nullptr, text), 74 : LabelButton(nullptr, text),
73 menu_offset_(kDefaultMenuOffsetX, kDefaultMenuOffsetY), 75 menu_offset_(kDefaultMenuOffsetX, kDefaultMenuOffsetY),
74 listener_(menu_button_listener), 76 listener_(menu_button_listener),
75 show_menu_marker_(show_menu_marker), 77 show_menu_marker_(show_menu_marker),
76 menu_marker_(ui::ResourceBundle::GetSharedInstance()
77 .GetImageNamed(IDR_MENU_DROPARROW)
78 .ToImageSkia()),
79 destroyed_flag_(nullptr), 78 destroyed_flag_(nullptr),
80 pressed_lock_count_(0), 79 pressed_lock_count_(0),
81 increment_pressed_lock_called_(nullptr), 80 increment_pressed_lock_called_(nullptr),
82 should_disable_after_press_(false), 81 should_disable_after_press_(false),
83 weak_factory_(this) { 82 weak_factory_(this) {
84 SetHorizontalAlignment(gfx::ALIGN_LEFT); 83 SetHorizontalAlignment(gfx::ALIGN_LEFT);
84 SetBorder(PlatformStyle::CreateMenuButtonBorder());
85 if (show_menu_marker_) {
86 enabled_marker_image_ = PlatformStyle::CreateMenuButtonArrow(true);
87 disabled_marker_image_ = PlatformStyle::CreateMenuButtonArrow(false);
88 set_background(PlatformStyle::CreateMenuButtonBackground(GetShoulderWidth())
89 .release());
90 }
85 } 91 }
86 92
87 MenuButton::~MenuButton() { 93 MenuButton::~MenuButton() {
88 if (destroyed_flag_) 94 if (destroyed_flag_)
89 *destroyed_flag_ = true; 95 *destroyed_flag_ = true;
90 } 96 }
91 97
92 //////////////////////////////////////////////////////////////////////////////// 98 ////////////////////////////////////////////////////////////////////////////////
93 // 99 //
94 // MenuButton - Public APIs 100 // MenuButton - Public APIs
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 if (show_menu_marker_) 195 if (show_menu_marker_)
190 PaintMenuMarker(canvas); 196 PaintMenuMarker(canvas);
191 } 197 }
192 198
193 //////////////////////////////////////////////////////////////////////////////// 199 ////////////////////////////////////////////////////////////////////////////////
194 // 200 //
195 // MenuButton - Events 201 // MenuButton - Events
196 // 202 //
197 //////////////////////////////////////////////////////////////////////////////// 203 ////////////////////////////////////////////////////////////////////////////////
198 204
205 int MenuButton::GetShoulderWidth() const {
206 const int kPadding = 7;
207 int marker_width = enabled() ? enabled_marker_image_.size().width()
tapted 2016/04/26 05:05:57 nit: remove ".size()" I think we can also do if
Elly Fong-Jones 2016/04/26 17:41:25 Done.
208 : disabled_marker_image_.size().width();
209 return marker_width + 2 * kPadding;
210 }
211
199 gfx::Size MenuButton::GetPreferredSize() const { 212 gfx::Size MenuButton::GetPreferredSize() const {
200 gfx::Size prefsize = LabelButton::GetPreferredSize(); 213 gfx::Size prefsize = LabelButton::GetPreferredSize();
201 if (show_menu_marker_) { 214 if (show_menu_marker_)
202 prefsize.Enlarge(menu_marker_->width() + kMenuMarkerPaddingLeft + 215 prefsize.Enlarge(GetShoulderWidth(), 0);
203 kMenuMarkerPaddingRight,
204 0);
205 }
206 return prefsize; 216 return prefsize;
207 } 217 }
208 218
209 const char* MenuButton::GetClassName() const { 219 const char* MenuButton::GetClassName() const {
210 return kViewClassName; 220 return kViewClassName;
211 } 221 }
212 222
213 bool MenuButton::OnMousePressed(const ui::MouseEvent& event) { 223 bool MenuButton::OnMousePressed(const ui::MouseEvent& event) {
214 if (request_focus_on_press()) 224 if (request_focus_on_press())
215 RequestFocus(); 225 RequestFocus();
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 state->role = ui::AX_ROLE_POP_UP_BUTTON; 319 state->role = ui::AX_ROLE_POP_UP_BUTTON;
310 state->default_action = l10n_util::GetStringUTF16(IDS_APP_ACCACTION_PRESS); 320 state->default_action = l10n_util::GetStringUTF16(IDS_APP_ACCACTION_PRESS);
311 state->AddStateFlag(ui::AX_STATE_HASPOPUP); 321 state->AddStateFlag(ui::AX_STATE_HASPOPUP);
312 } 322 }
313 323
314 void MenuButton::PaintMenuMarker(gfx::Canvas* canvas) { 324 void MenuButton::PaintMenuMarker(gfx::Canvas* canvas) {
315 gfx::Insets insets = GetInsets(); 325 gfx::Insets insets = GetInsets();
316 326
317 // Using the Views mirroring infrastructure incorrectly flips icon content. 327 // Using the Views mirroring infrastructure incorrectly flips icon content.
318 // Instead, manually mirror the position of the down arrow. 328 // Instead, manually mirror the position of the down arrow.
319 gfx::Rect arrow_bounds(width() - insets.right() - 329 gfx::Rect arrow_bounds(width() - insets.right() - GetShoulderWidth(), 0,
320 menu_marker_->width() - kMenuMarkerPaddingRight, 330 GetShoulderWidth(), height());
321 height() / 2 - menu_marker_->height() / 2, 331 gfx::ImageSkia marker =
322 menu_marker_->width(), 332 enabled() ? enabled_marker_image_ : disabled_marker_image_;
323 menu_marker_->height()); 333 arrow_bounds.ClampToCenteredSize(marker.size());
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(marker, arrow_bounds.x(), arrow_bounds.y());
326 } 336 }
327 337
328 gfx::Rect MenuButton::GetChildAreaBounds() { 338 gfx::Rect MenuButton::GetChildAreaBounds() {
329 gfx::Size s = size(); 339 gfx::Size s = size();
330 340
331 if (show_menu_marker_) { 341 if (show_menu_marker_)
tapted 2016/04/26 05:05:57 not needed with the GetShoulderWidth() tweak. In f
Elly Fong-Jones 2016/04/26 17:41:25 Done.
332 s.set_width(s.width() - menu_marker_->width() - kMenuMarkerPaddingLeft - 342 s.set_width(s.width() - GetShoulderWidth());
333 kMenuMarkerPaddingRight);
334 }
335 343
336 return gfx::Rect(s); 344 return gfx::Rect(s);
337 } 345 }
338 346
339 bool MenuButton::IsTriggerableEvent(const ui::Event& event) { 347 bool MenuButton::IsTriggerableEvent(const ui::Event& event) {
340 if (!IsTriggerableEventType(event)) 348 if (!IsTriggerableEventType(event))
341 return false; 349 return false;
342 350
343 TimeDelta delta = TimeTicks::Now() - menu_closed_time_; 351 TimeDelta delta = TimeTicks::Now() - menu_closed_time_;
344 if (delta.InMilliseconds() < kMinimumMsBetweenButtonClicks) 352 if (delta.InMilliseconds() < kMinimumMsBetweenButtonClicks)
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 if (!GetWidget()) { 417 if (!GetWidget()) {
410 NOTREACHED(); 418 NOTREACHED();
411 return 0; 419 return 0;
412 } 420 }
413 421
414 gfx::Rect monitor_bounds = GetWidget()->GetWorkAreaBoundsInScreen(); 422 gfx::Rect monitor_bounds = GetWidget()->GetWorkAreaBoundsInScreen();
415 return monitor_bounds.right() - 1; 423 return monitor_bounds.right() - 1;
416 } 424 }
417 425
418 } // namespace views 426 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698