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

Unified Diff: ui/views/view.h

Issue 22891016: Add support for rect-based event targeting in views (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing Created 7 years, 1 month 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/message_center/views/notification_view.cc ('k') | ui/views/view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/view.h
diff --git a/ui/views/view.h b/ui/views/view.h
index 1aa8d97702a532e8b9189f699ce60459f1f1d01e..ef60e84a5883ad0d49429ced7081fca391deacaf 100644
--- a/ui/views/view.h
+++ b/ui/views/view.h
@@ -571,12 +571,20 @@ class VIEWS_EXPORT View : public ui::LayerDelegate,
static bool get_use_acceleration_when_possible();
// Input ---------------------------------------------------------------------
- // The points (and mouse locations) in the following functions are in the
- // view's coordinates, except for a RootView.
-
- // Returns the deepest visible descendant that contains the specified point
- // and supports event handling.
- virtual View* GetEventHandlerForPoint(const gfx::Point& point);
+ // The points, rects, mouse locations, and touch locations in the following
+ // functions are in the view's coordinates, except for a RootView.
+
+ // Convenience functions which calls into GetEventHandler() with
+ // a 1x1 rect centered at |point|.
+ View* GetEventHandlerForPoint(const gfx::Point& point);
+
+ // If point-based targeting should be used, return the deepest visible
+ // descendant that contains the center point of |rect|.
+ // If rect-based targeting (i.e., fuzzing) should be used, return the
+ // closest visible descendant having at least kRectTargetOverlap of
+ // its area covered by |rect|. If no such descendant exists, return the
+ // deepest visible descendant that contains the center point of |rect|.
+ virtual View* GetEventHandlerForRect(const gfx::Rect& rect);
// Returns the deepest visible descendant that contains the specified point
// and supports tooltips. If the view does not contain the point, returns
« no previous file with comments | « ui/message_center/views/notification_view.cc ('k') | ui/views/view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698