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

Unified Diff: ui/views/controls/menu/menu_controller.cc

Issue 1661673004: Enables hot-tracking for overflow extension buttons in the app menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restores hot-tracking of extension buttons in app menu with MD (rebase) Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/controls/menu/menu_controller.h ('k') | ui/views/controls/menu/menu_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/menu/menu_controller.cc
diff --git a/ui/views/controls/menu/menu_controller.cc b/ui/views/controls/menu/menu_controller.cc
index e9b7321342d885af224bfc8c3d2c30d9debdc3d3..8d500e9698703ed44cc82e6b8994768971568337 100644
--- a/ui/views/controls/menu/menu_controller.cc
+++ b/ui/views/controls/menu/menu_controller.cc
@@ -53,16 +53,6 @@ using base::Time;
using base::TimeDelta;
using ui::OSExchangeData;
-// Period of the scroll timer (in milliseconds).
-static const int kScrollTimerMS = 30;
-
-// Amount of time from when the drop exits the menu and the menu is hidden.
-static const int kCloseOnExitTime = 1200;
-
-// If a context menu is invoked by touch, we shift the menu by this offset so
-// that the finger does not obscure the menu.
-static const int kCenteredContextMenuYOffset = -15;
-
namespace views {
namespace {
@@ -70,7 +60,17 @@ namespace {
// When showing context menu on mouse down, the user might accidentally select
// the menu item on the subsequent mouse up. To prevent this, we add the
// following delay before the user is able to select an item.
-static int menu_selection_hold_time_ms = kMinimumMsPressedToActivate;
+int menu_selection_hold_time_ms = kMinimumMsPressedToActivate;
+
+// Period of the scroll timer (in milliseconds).
+const int kScrollTimerMS = 30;
+
+// Amount of time from when the drop exits the menu and the menu is hidden.
+const int kCloseOnExitTime = 1200;
+
+// If a context menu is invoked by touch, we shift the menu by this offset so
+// that the finger does not obscure the menu.
+const int kCenteredContextMenuYOffset = -15;
// The spacing offset for the bubble tip.
const int kBubbleTipSizeLeftRight = 12;
@@ -97,7 +97,7 @@ bool TitleMatchesMnemonic(MenuItemView* menu, base::char16 key) {
}
// Returns the first descendant of |view| that is hot tracked.
-static CustomButton* GetFirstHotTrackedView(View* view) {
+CustomButton* GetFirstHotTrackedView(View* view) {
if (!view)
return NULL;
CustomButton* button = CustomButton::AsCustomButton(view);
@@ -119,7 +119,7 @@ static CustomButton* GetFirstHotTrackedView(View* view) {
// the first view (if |forward| is false, iterating starts at the last view). If
// |forward| is true the children are considered first to last, otherwise last
// to first.
-static View* GetFirstFocusableView(View* view, int start, bool forward) {
+View* GetFirstFocusableView(View* view, int start, bool forward) {
if (forward) {
for (int i = start == -1 ? 0 : start; i < view->child_count(); ++i) {
View* deepest = GetFirstFocusableView(view->child_at(i), -1, forward);
@@ -137,15 +137,13 @@ static View* GetFirstFocusableView(View* view, int start, bool forward) {
}
// Returns the first child of |start| that is focusable.
-static View* GetInitialFocusableView(View* start, bool forward) {
+View* GetInitialFocusableView(View* start, bool forward) {
return GetFirstFocusableView(start, -1, forward);
}
// Returns the next view after |start_at| that is focusable. Returns NULL if
// there are no focusable children of |ancestor| after |start_at|.
-static View* GetNextFocusableView(View* ancestor,
- View* start_at,
- bool forward) {
+View* GetNextFocusableView(View* ancestor, View* start_at, bool forward) {
DCHECK(ancestor->Contains(start_at));
View* parent = start_at;
do {
@@ -717,6 +715,9 @@ void MenuController::OnMouseMoved(SubmenuView* source,
MenuHostRootView* root_view = GetRootView(source, event.location());
if (root_view)
root_view->ProcessMouseMoved(event);
+ // TODO(varkha): It is possible that another child CustomButton has become
+ // hot-tracked as a result of this event. We need to track it for accurate
+ // hot-tracking when both mouse and keyboard are used to navigate the menu.
HandleMouseLocation(source, event.location());
}
@@ -2084,8 +2085,7 @@ void MenuController::IncrementSelection(
// select the first menu item that is visible and enabled.
if (item->GetSubmenu()->GetMenuItemCount()) {
MenuItemView* to_select = FindInitialSelectableMenuItem(item, direction);
- if (to_select)
- SetSelection(to_select, SELECTION_DEFAULT);
+ SetInitialHotTrackedView(to_select, direction);
return;
}
}
@@ -2120,14 +2120,7 @@ void MenuController::IncrementSelection(
if (parent->GetSubmenu()->GetMenuItemAt(i) == item) {
MenuItemView* to_select =
FindNextSelectableMenuItem(parent, i, direction);
- if (!to_select)
- break;
- SetSelection(to_select, SELECTION_DEFAULT);
- View* to_make_hot = GetInitialFocusableView(
- to_select, direction == INCREMENT_SELECTION_DOWN);
- CustomButton* button_hot = CustomButton::AsCustomButton(to_make_hot);
- if (button_hot)
- button_hot->SetHotTracked(true);
+ SetInitialHotTrackedView(to_select, direction);
break;
}
}
@@ -2609,4 +2602,17 @@ void MenuController::HandleMouseLocation(SubmenuView* source,
}
}
+void MenuController::SetInitialHotTrackedView(
+ MenuItemView* item,
+ SelectionIncrementDirectionType direction) {
+ if (!item)
+ return;
+ SetSelection(item, SELECTION_DEFAULT);
+ View* hot_view =
+ GetInitialFocusableView(item, direction == INCREMENT_SELECTION_DOWN);
+ CustomButton* button_hot = CustomButton::AsCustomButton(hot_view);
sky 2016/02/26 20:51:04 nit: hot_button to match hot_view.
varkha 2016/02/26 20:57:11 Done.
+ if (button_hot)
+ button_hot->SetHotTracked(true);
+}
+
} // namespace views
« no previous file with comments | « ui/views/controls/menu/menu_controller.h ('k') | ui/views/controls/menu/menu_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698