2017-02-22 19:05:27 +01:00
|
|
|
diff --git ui/base/models/menu_model.h ui/base/models/menu_model.h
|
2018-11-30 23:21:07 +01:00
|
|
|
index fb958b187f0b..131f2fe7490e 100644
|
2017-02-22 19:05:27 +01:00
|
|
|
--- ui/base/models/menu_model.h
|
|
|
|
+++ ui/base/models/menu_model.h
|
|
|
|
@@ -15,6 +15,7 @@
|
|
|
|
namespace gfx {
|
|
|
|
class FontList;
|
|
|
|
class Image;
|
|
|
|
+class Point;
|
2018-03-20 21:15:08 +01:00
|
|
|
struct VectorIcon;
|
2017-02-22 19:05:27 +01:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:21:07 +01:00
|
|
|
@@ -124,6 +125,27 @@ class UI_BASE_EXPORT MenuModel {
|
2017-02-22 19:05:27 +01:00
|
|
|
// |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) {}
|
2017-02-25 06:03:31 +01:00
|
|
|
+
|
|
|
|
+ // Override the text/background color of a given menu item dependent on the
|
2017-03-03 23:37:23 +01:00
|
|
|
+ // |index| and its |is_hovered| state. |is_minor| will be true for accelerator
|
|
|
|
+ // text. Returns true if it chooses to override the color.
|
2017-02-25 06:03:31 +01:00
|
|
|
+ virtual bool GetTextColor(int index,
|
2017-03-03 23:37:23 +01:00
|
|
|
+ bool is_minor,
|
2017-02-25 06:03:31 +01:00
|
|
|
+ bool is_hovered,
|
|
|
|
+ SkColor* override_color) const { return false; }
|
|
|
|
+ virtual bool GetBackgroundColor(int index,
|
|
|
|
+ bool is_hovered,
|
|
|
|
+ SkColor* override_color) const
|
|
|
|
+ { return false; }
|
2017-02-22 19:05:27 +01:00
|
|
|
+
|
|
|
|
// Called when the menu is about to be shown.
|
|
|
|
virtual void MenuWillShow() {}
|
|
|
|
|
2017-02-24 21:01:42 +01:00
|
|
|
diff --git ui/gfx/render_text.cc ui/gfx/render_text.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
index 974d8069e3a2..f3867546bb79 100644
|
2017-02-24 21:01:42 +01:00
|
|
|
--- ui/gfx/render_text.cc
|
|
|
|
+++ ui/gfx/render_text.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -508,6 +508,14 @@ void RenderText::SetElideBehavior(ElideBehavior elide_behavior) {
|
2017-02-24 21:01:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+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;
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -1504,6 +1512,19 @@ void RenderText::OnTextAttributeChanged() {
|
2017-02-24 21:01:42 +01:00
|
|
|
if (!multiline_ && replace_newline_chars_with_symbols_)
|
|
|
|
base::ReplaceChars(layout_text_, kNewline, kNewlineSymbol, &layout_text_);
|
|
|
|
|
|
|
|
+ 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::RemoveAcceleratorChar(layout_text_, '&', &char_pos, &char_span);
|
|
|
|
+ if (char_pos != -1) {
|
|
|
|
+ gfx::Range range(char_pos, char_pos + char_span);
|
|
|
|
+ styles_[gfx::UNDERLINE].ApplyValue(true, range);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
OnLayoutTextAttributeChanged(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git ui/gfx/render_text.h ui/gfx/render_text.h
|
2019-01-17 10:56:52 +01:00
|
|
|
index 6eaea6c52ccc..a3ddc5a441db 100644
|
2017-02-24 21:01:42 +01:00
|
|
|
--- ui/gfx/render_text.h
|
|
|
|
+++ ui/gfx/render_text.h
|
2018-07-24 00:32:02 +02:00
|
|
|
@@ -307,6 +307,10 @@ class GFX_EXPORT RenderText {
|
2017-02-24 21:01:42 +01:00
|
|
|
void SetElideBehavior(ElideBehavior elide_behavior);
|
|
|
|
ElideBehavior elide_behavior() const { return elide_behavior_; }
|
|
|
|
|
|
|
|
+ // 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);
|
|
|
|
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -916,6 +920,8 @@ class GFX_EXPORT RenderText {
|
2017-12-07 22:44:24 +01:00
|
|
|
// Extra spacing placed between glyphs; used for obscured text styling.
|
|
|
|
int glyph_spacing_ = 0;
|
2017-02-24 21:01:42 +01:00
|
|
|
|
|
|
|
+ int draw_strings_flags_ = 0;
|
|
|
|
+
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(RenderText);
|
|
|
|
};
|
|
|
|
|
2017-05-31 17:33:30 +02:00
|
|
|
diff --git ui/views/animation/ink_drop_host_view.h ui/views/animation/ink_drop_host_view.h
|
2019-01-17 10:56:52 +01:00
|
|
|
index b137d7ff80e3..d6aefad0affb 100644
|
2017-05-31 17:33:30 +02:00
|
|
|
--- ui/views/animation/ink_drop_host_view.h
|
|
|
|
+++ ui/views/animation/ink_drop_host_view.h
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -119,6 +119,8 @@ class VIEWS_EXPORT InkDropHostView : public View {
|
2017-08-04 00:55:19 +02:00
|
|
|
// them.
|
|
|
|
void AnimateInkDrop(InkDropState state, const ui::LocatedEvent* event);
|
2017-05-31 17:33:30 +02:00
|
|
|
|
|
|
|
+ InkDropMode ink_drop_mode() const { return ink_drop_mode_; }
|
|
|
|
+
|
2017-08-04 00:55:19 +02:00
|
|
|
protected:
|
2018-05-14 13:24:05 +02:00
|
|
|
// Size used for the default SquareInkDropRipple.
|
|
|
|
static constexpr int kDefaultInkDropSize = 24;
|
2017-02-24 21:01:42 +01:00
|
|
|
diff --git ui/views/controls/button/label_button.cc ui/views/controls/button/label_button.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
index 79b6dca32725..9dbb179ee3a4 100644
|
2017-02-24 21:01:42 +01:00
|
|
|
--- ui/views/controls/button/label_button.cc
|
|
|
|
+++ ui/views/controls/button/label_button.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -185,6 +185,7 @@ gfx::Size LabelButton::CalculatePreferredSize() const {
|
2017-04-20 21:28:17 +02:00
|
|
|
Label label(GetText(), {label_->font_list()});
|
|
|
|
label.SetLineHeight(label_->line_height());
|
2017-02-24 21:01:42 +01:00
|
|
|
label.SetShadows(label_->shadows());
|
|
|
|
+ label.SetDrawStringsFlags(label_->draw_strings_flags());
|
|
|
|
|
2017-12-07 22:44:24 +01:00
|
|
|
if (style_ == STYLE_BUTTON) {
|
2017-02-24 21:01:42 +01:00
|
|
|
// Some text appears wider when rendered normally than when rendered bold.
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -380,6 +381,12 @@ void LabelButton::GetAccessibleNodeData(ui::AXNodeData* node_data) {
|
2018-11-30 23:21:07 +01:00
|
|
|
Button::GetAccessibleNodeData(node_data);
|
2017-05-31 17:33:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+void LabelButton::SetFontList(const gfx::FontList& font_list) {
|
|
|
|
+ cached_normal_font_list_ = font_list;
|
2017-08-08 22:10:24 +02:00
|
|
|
+ cached_default_button_font_list_ = font_list;
|
2017-05-31 17:33:30 +02:00
|
|
|
+ label_->SetFontList(cached_normal_font_list_);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void LabelButton::StateChanged(ButtonState old_state) {
|
|
|
|
const gfx::Size previous_image_size(image_->GetPreferredSize());
|
|
|
|
UpdateImage();
|
|
|
|
diff --git ui/views/controls/button/label_button.h ui/views/controls/button/label_button.h
|
2019-01-17 10:56:52 +01:00
|
|
|
index 0200201196b2..6e1617c927ba 100644
|
2017-05-31 17:33:30 +02:00
|
|
|
--- ui/views/controls/button/label_button.h
|
|
|
|
+++ ui/views/controls/button/label_button.h
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -97,6 +97,9 @@ class VIEWS_EXPORT LabelButton : public Button, public NativeThemeDelegate {
|
|
|
|
void RemoveInkDropLayer(ui::Layer* ink_drop_layer) override;
|
2018-11-30 23:21:07 +01:00
|
|
|
void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
|
2017-05-31 17:33:30 +02:00
|
|
|
|
|
|
|
+ // Sets the font list used by this button.
|
|
|
|
+ void SetFontList(const gfx::FontList& font_list);
|
|
|
|
+
|
|
|
|
protected:
|
|
|
|
ImageView* image() const { return image_; }
|
2017-07-27 01:19:27 +02:00
|
|
|
Label* label() const;
|
2017-02-23 21:24:45 +01:00
|
|
|
diff --git ui/views/controls/label.cc ui/views/controls/label.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
index faa027d58c0f..d80e80830fd9 100644
|
2017-02-23 21:24:45 +01:00
|
|
|
--- ui/views/controls/label.cc
|
|
|
|
+++ ui/views/controls/label.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -35,6 +35,22 @@
|
|
|
|
|
|
|
|
namespace views {
|
|
|
|
|
|
|
|
+namespace {
|
2017-02-23 21:24:45 +01:00
|
|
|
+// 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, base::string16* text) {
|
|
|
|
+ if (flags & (gfx::Canvas::SHOW_PREFIX | gfx::Canvas::HIDE_PREFIX)) {
|
|
|
|
+ int char_pos = -1;
|
|
|
|
+ int char_span = 0;
|
|
|
|
+ *text = gfx::RemoveAcceleratorChar(*text, '&', &char_pos, &char_span);
|
|
|
|
+ if ((flags & gfx::Canvas::SHOW_PREFIX) && char_pos != -1)
|
|
|
|
+ return gfx::Range(char_pos, char_pos + char_span);
|
|
|
|
+ }
|
2019-01-17 10:56:52 +01:00
|
|
|
+ return gfx::Range::InvalidRange();
|
2017-02-23 21:24:45 +01:00
|
|
|
+}
|
2019-01-17 10:56:52 +01:00
|
|
|
+} // namespace
|
|
|
|
+
|
2017-02-23 21:24:45 +01:00
|
|
|
const char Label::kViewClassName[] = "Label";
|
2019-01-17 10:56:52 +01:00
|
|
|
|
|
|
|
Label::Label() : Label(base::string16()) {
|
|
|
|
@@ -194,6 +210,14 @@ void Label::SetElideBehavior(gfx::ElideBehavior elide_behavior) {
|
2017-02-23 21:24:45 +01:00
|
|
|
ResetLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
+void Label::SetDrawStringsFlags(int flags) {
|
|
|
|
+ if (draw_strings_flags_ == flags)
|
|
|
|
+ return;
|
|
|
|
+ draw_strings_flags_ = flags;
|
2018-02-15 01:12:09 +01:00
|
|
|
+ full_text_->SetDrawStringsFlags(draw_strings_flags_);
|
2017-02-23 21:24:45 +01:00
|
|
|
+ ResetLayout();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void Label::SetTooltipText(const base::string16& tooltip_text) {
|
|
|
|
DCHECK(handles_tooltips_);
|
|
|
|
tooltip_text_ = tooltip_text;
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -422,7 +446,19 @@ std::unique_ptr<gfx::RenderText> Label::CreateRenderText() const {
|
2017-02-23 21:24:45 +01:00
|
|
|
render_text->SetFontList(font_list());
|
|
|
|
render_text->set_shadows(shadows());
|
|
|
|
render_text->SetCursorEnabled(false);
|
2018-02-15 01:12:09 +01:00
|
|
|
- render_text->SetText(text());
|
2017-02-23 21:24:45 +01:00
|
|
|
+
|
|
|
|
+ if (draw_strings_flags_ != 0) {
|
2018-02-15 01:12:09 +01:00
|
|
|
+ base::string16 text_str = text();
|
2017-02-23 21:24:45 +01:00
|
|
|
+ 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::UNDERLINE, true, range);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
2018-02-15 01:12:09 +01:00
|
|
|
+ render_text->SetText(text());
|
2017-02-23 21:24:45 +01:00
|
|
|
+ }
|
|
|
|
+
|
2018-02-15 01:12:09 +01:00
|
|
|
render_text->SetMultiline(multi_line());
|
|
|
|
render_text->SetMaxLines(multi_line() ? max_lines() : 0);
|
|
|
|
render_text->SetWordWrapBehavior(full_text_->word_wrap_behavior());
|
2017-02-23 21:24:45 +01:00
|
|
|
diff --git ui/views/controls/label.h ui/views/controls/label.h
|
2019-01-17 10:56:52 +01:00
|
|
|
index 1c88fb1930ae..0d53ec1236b0 100644
|
2017-02-23 21:24:45 +01:00
|
|
|
--- ui/views/controls/label.h
|
|
|
|
+++ ui/views/controls/label.h
|
2018-03-20 21:15:08 +01:00
|
|
|
@@ -153,6 +153,10 @@ class VIEWS_EXPORT Label : public View,
|
2017-02-23 21:24:45 +01:00
|
|
|
void SetElideBehavior(gfx::ElideBehavior elide_behavior);
|
|
|
|
gfx::ElideBehavior elide_behavior() const { return elide_behavior_; }
|
|
|
|
|
|
|
|
+ // Get or set the flags that control display of accelerator characters.
|
|
|
|
+ void SetDrawStringsFlags(int flags);
|
|
|
|
+ int draw_strings_flags() const { return draw_strings_flags_; }
|
|
|
|
+
|
|
|
|
// 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 revert to
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -373,6 +377,7 @@ class VIEWS_EXPORT Label : public View,
|
2017-02-23 21:24:45 +01:00
|
|
|
bool collapse_when_hidden_;
|
|
|
|
int fixed_width_;
|
|
|
|
int max_width_;
|
|
|
|
+ int draw_strings_flags_ = 0;
|
|
|
|
|
2018-03-20 21:15:08 +01:00
|
|
|
std::unique_ptr<SelectionController> selection_controller_;
|
|
|
|
|
2017-02-22 19:05:27 +01:00
|
|
|
diff --git ui/views/controls/menu/menu_controller.cc ui/views/controls/menu/menu_controller.cc
|
2018-12-26 16:12:11 +01:00
|
|
|
index 237a19181f21..92b5c9e3e349 100644
|
2017-02-22 19:05:27 +01:00
|
|
|
--- ui/views/controls/menu/menu_controller.cc
|
|
|
|
+++ ui/views/controls/menu/menu_controller.cc
|
2018-12-26 16:12:11 +01:00
|
|
|
@@ -2501,8 +2501,13 @@ MenuItemView* MenuController::FindNextSelectableMenuItem(
|
2017-02-22 19:05:27 +01:00
|
|
|
|
|
|
|
void MenuController::OpenSubmenuChangeSelectionIfCan() {
|
|
|
|
MenuItemView* item = pending_state_.item;
|
|
|
|
- if (!item->HasSubmenu() || !item->enabled())
|
|
|
|
+ if (!item->HasSubmenu() || !item->enabled() || !item->GetParentMenuItem()) {
|
|
|
|
+ MenuItemView* submenu_item =
|
|
|
|
+ item->GetParentMenuItem() ? item->GetParentMenuItem() : item;
|
|
|
|
+ submenu_item->GetDelegate()->OnUnhandledOpenSubmenu(submenu_item,
|
|
|
|
+ base::i18n::IsRTL());
|
|
|
|
return;
|
|
|
|
+ }
|
|
|
|
MenuItemView* to_select = NULL;
|
|
|
|
if (item->GetSubmenu()->GetMenuItemCount() > 0)
|
|
|
|
to_select = FindInitialSelectableMenuItem(item, INCREMENT_SELECTION_DOWN);
|
2018-12-26 16:12:11 +01:00
|
|
|
@@ -2517,8 +2522,10 @@ void MenuController::OpenSubmenuChangeSelectionIfCan() {
|
2017-02-22 19:05:27 +01:00
|
|
|
void MenuController::CloseSubmenu() {
|
|
|
|
MenuItemView* item = state_.item;
|
|
|
|
DCHECK(item);
|
|
|
|
- if (!item->GetParentMenuItem())
|
|
|
|
+ if (!item->GetParentMenuItem()) {
|
|
|
|
+ item->GetDelegate()->OnUnhandledCloseSubmenu(item, base::i18n::IsRTL());
|
|
|
|
return;
|
|
|
|
+ }
|
2017-07-27 01:19:27 +02:00
|
|
|
if (item->SubmenuIsShowing())
|
2017-02-22 19:05:27 +01:00
|
|
|
SetSelection(item, SELECTION_UPDATE_IMMEDIATELY);
|
|
|
|
else if (item->GetParentMenuItem()->GetParentMenuItem())
|
|
|
|
diff --git ui/views/controls/menu/menu_delegate.h ui/views/controls/menu/menu_delegate.h
|
2018-11-30 23:21:07 +01:00
|
|
|
index 69a8ed510b6e..3917e7e17fc7 100644
|
2017-02-22 19:05:27 +01:00
|
|
|
--- ui/views/controls/menu/menu_delegate.h
|
|
|
|
+++ ui/views/controls/menu/menu_delegate.h
|
2018-11-30 23:21:07 +01:00
|
|
|
@@ -81,6 +81,22 @@ class VIEWS_EXPORT MenuDelegate {
|
2018-09-04 11:43:21 +02:00
|
|
|
// parts of |style| or leave it unmodified.
|
|
|
|
virtual void GetLabelStyle(int id, LabelStyle* style) const;
|
2017-05-31 17:33:30 +02:00
|
|
|
|
2017-03-03 23:37:23 +01:00
|
|
|
+ // 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
|
2017-02-25 06:03:31 +01:00
|
|
|
+ // |command_id| and its |is_hovered| state. Returns true if it chooses to
|
|
|
|
+ // override the color.
|
2017-03-03 23:37:23 +01:00
|
|
|
+ virtual bool GetBackgroundColor(int command_id,
|
|
|
|
+ bool is_hovered,
|
|
|
|
+ SkColor* override_color) const
|
|
|
|
+ { return false; }
|
2017-05-31 17:33:30 +02:00
|
|
|
+
|
2017-03-03 23:37:23 +01:00
|
|
|
// 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.
|
2017-05-31 17:33:30 +02:00
|
|
|
virtual base::string16 GetTooltipText(int id,
|
2018-11-30 23:21:07 +01:00
|
|
|
@@ -213,6 +229,11 @@ class VIEWS_EXPORT MenuDelegate {
|
2017-02-22 19:05:27 +01:00
|
|
|
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);
|
|
|
|
|
2017-02-25 06:03:31 +01:00
|
|
|
diff --git ui/views/controls/menu/menu_item_view.cc ui/views/controls/menu/menu_item_view.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
index ebe01b0dc296..5aa42127583d 100644
|
2017-02-25 06:03:31 +01:00
|
|
|
--- ui/views/controls/menu/menu_item_view.cc
|
|
|
|
+++ ui/views/controls/menu/menu_item_view.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -1020,6 +1020,15 @@ void MenuItemView::PaintBackground(gfx::Canvas* canvas,
|
2018-11-30 23:21:07 +01:00
|
|
|
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();
|
2017-03-03 23:37:23 +01:00
|
|
|
+ SkColor override_color;
|
|
|
|
+ if (delegate && delegate->GetBackgroundColor(GetCommand(),
|
|
|
|
+ render_selection,
|
|
|
|
+ &override_color)) {
|
|
|
|
+ canvas->DrawColor(override_color);
|
2018-11-30 23:21:07 +01:00
|
|
|
} else if (render_selection) {
|
|
|
|
gfx::Rect item_bounds = GetLocalBounds();
|
2018-05-20 15:51:42 +02:00
|
|
|
if (type_ == ACTIONABLE_SUBMENU) {
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -1086,6 +1095,13 @@ void MenuItemView::PaintMinorIconAndText(
|
2018-09-04 11:43:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SkColor MenuItemView::GetTextColor(bool minor, bool render_selection) const {
|
2017-02-25 06:03:31 +01:00
|
|
|
+ SkColor text_color;
|
2017-03-03 23:37:23 +01:00
|
|
|
+ const MenuDelegate *delegate = GetDelegate();
|
|
|
|
+ if (delegate && delegate->GetTextColor(GetCommand(), minor, render_selection,
|
|
|
|
+ &text_color)) {
|
|
|
|
+ return text_color;
|
2017-02-25 06:03:31 +01:00
|
|
|
+ }
|
|
|
|
+
|
2017-03-03 23:37:23 +01:00
|
|
|
ui::NativeTheme::ColorId color_id =
|
2018-04-19 17:44:42 +02:00
|
|
|
minor ? ui::NativeTheme::kColorId_MenuItemMinorTextColor
|
2017-03-03 23:37:23 +01:00
|
|
|
: ui::NativeTheme::kColorId_EnabledMenuItemForegroundColor;
|
2017-02-22 19:05:27 +01:00
|
|
|
diff --git ui/views/controls/menu/menu_model_adapter.cc ui/views/controls/menu/menu_model_adapter.cc
|
2018-11-30 23:21:07 +01:00
|
|
|
index 08132c522c1a..a29813f08b69 100644
|
2017-02-22 19:05:27 +01:00
|
|
|
--- ui/views/controls/menu/menu_model_adapter.cc
|
|
|
|
+++ ui/views/controls/menu/menu_model_adapter.cc
|
2018-11-30 23:21:07 +01:00
|
|
|
@@ -236,6 +236,77 @@ void MenuModelAdapter::SelectionChanged(MenuItemView* menu) {
|
2017-02-22 19:05:27 +01:00
|
|
|
NOTREACHED();
|
|
|
|
}
|
|
|
|
|
|
|
|
+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();
|
|
|
|
+}
|
2017-02-25 06:03:31 +01:00
|
|
|
+
|
2017-03-03 23:37:23 +01:00
|
|
|
+bool MenuModelAdapter::GetTextColor(int command_id,
|
|
|
|
+ bool is_minor,
|
|
|
|
+ bool is_hovered,
|
|
|
|
+ SkColor* override_color) const {
|
2017-02-25 06:03:31 +01:00
|
|
|
+ ui::MenuModel* model = menu_model_;
|
|
|
|
+ int index = 0;
|
|
|
|
+ if (ui::MenuModel::GetModelAndIndexForCommandId(command_id, &model, &index))
|
2017-03-03 23:37:23 +01:00
|
|
|
+ return model->GetTextColor(index, is_minor, is_hovered, override_color);
|
2017-02-25 06:03:31 +01:00
|
|
|
+
|
|
|
|
+ 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;
|
|
|
|
+}
|
2017-02-22 19:05:27 +01:00
|
|
|
+
|
|
|
|
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
|
2018-09-04 11:43:21 +02:00
|
|
|
index e52edfe5edd7..ab23f3df914e 100644
|
2017-02-22 19:05:27 +01:00
|
|
|
--- ui/views/controls/menu/menu_model_adapter.h
|
|
|
|
+++ ui/views/controls/menu/menu_model_adapter.h
|
2017-03-03 23:37:23 +01:00
|
|
|
@@ -76,6 +76,20 @@ class VIEWS_EXPORT MenuModelAdapter : public MenuDelegate {
|
2017-02-22 19:05:27 +01:00
|
|
|
bool IsCommandVisible(int id) const override;
|
|
|
|
bool IsItemChecked(int id) const override;
|
|
|
|
void SelectionChanged(MenuItemView* menu) 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;
|
2017-03-03 23:37:23 +01:00
|
|
|
+ bool GetTextColor(int command_id,
|
|
|
|
+ bool is_minor,
|
|
|
|
+ bool is_hovered,
|
|
|
|
+ SkColor* override_color) const override;
|
2017-02-25 06:03:31 +01:00
|
|
|
+ bool GetBackgroundColor(int command_id,
|
|
|
|
+ bool is_hovered,
|
|
|
|
+ SkColor* override_color) const override;
|
2017-02-22 19:05:27 +01:00
|
|
|
void WillShowMenu(MenuItemView* menu) override;
|
|
|
|
void WillHideMenu(MenuItemView* menu) override;
|
2017-05-31 17:33:30 +02:00
|
|
|
void OnMenuClosed(MenuItemView* menu) override;
|
2017-02-25 06:03:31 +01:00
|
|
|
diff --git ui/views/controls/menu/menu_scroll_view_container.cc ui/views/controls/menu/menu_scroll_view_container.cc
|
2019-01-17 10:56:52 +01:00
|
|
|
index 43752f51ba8e..f15197713548 100644
|
2017-02-25 06:03:31 +01:00
|
|
|
--- ui/views/controls/menu/menu_scroll_view_container.cc
|
|
|
|
+++ ui/views/controls/menu/menu_scroll_view_container.cc
|
2018-11-30 23:21:07 +01:00
|
|
|
@@ -181,6 +181,11 @@ MenuScrollViewContainer::MenuScrollViewContainer(SubmenuView* content_view)
|
2017-02-25 06:03:31 +01:00
|
|
|
scroll_view_ = new MenuScrollView(content_view);
|
|
|
|
AddChildView(scroll_view_);
|
|
|
|
|
|
|
|
+ SkColor override_color;
|
|
|
|
+ MenuDelegate* delegate = content_view_->GetMenuItem()->GetDelegate();
|
|
|
|
+ if (delegate && delegate->GetBackgroundColor(-1, false, &override_color))
|
2017-07-27 01:19:27 +02:00
|
|
|
+ SetBackground(views::CreateSolidBackground(override_color));
|
2017-02-25 06:03:31 +01:00
|
|
|
+
|
|
|
|
arrow_ = BubbleBorderTypeFromAnchor(
|
|
|
|
content_view_->GetMenuItem()->GetMenuController()->GetAnchorPosition());
|
|
|
|
|
2017-05-31 17:33:30 +02:00
|
|
|
diff --git ui/views/test/ui_controls_factory_desktop_aurax11.cc ui/views/test/ui_controls_factory_desktop_aurax11.cc
|
2018-11-30 23:21:07 +01:00
|
|
|
index 0180b30d383a..c0724b6b80a7 100644
|
2017-05-31 17:33:30 +02:00
|
|
|
--- ui/views/test/ui_controls_factory_desktop_aurax11.cc
|
|
|
|
+++ ui/views/test/ui_controls_factory_desktop_aurax11.cc
|
2017-12-07 22:44:24 +01:00
|
|
|
@@ -140,10 +140,6 @@ class UIControlsDesktopX11 : public UIControlsAura {
|
2017-05-31 17:33:30 +02:00
|
|
|
aura::test::QueryLatestMousePositionRequestInHost(host);
|
|
|
|
host->ConvertPixelsToDIP(&root_current_location);
|
|
|
|
|
|
|
|
- auto* screen = views::test::TestDesktopScreenX11::GetInstance();
|
|
|
|
- DCHECK_EQ(screen, display::Screen::GetScreen());
|
|
|
|
- screen->set_cursor_screen_point(gfx::Point(screen_x, screen_y));
|
|
|
|
-
|
|
|
|
if (root_location != root_current_location && button_down_mask == 0) {
|
|
|
|
// Move the cursor because EnterNotify/LeaveNotify are generated with the
|
|
|
|
// current mouse position as a result of XGrabPointer()
|
|
|
|
diff --git ui/views/view.h ui/views/view.h
|
2019-01-17 10:56:52 +01:00
|
|
|
index a46a3b0f795e..45f265ef98ed 100644
|
2017-05-31 17:33:30 +02:00
|
|
|
--- ui/views/view.h
|
|
|
|
+++ ui/views/view.h
|
2018-03-20 21:15:08 +01:00
|
|
|
@@ -19,6 +19,7 @@
|
2017-05-31 17:33:30 +02:00
|
|
|
#include "base/i18n/rtl.h"
|
|
|
|
#include "base/logging.h"
|
|
|
|
#include "base/macros.h"
|
|
|
|
+#include "base/supports_user_data.h"
|
|
|
|
#include "build/build_config.h"
|
2019-01-17 10:56:52 +01:00
|
|
|
#include "third_party/skia/include/core/SkPath.h"
|
2018-03-20 21:15:08 +01:00
|
|
|
#include "ui/accessibility/ax_enums.mojom.h"
|
2019-01-17 10:56:52 +01:00
|
|
|
@@ -118,7 +119,8 @@ class VIEWS_EXPORT View : public ui::LayerDelegate,
|
2017-05-31 17:33:30 +02:00
|
|
|
public ui::AcceleratorTarget,
|
|
|
|
public ui::EventTarget,
|
2017-07-27 01:19:27 +02:00
|
|
|
public ui::EventHandler,
|
|
|
|
- public ui::PropertyHandler {
|
|
|
|
+ public ui::PropertyHandler,
|
2017-05-31 17:33:30 +02:00
|
|
|
+ public base::SupportsUserData {
|
|
|
|
public:
|
|
|
|
using Views = std::vector<View*>;
|
|
|
|
|