OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_OZONE_EVDEV_LIBGESTURES_GLUE_GESTURE_INTERPRETER_LIBEVDEV_CROS
_H_ | 5 #ifndef UI_EVENTS_OZONE_EVDEV_LIBGESTURES_GLUE_GESTURE_INTERPRETER_LIBEVDEV_CROS
_H_ |
6 #define UI_EVENTS_OZONE_EVDEV_LIBGESTURES_GLUE_GESTURE_INTERPRETER_LIBEVDEV_CROS
_H_ | 6 #define UI_EVENTS_OZONE_EVDEV_LIBGESTURES_GLUE_GESTURE_INTERPRETER_LIBEVDEV_CROS
_H_ |
7 | 7 |
8 #include <gestures/gestures.h> | 8 #include <gestures/gestures.h> |
9 #include <libevdev/libevdev.h> | 9 #include <libevdev/libevdev.h> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "ui/events/ozone/evdev/cursor_delegate_evdev.h" | 13 #include "ui/events/ozone/evdev/cursor_delegate_evdev.h" |
| 14 #include "ui/events/ozone/evdev/event_device_util.h" |
14 #include "ui/events/ozone/evdev/event_dispatch_callback.h" | 15 #include "ui/events/ozone/evdev/event_dispatch_callback.h" |
15 #include "ui/events/ozone/evdev/events_ozone_evdev_export.h" | 16 #include "ui/events/ozone/evdev/events_ozone_evdev_export.h" |
16 #include "ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.h" | 17 #include "ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.h" |
17 | 18 |
18 namespace ui { | 19 namespace ui { |
19 | 20 |
20 class EventDeviceInfo; | 21 class EventDeviceInfo; |
21 class EventModifiersEvdev; | 22 class EventModifiersEvdev; |
22 class CursorDelegateEvdev; | 23 class CursorDelegateEvdev; |
| 24 class KeyboardEvdev; |
23 | 25 |
24 // Convert libevdev-cros events to ui::Events using libgestures. | 26 // Convert libevdev-cros events to ui::Events using libgestures. |
25 // | 27 // |
26 // This builds a GestureInterpreter for an input device (touchpad or | 28 // This builds a GestureInterpreter for an input device (touchpad or |
27 // mouse). | 29 // mouse). |
28 // | 30 // |
29 // Raw input events must be preprocessed into a form suitable for | 31 // Raw input events must be preprocessed into a form suitable for |
30 // libgestures. The kernel protocol only emits changes to the device state, | 32 // libgestures. The kernel protocol only emits changes to the device state, |
31 // so changes must be accumulated until a sync event. The full device state | 33 // so changes must be accumulated until a sync event. The full device state |
32 // at sync is then processed by libgestures. | 34 // at sync is then processed by libgestures. |
33 // | 35 // |
34 // Once we have the state at sync, we convert it to a HardwareState object | 36 // Once we have the state at sync, we convert it to a HardwareState object |
35 // and forward it to libgestures. If any gestures are produced, they are | 37 // and forward it to libgestures. If any gestures are produced, they are |
36 // converted to ui::Events and dispatched. | 38 // converted to ui::Events and dispatched. |
37 class EVENTS_OZONE_EVDEV_EXPORT GestureInterpreterLibevdevCros | 39 class EVENTS_OZONE_EVDEV_EXPORT GestureInterpreterLibevdevCros |
38 : public EventReaderLibevdevCros::Delegate { | 40 : public EventReaderLibevdevCros::Delegate { |
39 public: | 41 public: |
40 GestureInterpreterLibevdevCros(EventModifiersEvdev* modifiers, | 42 GestureInterpreterLibevdevCros(EventModifiersEvdev* modifiers, |
41 CursorDelegateEvdev* cursor, | 43 CursorDelegateEvdev* cursor, |
| 44 KeyboardEvdev* keyboard, |
42 const EventDispatchCallback& callback); | 45 const EventDispatchCallback& callback); |
43 virtual ~GestureInterpreterLibevdevCros(); | 46 virtual ~GestureInterpreterLibevdevCros(); |
44 | 47 |
45 // Overriden from ui::EventReaderLibevdevCros::Delegate | 48 // Overriden from ui::EventReaderLibevdevCros::Delegate |
46 virtual void OnLibEvdevCrosOpen(Evdev* evdev, | 49 virtual void OnLibEvdevCrosOpen(Evdev* evdev, |
47 EventStateRec* evstate) override; | 50 EventStateRec* evstate) override; |
48 virtual void OnLibEvdevCrosEvent(Evdev* evdev, | 51 virtual void OnLibEvdevCrosEvent(Evdev* evdev, |
49 EventStateRec* evstate, | 52 EventStateRec* evstate, |
50 const timeval& time) override; | 53 const timeval& time) override; |
51 | 54 |
52 // Handler for gesture events generated from libgestures. | 55 // Handler for gesture events generated from libgestures. |
53 void OnGestureReady(const Gesture* gesture); | 56 void OnGestureReady(const Gesture* gesture); |
54 | 57 |
55 private: | 58 private: |
56 void OnGestureMove(const Gesture* gesture, const GestureMove* move); | 59 void OnGestureMove(const Gesture* gesture, const GestureMove* move); |
57 void OnGestureScroll(const Gesture* gesture, const GestureScroll* move); | 60 void OnGestureScroll(const Gesture* gesture, const GestureScroll* move); |
58 void OnGestureButtonsChange(const Gesture* gesture, | 61 void OnGestureButtonsChange(const Gesture* gesture, |
59 const GestureButtonsChange* move); | 62 const GestureButtonsChange* move); |
60 void OnGestureContactInitiated(const Gesture* gesture); | 63 void OnGestureContactInitiated(const Gesture* gesture); |
61 void OnGestureFling(const Gesture* gesture, const GestureFling* fling); | 64 void OnGestureFling(const Gesture* gesture, const GestureFling* fling); |
62 void OnGestureSwipe(const Gesture* gesture, const GestureSwipe* swipe); | 65 void OnGestureSwipe(const Gesture* gesture, const GestureSwipe* swipe); |
63 void OnGestureSwipeLift(const Gesture* gesture, | 66 void OnGestureSwipeLift(const Gesture* gesture, |
64 const GestureSwipeLift* swipelift); | 67 const GestureSwipeLift* swipelift); |
65 void OnGesturePinch(const Gesture* gesture, const GesturePinch* pinch); | 68 void OnGesturePinch(const Gesture* gesture, const GesturePinch* pinch); |
66 void OnGestureMetrics(const Gesture* gesture, const GestureMetrics* metrics); | 69 void OnGestureMetrics(const Gesture* gesture, const GestureMetrics* metrics); |
67 | 70 |
68 void Dispatch(Event* event); | 71 void Dispatch(Event* event); |
69 void DispatchMouseButton(unsigned int modifier, bool down); | 72 void DispatchMouseButton(unsigned int modifier, bool down); |
| 73 void DispatchChangedKeys(Evdev* evdev, const timeval& time); |
70 | 74 |
71 // Shared modifier state. | 75 // Shared modifier state. |
72 EventModifiersEvdev* modifiers_; | 76 EventModifiersEvdev* modifiers_; |
73 | 77 |
74 // Shared cursor state. | 78 // Shared cursor state. |
75 CursorDelegateEvdev* cursor_; | 79 CursorDelegateEvdev* cursor_; |
76 | 80 |
| 81 // Shared keyboard state. |
| 82 KeyboardEvdev* keyboard_; |
| 83 |
77 // Callback for dispatching events. | 84 // Callback for dispatching events. |
78 EventDispatchCallback dispatch_callback_; | 85 EventDispatchCallback dispatch_callback_; |
79 | 86 |
80 // Gestures interpretation state. | 87 // Gestures interpretation state. |
81 gestures::GestureInterpreter* interpreter_; | 88 gestures::GestureInterpreter* interpreter_; |
82 | 89 |
| 90 // Last key state from libevdev. |
| 91 unsigned long prev_key_state_[EVDEV_BITS_TO_LONGS(KEY_CNT)]; |
| 92 |
83 DISALLOW_COPY_AND_ASSIGN(GestureInterpreterLibevdevCros); | 93 DISALLOW_COPY_AND_ASSIGN(GestureInterpreterLibevdevCros); |
84 }; | 94 }; |
85 | 95 |
86 } // namspace ui | 96 } // namspace ui |
87 | 97 |
88 #endif // UI_EVENTS_OZONE_EVDEV_LIBGESTURES_GLUE_GESTURE_INTERPRETER_LIBEVDEV_C
ROS_H_ | 98 #endif // UI_EVENTS_OZONE_EVDEV_LIBGESTURES_GLUE_GESTURE_INTERPRETER_LIBEVDEV_C
ROS_H_ |
OLD | NEW |