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

Side by Side Diff: ui/events/event_targeter.h

Issue 542323002: Convert ui::GestureEvent coordinates during targeting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « ui/events/event_processor_unittest.cc ('k') | ui/views/view_targeter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_EVENTS_EVENT_TARGETER_H_ 5 #ifndef UI_EVENTS_EVENT_TARGETER_H_
6 #define UI_EVENTS_EVENT_TARGETER_H_ 6 #define UI_EVENTS_EVENT_TARGETER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "ui/events/event.h" 9 #include "ui/events/event.h"
10 #include "ui/events/events_export.h" 10 #include "ui/events/events_export.h"
11 11
12 namespace ui { 12 namespace ui {
13 13
14 class Event; 14 class Event;
15 class EventTarget; 15 class EventTarget;
16 class LocatedEvent; 16 class LocatedEvent;
17 17
18 class EVENTS_EXPORT EventTargeter { 18 class EVENTS_EXPORT EventTargeter {
19 public: 19 public:
20 virtual ~EventTargeter(); 20 virtual ~EventTargeter();
21 21
22 // Returns the target |event| should be dispatched to. If there is no such 22 // Returns the target |event| should be dispatched to. If there is no such
23 // target, this should return NULL. 23 // target, return NULL. If |event| is a located event, the location of |event|
24 // is in the coordinate space of |root|. Furthermore, the targeter can mutate
25 // the event (e.g., by changing the location of the event to be in the
26 // returned target's coordinate space) so that it can be dispatched to the
27 // target without any further modification.
24 virtual EventTarget* FindTargetForEvent(EventTarget* root, 28 virtual EventTarget* FindTargetForEvent(EventTarget* root,
25 Event* event); 29 Event* event);
26 30
27 // Same as FindTargetForEvent(), but used for positional events. The location 31 // Same as FindTargetForEvent(), but used for positional events. The location
28 // etc. of |event| are in |root|'s coordinate system. When finding the target 32 // etc. of |event| are in |root|'s coordinate system. When finding the target
29 // for the event, the targeter can mutate the |event| (e.g. change the 33 // for the event, the targeter can mutate the |event| (e.g. change the
30 // coordinate to be in the returned target's coordinate system) so that it can 34 // coordinate to be in the returned target's coordinate system) so that it can
31 // be dispatched to the target without any farther modification. 35 // be dispatched to the target without any further modification.
36 // TODO(tdanderson|sadrul): This should not be in the public API of
37 // EventTargeter.
32 virtual EventTarget* FindTargetForLocatedEvent(EventTarget* root, 38 virtual EventTarget* FindTargetForLocatedEvent(EventTarget* root,
33 LocatedEvent* event); 39 LocatedEvent* event);
34 40
35 // Returns true if |target| or one of its descendants can be a target of 41 // Returns true if |target| or one of its descendants can be a target of
36 // |event|. This requires that |target| and its descendants are not 42 // |event|. This requires that |target| and its descendants are not
37 // prohibited from accepting the event, and that the event is within an 43 // prohibited from accepting the event, and that the event is within an
38 // actionable region of the target's bounds. Note that the location etc. of 44 // actionable region of the target's bounds. Note that the location etc. of
39 // |event| is in |target|'s parent's coordinate system. 45 // |event| is in |target|'s parent's coordinate system.
40 // TODO(tdanderson|sadrul): This function should be made non-virtual and 46 // TODO(tdanderson|sadrul): This function should be made non-virtual and
41 // non-public. 47 // non-public.
42 virtual bool SubtreeShouldBeExploredForEvent(EventTarget* target, 48 virtual bool SubtreeShouldBeExploredForEvent(EventTarget* target,
43 const LocatedEvent& event); 49 const LocatedEvent& event);
44 50
45 // Returns the next best target for |event| as compared to |previous_target|. 51 // Returns the next best target for |event| as compared to |previous_target|.
52 // |event| is in the local coordinate space of |previous_target|.
46 // Also mutates |event| so that it can be dispatched to the returned target 53 // Also mutates |event| so that it can be dispatched to the returned target
47 // (e.g., by changing |event|'s location to be in the returned target's 54 // (e.g., by changing |event|'s location to be in the returned target's
48 // coordinate space). 55 // coordinate space).
49 virtual EventTarget* FindNextBestTarget(EventTarget* previous_target, 56 virtual EventTarget* FindNextBestTarget(EventTarget* previous_target,
50 Event* event); 57 Event* event);
51 58
52 protected: 59 protected:
53 // Returns false if neither |target| nor any of its descendants are allowed 60 // Returns false if neither |target| nor any of its descendants are allowed
54 // to accept |event| for reasons unrelated to the event's location or the 61 // to accept |event| for reasons unrelated to the event's location or the
55 // target's bounds. For example, overrides of this function may consider 62 // target's bounds. For example, overrides of this function may consider
56 // attributes such as the visibility or enabledness of |target|. Note that 63 // attributes such as the visibility or enabledness of |target|. Note that
57 // the location etc. of |event| is in |target|'s parent's coordinate system. 64 // the location etc. of |event| is in |target|'s parent's coordinate system.
58 virtual bool SubtreeCanAcceptEvent(EventTarget* target, 65 virtual bool SubtreeCanAcceptEvent(EventTarget* target,
59 const LocatedEvent& event) const; 66 const LocatedEvent& event) const;
60 67
61 // Returns whether the location of the event is in an actionable region of the 68 // Returns whether the location of the event is in an actionable region of the
62 // target. Note that the location etc. of |event| is in the |target|'s 69 // target. Note that the location etc. of |event| is in the |target|'s
63 // parent's coordinate system. 70 // parent's coordinate system.
64 virtual bool EventLocationInsideBounds(EventTarget* target, 71 virtual bool EventLocationInsideBounds(EventTarget* target,
65 const LocatedEvent& event) const; 72 const LocatedEvent& event) const;
66 }; 73 };
67 74
68 } // namespace ui 75 } // namespace ui
69 76
70 #endif // UI_EVENTS_EVENT_TARGETER_H_ 77 #endif // UI_EVENTS_EVENT_TARGETER_H_
OLDNEW
« no previous file with comments | « ui/events/event_processor_unittest.cc ('k') | ui/views/view_targeter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698