748 lines
32 KiB
Diff
748 lines
32 KiB
Diff
diff --git ui/base/models/menu_model.h ui/base/models/menu_model.h
|
|
index 11f1421cc79c1..c5dbc643ae7c8 100644
|
|
--- ui/base/models/menu_model.h
|
|
+++ ui/base/models/menu_model.h
|
|
@@ -15,8 +15,11 @@
|
|
#include "ui/base/models/menu_separator_types.h"
|
|
#include "ui/gfx/native_widget_types.h"
|
|
|
|
+#include "third_party/skia/include/core/SkColor.h"
|
|
+
|
|
namespace gfx {
|
|
class FontList;
|
|
+class Point;
|
|
}
|
|
|
|
namespace ui {
|
|
@@ -147,6 +150,27 @@ class COMPONENT_EXPORT(UI_BASE) MenuModel
|
|
// |event_flags| is a bit mask of ui::EventFlags.
|
|
virtual void ActivatedAt(int index, int event_flags);
|
|
|
|
+ // Called when the user moves the mouse outside the menu and over the owning
|
|
+ // window.
|
|
+ virtual void MouseOutsideMenu(const gfx::Point& screen_point) {}
|
|
+
|
|
+ // Called on unhandled open/close submenu keyboard commands. |is_rtl| will be
|
|
+ // true if the menu is displaying a right-to-left language.
|
|
+ virtual void UnhandledOpenSubmenu(bool is_rtl) {}
|
|
+ virtual void UnhandledCloseSubmenu(bool is_rtl) {}
|
|
+
|
|
+ // Override the text/background color of a given menu item dependent on the
|
|
+ // |index| and its |is_hovered| state. |is_minor| will be true for accelerator
|
|
+ // text. Returns true if it chooses to override the color.
|
|
+ virtual bool GetTextColor(int index,
|
|
+ bool is_minor,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const { return false; }
|
|
+ virtual bool GetBackgroundColor(int index,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const
|
|
+ { return false; }
|
|
+
|
|
// Called when the menu is about to be shown.
|
|
virtual void MenuWillShow() {}
|
|
|
|
diff --git ui/gfx/render_text.cc ui/gfx/render_text.cc
|
|
index 7fb46dbdee749..e25a85d919e5e 100644
|
|
--- ui/gfx/render_text.cc
|
|
+++ ui/gfx/render_text.cc
|
|
@@ -659,6 +659,14 @@ void RenderText::SetWhitespaceElision(absl::optional<bool> whitespace_elision) {
|
|
}
|
|
}
|
|
|
|
+void RenderText::SetDrawStringsFlags(int flags) {
|
|
+ if (draw_strings_flags_ == flags)
|
|
+ return;
|
|
+ draw_strings_flags_ = flags;
|
|
+ cached_bounds_and_offset_valid_ = false;
|
|
+ OnTextAttributeChanged();
|
|
+}
|
|
+
|
|
void RenderText::SetDisplayRect(const Rect& r) {
|
|
if (r != display_rect_) {
|
|
display_rect_ = r;
|
|
@@ -2015,6 +2023,19 @@ void RenderText::OnTextAttributeChanged() {
|
|
|
|
layout_text_up_to_date_ = false;
|
|
|
|
+ if (draw_strings_flags_ != 0) {
|
|
+ // Compute layout size with the mnemonic character underlined since it might
|
|
+ // be larger than with the underline hidden.
|
|
+ int char_pos = -1;
|
|
+ int char_span = 0;
|
|
+ layout_text_ =
|
|
+ gfx::LocateAndRemoveAcceleratorChar(layout_text_, &char_pos, &char_span);
|
|
+ if (char_pos != -1) {
|
|
+ gfx::Range range(char_pos, char_pos + char_span);
|
|
+ styles_[TEXT_STYLE_UNDERLINE].ApplyValue(true, range);
|
|
+ }
|
|
+ }
|
|
+
|
|
OnLayoutTextAttributeChanged(true);
|
|
}
|
|
|
|
diff --git ui/gfx/render_text.h ui/gfx/render_text.h
|
|
index 983cba19002c4..03b7d77a2e8e6 100644
|
|
--- ui/gfx/render_text.h
|
|
+++ ui/gfx/render_text.h
|
|
@@ -347,6 +347,10 @@ class GFX_EXPORT RenderText {
|
|
return whitespace_elision_;
|
|
}
|
|
|
|
+ // Get or set the flags that control display of accelerator characters.
|
|
+ void SetDrawStringsFlags(int flags);
|
|
+ int draw_strings_flags() const { return draw_strings_flags_; }
|
|
+
|
|
const Rect& display_rect() const { return display_rect_; }
|
|
void SetDisplayRect(const Rect& r);
|
|
|
|
@@ -1056,6 +1060,8 @@ class GFX_EXPORT RenderText {
|
|
|
|
// Tell whether or not the |layout_text_| needs an update or is up to date.
|
|
mutable bool layout_text_up_to_date_ = false;
|
|
+
|
|
+ int draw_strings_flags_ = 0;
|
|
};
|
|
|
|
} // namespace gfx
|
|
diff --git ui/views/animation/ink_drop_host_view.h ui/views/animation/ink_drop_host_view.h
|
|
index 7de6bdd643ad1..90994f096a0e0 100644
|
|
--- ui/views/animation/ink_drop_host_view.h
|
|
+++ ui/views/animation/ink_drop_host_view.h
|
|
@@ -175,6 +175,8 @@ class VIEWS_EXPORT InkDropHost {
|
|
View* host_view() { return host_view_; }
|
|
const View* host_view() const { return host_view_; }
|
|
|
|
+ InkDropMode ink_drop_mode() const { return ink_drop_mode_; }
|
|
+
|
|
private:
|
|
friend class test::InkDropHostTestApi;
|
|
|
|
diff --git ui/views/controls/button/label_button.cc ui/views/controls/button/label_button.cc
|
|
index 2e89db6bd02de..e55d438ace669 100644
|
|
--- ui/views/controls/button/label_button.cc
|
|
+++ ui/views/controls/button/label_button.cc
|
|
@@ -508,6 +508,12 @@ void LabelButton::OnThemeChanged() {
|
|
SchedulePaint();
|
|
}
|
|
|
|
+void LabelButton::SetFontList(const gfx::FontList& font_list) {
|
|
+ cached_normal_font_list_ = font_list;
|
|
+ cached_default_button_font_list_ = font_list;
|
|
+ label_->SetFontList(cached_normal_font_list_);
|
|
+}
|
|
+
|
|
void LabelButton::StateChanged(ButtonState old_state) {
|
|
Button::StateChanged(old_state);
|
|
ResetLabelEnabledColor();
|
|
diff --git ui/views/controls/button/label_button.h ui/views/controls/button/label_button.h
|
|
index 4f173056ba875..7b746c84c63cf 100644
|
|
--- ui/views/controls/button/label_button.h
|
|
+++ ui/views/controls/button/label_button.h
|
|
@@ -133,6 +133,9 @@ class VIEWS_EXPORT LabelButton : public Button, public NativeThemeDelegate {
|
|
ui::NativeTheme::State GetForegroundThemeState(
|
|
ui::NativeTheme::ExtraParams* params) const override;
|
|
|
|
+ // Sets the font list used by this button.
|
|
+ void SetFontList(const gfx::FontList& font_list);
|
|
+
|
|
protected:
|
|
ImageView* image() const { return image_; }
|
|
Label* label() const { return label_; }
|
|
diff --git ui/views/controls/label.cc ui/views/controls/label.cc
|
|
index c748b7ed1a958..c93898b041aff 100644
|
|
--- ui/views/controls/label.cc
|
|
+++ ui/views/controls/label.cc
|
|
@@ -52,12 +52,27 @@ enum LabelPropertyKey {
|
|
kLabelLineHeight,
|
|
kLabelObscured,
|
|
kLabelAllowCharacterBreak,
|
|
+ kLabelDrawStringsFlags,
|
|
};
|
|
|
|
bool IsOpaque(SkColor color) {
|
|
return SkColorGetA(color) == SK_AlphaOPAQUE;
|
|
}
|
|
|
|
+// Strips accelerator character prefixes in |text| if needed, based on |flags|.
|
|
+// Returns a range in |text| to underline or Range::InvalidRange() if
|
|
+// underlining is not needed.
|
|
+gfx::Range StripAcceleratorChars(int flags, std::u16string* text) {
|
|
+ if (flags & (gfx::Canvas::SHOW_PREFIX | gfx::Canvas::HIDE_PREFIX)) {
|
|
+ int char_pos = -1;
|
|
+ int char_span = 0;
|
|
+ *text = gfx::LocateAndRemoveAcceleratorChar(*text, &char_pos, &char_span);
|
|
+ if ((flags & gfx::Canvas::SHOW_PREFIX) && char_pos != -1)
|
|
+ return gfx::Range(char_pos, char_pos + char_span);
|
|
+ }
|
|
+ return gfx::Range::InvalidRange();
|
|
+}
|
|
+
|
|
} // namespace
|
|
|
|
namespace views {
|
|
@@ -425,6 +440,15 @@ void Label::SetElideBehavior(gfx::ElideBehavior elide_behavior) {
|
|
OnPropertyChanged(&elide_behavior_, kPropertyEffectsPreferredSizeChanged);
|
|
}
|
|
|
|
+void Label::SetDrawStringsFlags(int flags) {
|
|
+ if (draw_strings_flags_ == flags)
|
|
+ return;
|
|
+ draw_strings_flags_ = flags;
|
|
+ full_text_->SetDrawStringsFlags(draw_strings_flags_);
|
|
+ OnPropertyChanged(&full_text_ + kLabelDrawStringsFlags,
|
|
+ kPropertyEffectsPreferredSizeChanged);
|
|
+}
|
|
+
|
|
std::u16string Label::GetTooltipText() const {
|
|
return tooltip_text_;
|
|
}
|
|
@@ -721,6 +745,16 @@ std::unique_ptr<gfx::RenderText> Label::CreateRenderText() const {
|
|
render_text->SelectRange(stored_selection_range_);
|
|
}
|
|
|
|
+ if (draw_strings_flags_ != 0) {
|
|
+ auto text_str = GetText();
|
|
+ gfx::Range range = StripAcceleratorChars(draw_strings_flags_, &text_str);
|
|
+ render_text->SetText(text_str);
|
|
+ if (range.IsValid()) {
|
|
+ render_text->SetDisplayRect(bounds());
|
|
+ render_text->ApplyStyle(gfx::TEXT_STYLE_UNDERLINE, true, range);
|
|
+ }
|
|
+ }
|
|
+
|
|
return render_text;
|
|
}
|
|
|
|
diff --git ui/views/controls/label.h ui/views/controls/label.h
|
|
index 912c7d20eb07c..26beda47cd4ce 100644
|
|
--- ui/views/controls/label.h
|
|
+++ ui/views/controls/label.h
|
|
@@ -234,6 +234,10 @@ class VIEWS_EXPORT Label : public View,
|
|
gfx::ElideBehavior GetElideBehavior() const;
|
|
void SetElideBehavior(gfx::ElideBehavior elide_behavior);
|
|
|
|
+ // Get or set the flags that control display of accelerator characters.
|
|
+ void SetDrawStringsFlags(int flags);
|
|
+ int GetDrawStringsFlags() const { return draw_strings_flags_; }
|
|
+
|
|
// Gets/Sets the tooltip text. Default behavior for a label (single-line) is
|
|
// to show the full text if it is wider than its bounds. Calling this
|
|
// overrides the default behavior and lets you set a custom tooltip. To
|
|
@@ -485,6 +489,7 @@ class VIEWS_EXPORT Label : public View,
|
|
int max_width_ = 0;
|
|
// This is used in single-line mode.
|
|
int max_width_single_line_ = 0;
|
|
+ int draw_strings_flags_ = 0;
|
|
|
|
std::unique_ptr<SelectionController> selection_controller_;
|
|
|
|
diff --git ui/views/controls/menu/menu_controller.cc ui/views/controls/menu/menu_controller.cc
|
|
index 1f1ea9ec4b51a..e3c77de886185 100644
|
|
--- ui/views/controls/menu/menu_controller.cc
|
|
+++ ui/views/controls/menu/menu_controller.cc
|
|
@@ -473,7 +473,8 @@ void MenuController::Run(Widget* parent,
|
|
MenuAnchorPosition position,
|
|
bool context_menu,
|
|
bool is_nested_drag,
|
|
- gfx::NativeView native_view_for_gestures) {
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget) {
|
|
exit_type_ = ExitType::kNone;
|
|
possible_drag_ = false;
|
|
drag_in_progress_ = false;
|
|
@@ -520,6 +521,7 @@ void MenuController::Run(Widget* parent,
|
|
owner_->AddObserver(this);
|
|
|
|
native_view_for_gestures_ = native_view_for_gestures;
|
|
+ parent_widget_ = parent_widget;
|
|
|
|
// Only create a MenuPreTargetHandler for non-nested menus. Nested menus
|
|
// will use the existing one.
|
|
@@ -2177,6 +2179,7 @@ void MenuController::OpenMenuImpl(MenuItemView* item, bool show) {
|
|
params.do_capture = do_capture;
|
|
params.native_view_for_gestures = native_view_for_gestures_;
|
|
params.owned_window_anchor = anchor;
|
|
+ params.parent_widget = parent_widget_;
|
|
|
|
if (item->GetParentMenuItem()) {
|
|
params.context = state_.item->GetWidget();
|
|
@@ -2879,8 +2882,13 @@ MenuItemView* MenuController::FindNextSelectableMenuItem(
|
|
|
|
void MenuController::OpenSubmenuChangeSelectionIfCan() {
|
|
MenuItemView* item = pending_state_.item;
|
|
- if (!item->HasSubmenu() || !item->GetEnabled())
|
|
+ if (!item->HasSubmenu() || !item->GetEnabled() || !item->GetParentMenuItem()) {
|
|
+ MenuItemView* submenu_item =
|
|
+ item->GetParentMenuItem() ? item->GetParentMenuItem() : item;
|
|
+ submenu_item->GetDelegate()->OnUnhandledOpenSubmenu(submenu_item,
|
|
+ base::i18n::IsRTL());
|
|
return;
|
|
+ }
|
|
MenuItemView* to_select = nullptr;
|
|
if (!item->GetSubmenu()->GetMenuItems().empty())
|
|
to_select = FindInitialSelectableMenuItem(item, INCREMENT_SELECTION_DOWN);
|
|
@@ -2899,8 +2907,10 @@ void MenuController::OpenSubmenuChangeSelectionIfCan() {
|
|
void MenuController::CloseSubmenu() {
|
|
MenuItemView* item = state_.item;
|
|
DCHECK(item);
|
|
- if (!item->GetParentMenuItem())
|
|
+ if (!item->GetParentMenuItem()) {
|
|
+ item->GetDelegate()->OnUnhandledCloseSubmenu(item, base::i18n::IsRTL());
|
|
return;
|
|
+ }
|
|
if (item->SubmenuIsShowing())
|
|
SetSelection(item, SELECTION_UPDATE_IMMEDIATELY);
|
|
else if (item->GetParentMenuItem()->GetParentMenuItem())
|
|
diff --git ui/views/controls/menu/menu_controller.h ui/views/controls/menu/menu_controller.h
|
|
index a4958eb424441..0e1ebb20af2da 100644
|
|
--- ui/views/controls/menu/menu_controller.h
|
|
+++ ui/views/controls/menu/menu_controller.h
|
|
@@ -105,7 +105,9 @@ class VIEWS_EXPORT MenuController
|
|
MenuAnchorPosition position,
|
|
bool context_menu,
|
|
bool is_nested_drag,
|
|
- gfx::NativeView native_view_for_gestures = nullptr);
|
|
+ gfx::NativeView native_view_for_gestures = nullptr,
|
|
+ gfx::AcceleratedWidget parent_widget =
|
|
+ gfx::kNullAcceleratedWidget);
|
|
|
|
bool for_drop() const { return for_drop_; }
|
|
|
|
@@ -720,6 +722,8 @@ class VIEWS_EXPORT MenuController
|
|
// RunType::SEND_GESTURE_EVENTS_TO_OWNER is set.
|
|
gfx::NativeView native_view_for_gestures_ = nullptr;
|
|
|
|
+ gfx::AcceleratedWidget parent_widget_ = gfx::kNullAcceleratedWidget;
|
|
+
|
|
// Indicates a possible drag operation.
|
|
bool possible_drag_ = false;
|
|
|
|
diff --git ui/views/controls/menu/menu_delegate.h ui/views/controls/menu/menu_delegate.h
|
|
index 7101143c63803..058da34d3499e 100644
|
|
--- ui/views/controls/menu/menu_delegate.h
|
|
+++ ui/views/controls/menu/menu_delegate.h
|
|
@@ -73,6 +73,22 @@ class VIEWS_EXPORT MenuDelegate {
|
|
virtual const gfx::FontList* GetLabelFontList(int id) const;
|
|
virtual absl::optional<SkColor> GetLabelColor(int id) const;
|
|
|
|
+ // Override the text color of a given menu item dependent on the |command_id|
|
|
+ // and its |is_hovered| state. |is_minor| will be true for accelerator text.
|
|
+ // Returns true if it chooses to override the color.
|
|
+ virtual bool GetTextColor(int command_id,
|
|
+ bool is_minor,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const { return false; }
|
|
+
|
|
+ // Override the background color of a given menu item dependent on the
|
|
+ // |command_id| and its |is_hovered| state. Returns true if it chooses to
|
|
+ // override the color.
|
|
+ virtual bool GetBackgroundColor(int command_id,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const
|
|
+ { return false; }
|
|
+
|
|
// The tooltip shown for the menu item. This is invoked when the user
|
|
// hovers over the item, and no tooltip text has been set for that item.
|
|
virtual std::u16string GetTooltipText(int id,
|
|
@@ -201,6 +217,11 @@ class VIEWS_EXPORT MenuDelegate {
|
|
bool* has_mnemonics,
|
|
MenuButton** button);
|
|
|
|
+ // Called on unhandled open/close submenu keyboard commands. |is_rtl| will be
|
|
+ // true if the menu is displaying a right-to-left language.
|
|
+ virtual void OnUnhandledOpenSubmenu(MenuItemView* menu, bool is_rtl) {}
|
|
+ virtual void OnUnhandledCloseSubmenu(MenuItemView* menu, bool is_rtl) {}
|
|
+
|
|
// Returns the max width menus can grow to be.
|
|
virtual int GetMaxWidthForMenu(MenuItemView* menu);
|
|
|
|
diff --git ui/views/controls/menu/menu_host.cc ui/views/controls/menu/menu_host.cc
|
|
index 702391702c399..cc669d448fc20 100644
|
|
--- ui/views/controls/menu/menu_host.cc
|
|
+++ ui/views/controls/menu/menu_host.cc
|
|
@@ -144,6 +144,8 @@ void MenuHost::InitMenuHost(const InitParams& init_params) {
|
|
: gfx::kNullNativeWindow;
|
|
params.bounds = init_params.bounds;
|
|
|
|
+ params.parent_widget = init_params.parent_widget;
|
|
+
|
|
#if defined(USE_AURA)
|
|
// TODO(msisov): remove kMenutype once positioning of anchored windows
|
|
// finally migrates to a new path.
|
|
@@ -155,7 +157,8 @@ void MenuHost::InitMenuHost(const InitParams& init_params) {
|
|
// If MenuHost has no parent widget, it needs to be marked
|
|
// Activatable, so that calling Show in ShowMenuHost will
|
|
// get keyboard focus.
|
|
- if (init_params.parent == nullptr)
|
|
+ if (init_params.parent == nullptr &&
|
|
+ init_params.parent_widget == gfx::kNullAcceleratedWidget)
|
|
params.activatable = Widget::InitParams::Activatable::kYes;
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
|
diff --git ui/views/controls/menu/menu_host.h ui/views/controls/menu/menu_host.h
|
|
index 9c8c5de34d064..b054688cca148 100644
|
|
--- ui/views/controls/menu/menu_host.h
|
|
+++ ui/views/controls/menu/menu_host.h
|
|
@@ -54,6 +54,8 @@ class MenuHost : public Widget, public WidgetObserver {
|
|
// Additional information that helps to position anchored windows in such
|
|
// backends as Wayland.
|
|
ui::OwnedWindowAnchor owned_window_anchor;
|
|
+
|
|
+ gfx::AcceleratedWidget parent_widget = gfx::kNullAcceleratedWidget;
|
|
};
|
|
|
|
explicit MenuHost(SubmenuView* submenu);
|
|
diff --git ui/views/controls/menu/menu_item_view.cc ui/views/controls/menu/menu_item_view.cc
|
|
index 6da48e9716bcd..98f0d4d217f9e 100644
|
|
--- ui/views/controls/menu/menu_item_view.cc
|
|
+++ ui/views/controls/menu/menu_item_view.cc
|
|
@@ -1091,6 +1091,15 @@ void MenuItemView::PaintBackground(gfx::Canvas* canvas,
|
|
spilling_rect.set_y(spilling_rect.y() - corner_radius_);
|
|
spilling_rect.set_height(spilling_rect.height() + corner_radius_);
|
|
canvas->DrawRoundRect(spilling_rect, corner_radius_, flags);
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ MenuDelegate *delegate = GetDelegate();
|
|
+ SkColor override_color;
|
|
+ if (delegate && delegate->GetBackgroundColor(GetCommand(),
|
|
+ paint_as_selected,
|
|
+ &override_color)) {
|
|
+ canvas->DrawColor(override_color);
|
|
} else if (paint_as_selected) {
|
|
gfx::Rect item_bounds = GetLocalBounds();
|
|
if (type_ == Type::kActionableSubMenu) {
|
|
@@ -1157,6 +1166,13 @@ void MenuItemView::PaintMinorIconAndText(gfx::Canvas* canvas, SkColor color) {
|
|
}
|
|
|
|
SkColor MenuItemView::GetTextColor(bool minor, bool paint_as_selected) const {
|
|
+ SkColor text_color;
|
|
+ const MenuDelegate *delegate = GetDelegate();
|
|
+ if (delegate && delegate->GetTextColor(GetCommand(), minor, paint_as_selected,
|
|
+ &text_color)) {
|
|
+ return text_color;
|
|
+ }
|
|
+
|
|
style::TextContext context =
|
|
GetMenuController() && GetMenuController()->use_ash_system_ui_layout()
|
|
? style::CONTEXT_TOUCH_MENU
|
|
diff --git ui/views/controls/menu/menu_model_adapter.cc ui/views/controls/menu/menu_model_adapter.cc
|
|
index fb5d5e6a79a3f..a336b5a74d6a1 100644
|
|
--- ui/views/controls/menu/menu_model_adapter.cc
|
|
+++ ui/views/controls/menu/menu_model_adapter.cc
|
|
@@ -245,6 +245,77 @@ bool MenuModelAdapter::IsItemChecked(int id) const {
|
|
return false;
|
|
}
|
|
|
|
+MenuItemView* MenuModelAdapter::GetSiblingMenu(MenuItemView* menu,
|
|
+ const gfx::Point& screen_point,
|
|
+ MenuAnchorPosition* anchor,
|
|
+ bool* has_mnemonics,
|
|
+ MenuButton** button) {
|
|
+ // Look up the menu model for this menu.
|
|
+ const std::map<MenuItemView*, ui::MenuModel*>::const_iterator map_iterator =
|
|
+ menu_map_.find(menu);
|
|
+ if (map_iterator != menu_map_.end()) {
|
|
+ map_iterator->second->MouseOutsideMenu(screen_point);
|
|
+ return nullptr;
|
|
+ }
|
|
+
|
|
+ NOTREACHED();
|
|
+ return nullptr;
|
|
+}
|
|
+
|
|
+void MenuModelAdapter::OnUnhandledOpenSubmenu(MenuItemView* menu,
|
|
+ bool is_rtl) {
|
|
+ // Look up the menu model for this menu.
|
|
+ const std::map<MenuItemView*, ui::MenuModel*>::const_iterator map_iterator =
|
|
+ menu_map_.find(menu);
|
|
+ if (map_iterator != menu_map_.end()) {
|
|
+ map_iterator->second->UnhandledOpenSubmenu(is_rtl);
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ NOTREACHED();
|
|
+}
|
|
+
|
|
+void MenuModelAdapter::OnUnhandledCloseSubmenu(MenuItemView* menu,
|
|
+ bool is_rtl) {
|
|
+ // Look up the menu model for this menu.
|
|
+ const std::map<MenuItemView*, ui::MenuModel*>::const_iterator map_iterator =
|
|
+ menu_map_.find(menu);
|
|
+ if (map_iterator != menu_map_.end()) {
|
|
+ map_iterator->second->UnhandledCloseSubmenu(is_rtl);
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ NOTREACHED();
|
|
+}
|
|
+
|
|
+bool MenuModelAdapter::GetTextColor(int command_id,
|
|
+ bool is_minor,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const {
|
|
+ ui::MenuModel* model = menu_model_;
|
|
+ int index = 0;
|
|
+ if (ui::MenuModel::GetModelAndIndexForCommandId(command_id, &model, &index))
|
|
+ return model->GetTextColor(index, is_minor, is_hovered, override_color);
|
|
+
|
|
+ NOTREACHED();
|
|
+ return false;
|
|
+}
|
|
+
|
|
+bool MenuModelAdapter::GetBackgroundColor(int command_id,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const {
|
|
+ if (command_id == -1)
|
|
+ return menu_model_->GetBackgroundColor(-1, is_hovered, override_color);
|
|
+
|
|
+ ui::MenuModel* model = menu_model_;
|
|
+ int index = 0;
|
|
+ if (ui::MenuModel::GetModelAndIndexForCommandId(command_id, &model, &index))
|
|
+ return model->GetBackgroundColor(index, is_hovered, override_color);
|
|
+
|
|
+ NOTREACHED();
|
|
+ return false;
|
|
+}
|
|
+
|
|
void MenuModelAdapter::WillShowMenu(MenuItemView* menu) {
|
|
// Look up the menu model for this menu.
|
|
const std::map<MenuItemView*, ui::MenuModel*>::const_iterator map_iterator =
|
|
diff --git ui/views/controls/menu/menu_model_adapter.h ui/views/controls/menu/menu_model_adapter.h
|
|
index b7c7474fb5910..ce3e14071f0c6 100644
|
|
--- ui/views/controls/menu/menu_model_adapter.h
|
|
+++ ui/views/controls/menu/menu_model_adapter.h
|
|
@@ -88,6 +88,20 @@ class VIEWS_EXPORT MenuModelAdapter : public MenuDelegate,
|
|
bool IsCommandEnabled(int id) const override;
|
|
bool IsCommandVisible(int id) const override;
|
|
bool IsItemChecked(int id) const override;
|
|
+ MenuItemView* GetSiblingMenu(MenuItemView* menu,
|
|
+ const gfx::Point& screen_point,
|
|
+ MenuAnchorPosition* anchor,
|
|
+ bool* has_mnemonics,
|
|
+ MenuButton** button) override;
|
|
+ void OnUnhandledOpenSubmenu(MenuItemView* menu, bool is_rtl) override;
|
|
+ void OnUnhandledCloseSubmenu(MenuItemView* menu, bool is_rtl) override;
|
|
+ bool GetTextColor(int command_id,
|
|
+ bool is_minor,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const override;
|
|
+ bool GetBackgroundColor(int command_id,
|
|
+ bool is_hovered,
|
|
+ SkColor* override_color) const override;
|
|
void WillShowMenu(MenuItemView* menu) override;
|
|
void WillHideMenu(MenuItemView* menu) override;
|
|
void OnMenuClosed(MenuItemView* menu) override;
|
|
diff --git ui/views/controls/menu/menu_runner.cc ui/views/controls/menu/menu_runner.cc
|
|
index 31716d454d1cd..f778a989ad663 100644
|
|
--- ui/views/controls/menu/menu_runner.cc
|
|
+++ ui/views/controls/menu/menu_runner.cc
|
|
@@ -34,7 +34,8 @@ void MenuRunner::RunMenuAt(Widget* parent,
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
ui::MenuSourceType source_type,
|
|
- gfx::NativeView native_view_for_gestures) {
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget) {
|
|
// Do not attempt to show the menu if the application is currently shutting
|
|
// down. MenuDelegate::OnMenuClosed would not be called.
|
|
if (ViewsDelegate::GetInstance() &&
|
|
@@ -80,7 +81,7 @@ void MenuRunner::RunMenuAt(Widget* parent,
|
|
}
|
|
|
|
impl_->RunMenuAt(parent, button_controller, bounds, anchor, run_types_,
|
|
- native_view_for_gestures);
|
|
+ native_view_for_gestures, parent_widget);
|
|
}
|
|
|
|
bool MenuRunner::IsRunning() const {
|
|
diff --git ui/views/controls/menu/menu_runner.h ui/views/controls/menu/menu_runner.h
|
|
index 17c074cbd7dc9..53921c55671cf 100644
|
|
--- ui/views/controls/menu/menu_runner.h
|
|
+++ ui/views/controls/menu/menu_runner.h
|
|
@@ -146,7 +146,9 @@ class VIEWS_EXPORT MenuRunner {
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
ui::MenuSourceType source_type,
|
|
- gfx::NativeView native_view_for_gestures = nullptr);
|
|
+ gfx::NativeView native_view_for_gestures = nullptr,
|
|
+ gfx::AcceleratedWidget parent_widget =
|
|
+ gfx::kNullAcceleratedWidget);
|
|
|
|
// Returns true if we're in a nested run loop running the menu.
|
|
bool IsRunning() const;
|
|
diff --git ui/views/controls/menu/menu_runner_impl.cc ui/views/controls/menu/menu_runner_impl.cc
|
|
index 4311a517b1179..7eed89badd038 100644
|
|
--- ui/views/controls/menu/menu_runner_impl.cc
|
|
+++ ui/views/controls/menu/menu_runner_impl.cc
|
|
@@ -119,7 +119,8 @@ void MenuRunnerImpl::RunMenuAt(Widget* parent,
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
int32_t run_types,
|
|
- gfx::NativeView native_view_for_gestures) {
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget) {
|
|
closing_event_time_ = base::TimeTicks();
|
|
if (running_) {
|
|
// Ignore requests to show the menu while it's already showing. MenuItemView
|
|
@@ -184,7 +185,7 @@ void MenuRunnerImpl::RunMenuAt(Widget* parent,
|
|
controller->Run(parent, button_controller, menu_, bounds, anchor,
|
|
(run_types & MenuRunner::CONTEXT_MENU) != 0,
|
|
(run_types & MenuRunner::NESTED_DRAG) != 0,
|
|
- native_view_for_gestures);
|
|
+ native_view_for_gestures, parent_widget);
|
|
}
|
|
|
|
void MenuRunnerImpl::Cancel() {
|
|
diff --git ui/views/controls/menu/menu_runner_impl.h ui/views/controls/menu/menu_runner_impl.h
|
|
index c99ef21736a5b..f24375fed0f48 100644
|
|
--- ui/views/controls/menu/menu_runner_impl.h
|
|
+++ ui/views/controls/menu/menu_runner_impl.h
|
|
@@ -47,7 +47,8 @@ class VIEWS_EXPORT MenuRunnerImpl : public MenuRunnerImplInterface,
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
int32_t run_types,
|
|
- gfx::NativeView native_view_for_gestures) override;
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget) override;
|
|
void Cancel() override;
|
|
base::TimeTicks GetClosingEventTime() const override;
|
|
|
|
diff --git ui/views/controls/menu/menu_runner_impl_adapter.cc ui/views/controls/menu/menu_runner_impl_adapter.cc
|
|
index fbc9166e188a8..48f87d01e61f4 100644
|
|
--- ui/views/controls/menu/menu_runner_impl_adapter.cc
|
|
+++ ui/views/controls/menu/menu_runner_impl_adapter.cc
|
|
@@ -34,9 +34,10 @@ void MenuRunnerImplAdapter::RunMenuAt(
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
int32_t types,
|
|
- gfx::NativeView native_view_for_gestures) {
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget) {
|
|
impl_->RunMenuAt(parent, button_controller, bounds, anchor, types,
|
|
- native_view_for_gestures);
|
|
+ native_view_for_gestures, parent_widget);
|
|
}
|
|
|
|
void MenuRunnerImplAdapter::Cancel() {
|
|
diff --git ui/views/controls/menu/menu_runner_impl_adapter.h ui/views/controls/menu/menu_runner_impl_adapter.h
|
|
index 4bec3df3f3d32..0ebb3b2ac73df 100644
|
|
--- ui/views/controls/menu/menu_runner_impl_adapter.h
|
|
+++ ui/views/controls/menu/menu_runner_impl_adapter.h
|
|
@@ -38,7 +38,8 @@ class VIEWS_EXPORT MenuRunnerImplAdapter : public MenuRunnerImplInterface {
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
int32_t types,
|
|
- gfx::NativeView native_view_for_gestures) override;
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget) override;
|
|
void Cancel() override;
|
|
base::TimeTicks GetClosingEventTime() const override;
|
|
|
|
diff --git ui/views/controls/menu/menu_runner_impl_cocoa.h ui/views/controls/menu/menu_runner_impl_cocoa.h
|
|
index 27bc7381ba22c..5d13b85fcc5cf 100644
|
|
--- ui/views/controls/menu/menu_runner_impl_cocoa.h
|
|
+++ ui/views/controls/menu/menu_runner_impl_cocoa.h
|
|
@@ -37,7 +37,8 @@ class VIEWS_EXPORT MenuRunnerImplCocoa : public MenuRunnerImplInterface {
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
int32_t run_types,
|
|
- gfx::NativeView native_view_for_gestures) override;
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget) override;
|
|
void Cancel() override;
|
|
base::TimeTicks GetClosingEventTime() const override;
|
|
|
|
diff --git ui/views/controls/menu/menu_runner_impl_cocoa.mm ui/views/controls/menu/menu_runner_impl_cocoa.mm
|
|
index 6f92eb0c4f6f9..dba3c63e59b4b 100644
|
|
--- ui/views/controls/menu/menu_runner_impl_cocoa.mm
|
|
+++ ui/views/controls/menu/menu_runner_impl_cocoa.mm
|
|
@@ -511,7 +511,8 @@ void MenuRunnerImplCocoa::RunMenuAt(Widget* parent,
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
int32_t run_types,
|
|
- gfx::NativeView native_view_for_gestures) {
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget /*parent_widget*/) {
|
|
DCHECK(!IsRunning());
|
|
DCHECK(parent);
|
|
closing_event_time_ = base::TimeTicks();
|
|
diff --git ui/views/controls/menu/menu_runner_impl_interface.h ui/views/controls/menu/menu_runner_impl_interface.h
|
|
index 54c95d830233e..408f090b55698 100644
|
|
--- ui/views/controls/menu/menu_runner_impl_interface.h
|
|
+++ ui/views/controls/menu/menu_runner_impl_interface.h
|
|
@@ -40,7 +40,9 @@ class MenuRunnerImplInterface {
|
|
const gfx::Rect& bounds,
|
|
MenuAnchorPosition anchor,
|
|
int32_t run_types,
|
|
- gfx::NativeView native_view_for_gestures) = 0;
|
|
+ gfx::NativeView native_view_for_gestures,
|
|
+ gfx::AcceleratedWidget parent_widget =
|
|
+ gfx::kNullAcceleratedWidget) = 0;
|
|
|
|
// Hides and cancels the menu.
|
|
virtual void Cancel() = 0;
|
|
diff --git ui/views/controls/menu/menu_scroll_view_container.cc ui/views/controls/menu/menu_scroll_view_container.cc
|
|
index 1ffec7052a314..3a2be376fb000 100644
|
|
--- ui/views/controls/menu/menu_scroll_view_container.cc
|
|
+++ ui/views/controls/menu/menu_scroll_view_container.cc
|
|
@@ -259,6 +259,11 @@ MenuScrollViewContainer::MenuScrollViewContainer(SubmenuView* content_view)
|
|
scroll_down_button_ = background_view_->AddChildView(
|
|
std::make_unique<MenuScrollButton>(content_view, false));
|
|
|
|
+ SkColor override_color;
|
|
+ MenuDelegate* delegate = content_view_->GetMenuItem()->GetDelegate();
|
|
+ if (delegate && delegate->GetBackgroundColor(-1, false, &override_color))
|
|
+ SetBackground(views::CreateSolidBackground(override_color));
|
|
+
|
|
arrow_ = BubbleBorderTypeFromAnchor(
|
|
content_view_->GetMenuItem()->GetMenuController()->GetAnchorPosition());
|
|
|
|
diff --git ui/views/test/ui_controls_factory_desktop_aura_ozone.cc ui/views/test/ui_controls_factory_desktop_aura_ozone.cc
|
|
index bec549b841bd7..0934f19177358 100644
|
|
--- ui/views/test/ui_controls_factory_desktop_aura_ozone.cc
|
|
+++ ui/views/test/ui_controls_factory_desktop_aura_ozone.cc
|
|
@@ -16,6 +16,7 @@
|
|
#include "base/threading/thread_task_runner_handle.h"
|
|
#include "build/build_config.h"
|
|
#include "build/chromeos_buildflags.h"
|
|
+#include "cef/libcef/features/features.h"
|
|
#include "ui/aura/client/screen_position_client.h"
|
|
#include "ui/aura/env.h"
|
|
#include "ui/aura/test/aura_test_utils.h"
|
|
@@ -100,9 +101,11 @@ class UIControlsDesktopOzone : public UIControlsAura {
|
|
aura::test::QueryLatestMousePositionRequestInHost(host);
|
|
host->ConvertPixelsToDIP(&root_current_location);
|
|
|
|
+#if !BUILDFLAG(ENABLE_CEF)
|
|
auto* screen = views::test::TestDesktopScreenOzone::GetInstance();
|
|
DCHECK_EQ(screen, display::Screen::GetScreen());
|
|
screen->set_cursor_screen_point(gfx::Point(screen_x, screen_y));
|
|
+#endif
|
|
|
|
if (root_location != root_current_location &&
|
|
ozone_ui_controls_test_helper_->ButtonDownMask() == 0 &&
|
|
diff --git ui/views/view.h ui/views/view.h
|
|
index ef40c571d57c0..0fd51538fbefd 100644
|
|
--- ui/views/view.h
|
|
+++ ui/views/view.h
|
|
@@ -22,6 +22,7 @@
|
|
#include "base/memory/raw_ptr.h"
|
|
#include "base/observer_list.h"
|
|
#include "base/strings/string_piece.h"
|
|
+#include "base/supports_user_data.h"
|
|
#include "build/build_config.h"
|
|
#include "third_party/abseil-cpp/absl/types/optional.h"
|
|
#include "third_party/skia/include/core/SkPath.h"
|
|
@@ -271,7 +272,8 @@ class VIEWS_EXPORT View : public ui::LayerDelegate,
|
|
public ui::EventTarget,
|
|
public ui::EventHandler,
|
|
public ui::PropertyHandler,
|
|
- public ui::metadata::MetaDataProvider {
|
|
+ public ui::metadata::MetaDataProvider,
|
|
+ public base::SupportsUserData {
|
|
public:
|
|
using Views = std::vector<View*>;
|
|
|