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

Unified Diff: views/view.h

Issue 2863003: Attempt 2 at: (Closed)
Patch Set: Created 10 years, 6 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 | « views/event.h ('k') | views/view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/view.h
diff --git a/views/view.h b/views/view.h
index c0f6f0739c19354fdec51ea5340bd207b6d4e086..a9012a56041225abe7081a88744f3167dd2956a4 100644
--- a/views/view.h
+++ b/views/view.h
@@ -178,6 +178,11 @@ class View : public AcceleratorTarget {
void SetX(int x) { SetBounds(x, y(), width(), height()); }
void SetY(int y) { SetBounds(x(), y, width(), height()); }
+ // Registers this view for mouse near events (OnMouseNear and
+ // OnMouseExitedNear). Mouse near events are sent for the extended rectangle
+ // defined by the bounds of this view + |insets|.
+ void RegisterForMouseNearEvents(const gfx::Insets& insets);
+
// Returns the left coordinate of the View, relative to the parent View,
// which is the value of bounds_.x().
//
@@ -686,6 +691,18 @@ class View : public AcceleratorTarget {
// Default implementation does nothing. Override as needed.
virtual void OnMouseExited(const MouseEvent& event);
+ // Sent when the mouse enters the rectangle defined by this views bounds and
+ // the insets passed to RegisterForMouseNearEvents. This is only sent for
+ // views that have explicitly registered for near notification
+ // (RegisterForMouseNearEvents).
+ virtual void OnMouseNear(const MouseEvent& event) {}
+
+ // Sent when the mouse exits the rectangle defined by this views bounds and
+ // the insets passed to RegisterForMouseNearEvents. This is only sent for
+ // views that have explicitly registered for near notification
+ // (RegisterForMouseNearEvents).
+ virtual void OnMouseExitedNear(const MouseEvent& event) {}
+
// Set the MouseHandler for a drag session.
//
// A drag session is a stream of mouse events starting
@@ -1176,11 +1193,11 @@ class View : public AcceleratorTarget {
// Recursively descends through all descendant views,
// registering/unregistering all views that want visible bounds in root
- // view notification.
- static void RegisterChildrenForVisibleBoundsNotification(RootView* root,
- View* view);
- static void UnregisterChildrenForVisibleBoundsNotification(RootView* root,
- View* view);
+ // view notification and/or mouse near events.
+ static void RegisterChildrenForRootNotifications(RootView* root, View* view);
+ static void UnregisterChildrenForRootNotifications(RootView* root,
+ View* view);
+
// Adds/removes view to the list of descendants that are notified any time
// this views location and possibly size are changed.
@@ -1280,6 +1297,9 @@ class View : public AcceleratorTarget {
// right-to-left locales for this View.
bool flip_canvas_on_paint_for_rtl_ui_;
+ // Insets passed to RegisterForMouseNearEvents.
+ scoped_ptr<gfx::Insets> near_insets_;
+
// The default value for how long to wait (in ms) before showing a menu
// button on hover. This value is used if the OS doesn't supply one.
static const int kShowFolderDropMenuDelay;
« no previous file with comments | « views/event.h ('k') | views/view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698