Chromium Code Reviews| 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 #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; |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 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()); | |
|
tapted
2016/04/27 03:25:11
The issue with the MenuButton subclass used for th
Elly Fong-Jones
2016/04/28 17:03:12
Ick. Whether the subclasses need borders or not se
| |
| 85 if (show_menu_marker_) { | |
| 86 marker_image_ = PlatformStyle::CreateMenuButtonArrow(enabled()); | |
| 87 set_background(PlatformStyle::CreateMenuButtonBackground(GetShoulderWidth()) | |
| 88 .release()); | |
| 89 } | |
| 85 } | 90 } |
| 86 | 91 |
| 87 MenuButton::~MenuButton() { | 92 MenuButton::~MenuButton() { |
| 88 if (destroyed_flag_) | 93 if (destroyed_flag_) |
| 89 *destroyed_flag_ = true; | 94 *destroyed_flag_ = true; |
| 90 } | 95 } |
| 91 | 96 |
| 92 //////////////////////////////////////////////////////////////////////////////// | 97 //////////////////////////////////////////////////////////////////////////////// |
| 93 // | 98 // |
| 94 // MenuButton - Public APIs | 99 // MenuButton - Public APIs |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 189 if (show_menu_marker_) | 194 if (show_menu_marker_) |
| 190 PaintMenuMarker(canvas); | 195 PaintMenuMarker(canvas); |
| 191 } | 196 } |
| 192 | 197 |
| 193 //////////////////////////////////////////////////////////////////////////////// | 198 //////////////////////////////////////////////////////////////////////////////// |
| 194 // | 199 // |
| 195 // MenuButton - Events | 200 // MenuButton - Events |
| 196 // | 201 // |
| 197 //////////////////////////////////////////////////////////////////////////////// | 202 //////////////////////////////////////////////////////////////////////////////// |
| 198 | 203 |
| 204 int MenuButton::GetShoulderWidth() const { | |
|
tapted
2016/04/27 03:25:11
move definition to end of file
Elly Fong-Jones
2016/04/28 17:03:11
Done.
| |
| 205 const int kPadding = 7; | |
| 206 if (!show_menu_marker_) | |
| 207 return 0; | |
| 208 return marker_image_.width() + 2 * kPadding; | |
| 209 } | |
| 210 | |
| 199 gfx::Size MenuButton::GetPreferredSize() const { | 211 gfx::Size MenuButton::GetPreferredSize() const { |
| 200 gfx::Size prefsize = LabelButton::GetPreferredSize(); | 212 gfx::Size prefsize = LabelButton::GetPreferredSize(); |
| 201 if (show_menu_marker_) { | 213 prefsize.Enlarge(GetShoulderWidth(), 0); |
| 202 prefsize.Enlarge(menu_marker_->width() + kMenuMarkerPaddingLeft + | |
| 203 kMenuMarkerPaddingRight, | |
| 204 0); | |
| 205 } | |
| 206 return prefsize; | 214 return prefsize; |
| 207 } | 215 } |
| 208 | 216 |
| 209 const char* MenuButton::GetClassName() const { | 217 const char* MenuButton::GetClassName() const { |
| 210 return kViewClassName; | 218 return kViewClassName; |
| 211 } | 219 } |
| 212 | 220 |
| 213 bool MenuButton::OnMousePressed(const ui::MouseEvent& event) { | 221 bool MenuButton::OnMousePressed(const ui::MouseEvent& event) { |
| 214 if (request_focus_on_press()) | 222 if (request_focus_on_press()) |
| 215 RequestFocus(); | 223 RequestFocus(); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 304 return false; | 312 return false; |
| 305 } | 313 } |
| 306 | 314 |
| 307 void MenuButton::GetAccessibleState(ui::AXViewState* state) { | 315 void MenuButton::GetAccessibleState(ui::AXViewState* state) { |
| 308 CustomButton::GetAccessibleState(state); | 316 CustomButton::GetAccessibleState(state); |
| 309 state->role = ui::AX_ROLE_POP_UP_BUTTON; | 317 state->role = ui::AX_ROLE_POP_UP_BUTTON; |
| 310 state->default_action = l10n_util::GetStringUTF16(IDS_APP_ACCACTION_PRESS); | 318 state->default_action = l10n_util::GetStringUTF16(IDS_APP_ACCACTION_PRESS); |
| 311 state->AddStateFlag(ui::AX_STATE_HASPOPUP); | 319 state->AddStateFlag(ui::AX_STATE_HASPOPUP); |
| 312 } | 320 } |
| 313 | 321 |
| 322 void MenuButton::OnEnabledChanged() { | |
| 323 if (show_menu_marker_) | |
| 324 marker_image_ = PlatformStyle::CreateMenuButtonArrow(enabled()); | |
| 325 LabelButton::OnEnabledChanged(); | |
| 326 } | |
| 327 | |
| 314 void MenuButton::PaintMenuMarker(gfx::Canvas* canvas) { | 328 void MenuButton::PaintMenuMarker(gfx::Canvas* canvas) { |
| 315 gfx::Insets insets = GetInsets(); | 329 gfx::Insets insets = GetInsets(); |
| 316 | 330 |
| 317 // Using the Views mirroring infrastructure incorrectly flips icon content. | 331 // Using the Views mirroring infrastructure incorrectly flips icon content. |
| 318 // Instead, manually mirror the position of the down arrow. | 332 // Instead, manually mirror the position of the down arrow. |
| 319 gfx::Rect arrow_bounds(width() - insets.right() - | 333 gfx::Rect arrow_bounds(width() - insets.right() - GetShoulderWidth(), 0, |
| 320 menu_marker_->width() - kMenuMarkerPaddingRight, | 334 GetShoulderWidth(), height()); |
| 321 height() / 2 - menu_marker_->height() / 2, | 335 arrow_bounds.ClampToCenteredSize(marker_image_.size()); |
| 322 menu_marker_->width(), | |
| 323 menu_marker_->height()); | |
| 324 arrow_bounds.set_x(GetMirroredXForRect(arrow_bounds)); | 336 arrow_bounds.set_x(GetMirroredXForRect(arrow_bounds)); |
| 325 canvas->DrawImageInt(*menu_marker_, arrow_bounds.x(), arrow_bounds.y()); | 337 canvas->DrawImageInt(marker_image_, arrow_bounds.x(), arrow_bounds.y()); |
| 326 } | 338 } |
| 327 | 339 |
| 328 gfx::Rect MenuButton::GetChildAreaBounds() { | 340 gfx::Rect MenuButton::GetChildAreaBounds() { |
| 329 gfx::Size s = size(); | 341 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 } | 342 } |
| 338 | 343 |
| 339 bool MenuButton::IsTriggerableEvent(const ui::Event& event) { | 344 bool MenuButton::IsTriggerableEvent(const ui::Event& event) { |
| 340 if (!IsTriggerableEventType(event)) | 345 if (!IsTriggerableEventType(event)) |
| 341 return false; | 346 return false; |
| 342 | 347 |
| 343 TimeDelta delta = TimeTicks::Now() - menu_closed_time_; | 348 TimeDelta delta = TimeTicks::Now() - menu_closed_time_; |
| 344 if (delta.InMilliseconds() < kMinimumMsBetweenButtonClicks) | 349 if (delta.InMilliseconds() < kMinimumMsBetweenButtonClicks) |
| 345 return false; // Not enough time since the menu closed. | 350 return false; // Not enough time since the menu closed. |
| 346 | 351 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 409 if (!GetWidget()) { | 414 if (!GetWidget()) { |
| 410 NOTREACHED(); | 415 NOTREACHED(); |
| 411 return 0; | 416 return 0; |
| 412 } | 417 } |
| 413 | 418 |
| 414 gfx::Rect monitor_bounds = GetWidget()->GetWorkAreaBoundsInScreen(); | 419 gfx::Rect monitor_bounds = GetWidget()->GetWorkAreaBoundsInScreen(); |
| 415 return monitor_bounds.right() - 1; | 420 return monitor_bounds.right() - 1; |
| 416 } | 421 } |
| 417 | 422 |
| 418 } // namespace views | 423 } // namespace views |
| OLD | NEW |