OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "ash/ash_export.h" | 5 #include "ash/ash_export.h" |
6 #include "ash/common/pointer_watcher_delegate.h" | 6 #include "ash/common/pointer_watcher_delegate.h" |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
9 #include "ui/events/event_handler.h" | 9 #include "ui/events/event_handler.h" |
10 | 10 |
11 namespace gfx { | 11 namespace gfx { |
12 class Point; | 12 class Point; |
13 } | 13 } |
14 | 14 |
15 namespace ui { | 15 namespace ui { |
16 class LocatedEvent; | 16 class LocatedEvent; |
| 17 class PointerEvent; |
17 } | 18 } |
18 | 19 |
19 namespace views { | 20 namespace views { |
20 class Widget; | 21 class Widget; |
21 } | 22 } |
22 | 23 |
23 namespace ash { | 24 namespace ash { |
24 | 25 |
25 // Support for PointerWatchers in non-mus ash, implemented with a pre-target | 26 // Support for PointerWatchers in non-mus ash, implemented with a pre-target |
26 // EventHandler on the Shell. | 27 // EventHandler on the Shell. |
27 class ASH_EXPORT PointerWatcherDelegateAura : public PointerWatcherDelegate, | 28 class ASH_EXPORT PointerWatcherDelegateAura : public PointerWatcherDelegate, |
28 public ui::EventHandler { | 29 public ui::EventHandler { |
29 public: | 30 public: |
30 PointerWatcherDelegateAura(); | 31 PointerWatcherDelegateAura(); |
31 ~PointerWatcherDelegateAura() override; | 32 ~PointerWatcherDelegateAura() override; |
32 | 33 |
33 // PointerWatcherDelegate: | 34 // PointerWatcherDelegate: |
34 void AddPointerWatcher(views::PointerWatcher* watcher) override; | 35 void AddPointerWatcher(views::PointerWatcher* watcher, |
| 36 bool wants_moves) override; |
35 void RemovePointerWatcher(views::PointerWatcher* watcher) override; | 37 void RemovePointerWatcher(views::PointerWatcher* watcher) override; |
36 | 38 |
37 // ui::EventHandler: | 39 // ui::EventHandler: |
38 void OnMouseEvent(ui::MouseEvent* event) override; | 40 void OnMouseEvent(ui::MouseEvent* event) override; |
39 void OnTouchEvent(ui::TouchEvent* event) override; | 41 void OnTouchEvent(ui::TouchEvent* event) override; |
40 | 42 |
41 private: | 43 private: |
42 gfx::Point GetLocationInScreen(const ui::LocatedEvent& event) const; | 44 gfx::Point GetLocationInScreen(const ui::LocatedEvent& event) const; |
43 views::Widget* GetTargetWidget(const ui::LocatedEvent& event) const; | 45 views::Widget* GetTargetWidget(const ui::LocatedEvent& event) const; |
44 | 46 |
45 // Must be empty on destruction. | 47 // Calls OnPointerEventObserved() on the appropriate set of watchers as |
46 base::ObserverList<views::PointerWatcher, true> pointer_watchers_; | 48 // determined by the type of event. |original_event| is the original |
| 49 // event supplied to OnMouseEvent()/OnTouchEvent(), |pointer_event| is |
| 50 // |original_event| converted to a PointerEvent. |
| 51 void NotifyWatchers(const ui::PointerEvent& pointer_event, |
| 52 const ui::LocatedEvent& original_event); |
| 53 |
| 54 // The true parameter to ObserverList indicates the list must be empty on |
| 55 // destruction. Two sets of observers are maintained, one for observers not |
| 56 // needing moves |non_move_watchers_| and |move_watchers_| for those |
| 57 // observers wanting moves too. |
| 58 base::ObserverList<views::PointerWatcher, true> non_move_watchers_; |
| 59 base::ObserverList<views::PointerWatcher, true> move_watchers_; |
47 | 60 |
48 DISALLOW_COPY_AND_ASSIGN(PointerWatcherDelegateAura); | 61 DISALLOW_COPY_AND_ASSIGN(PointerWatcherDelegateAura); |
49 }; | 62 }; |
50 | 63 |
51 } // namespace ash | 64 } // namespace ash |
OLD | NEW |