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_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ | 5 #ifndef UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ |
6 #define UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ | 6 #define UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/containers/stack_container.h" | 9 #include "base/containers/stack_container.h" |
10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 int id; | 21 int id; |
22 MotionEvent::ToolType tool_type; | 22 MotionEvent::ToolType tool_type; |
23 float x; | 23 float x; |
24 float y; | 24 float y; |
25 float raw_x; | 25 float raw_x; |
26 float raw_y; | 26 float raw_y; |
27 float pressure; | 27 float pressure; |
28 float touch_major; | 28 float touch_major; |
29 float touch_minor; | 29 float touch_minor; |
30 float orientation; | 30 float orientation; |
| 31 float tilt; |
31 // source_device_id is only used on Aura. | 32 // source_device_id is only used on Aura. |
32 int source_device_id; | 33 int source_device_id; |
33 }; | 34 }; |
34 | 35 |
35 // A generic MotionEvent implementation. | 36 // A generic MotionEvent implementation. |
36 class GESTURE_DETECTION_EXPORT MotionEventGeneric : public MotionEvent { | 37 class GESTURE_DETECTION_EXPORT MotionEventGeneric : public MotionEvent { |
37 public: | 38 public: |
38 MotionEventGeneric(Action action, | 39 MotionEventGeneric(Action action, |
39 base::TimeTicks event_time, | 40 base::TimeTicks event_time, |
40 const PointerProperties& pointer); | 41 const PointerProperties& pointer); |
41 MotionEventGeneric(const MotionEventGeneric& other); | 42 MotionEventGeneric(const MotionEventGeneric& other); |
42 | 43 |
43 ~MotionEventGeneric() override; | 44 ~MotionEventGeneric() override; |
44 | 45 |
45 // MotionEvent implementation. | 46 // MotionEvent implementation. |
46 int GetId() const override; | 47 int GetId() const override; |
47 Action GetAction() const override; | 48 Action GetAction() const override; |
48 int GetActionIndex() const override; | 49 int GetActionIndex() const override; |
49 size_t GetPointerCount() const override; | 50 size_t GetPointerCount() const override; |
50 int GetPointerId(size_t pointer_index) const override; | 51 int GetPointerId(size_t pointer_index) const override; |
51 float GetX(size_t pointer_index) const override; | 52 float GetX(size_t pointer_index) const override; |
52 float GetY(size_t pointer_index) const override; | 53 float GetY(size_t pointer_index) const override; |
53 float GetRawX(size_t pointer_index) const override; | 54 float GetRawX(size_t pointer_index) const override; |
54 float GetRawY(size_t pointer_index) const override; | 55 float GetRawY(size_t pointer_index) const override; |
55 float GetTouchMajor(size_t pointer_index) const override; | 56 float GetTouchMajor(size_t pointer_index) const override; |
56 float GetTouchMinor(size_t pointer_index) const override; | 57 float GetTouchMinor(size_t pointer_index) const override; |
57 float GetOrientation(size_t pointer_index) const override; | 58 float GetOrientation(size_t pointer_index) const override; |
| 59 float GetTilt(size_t pointer_index) const override; |
58 float GetPressure(size_t pointer_index) const override; | 60 float GetPressure(size_t pointer_index) const override; |
59 ToolType GetToolType(size_t pointer_index) const override; | 61 ToolType GetToolType(size_t pointer_index) const override; |
60 int GetButtonState() const override; | 62 int GetButtonState() const override; |
61 int GetFlags() const override; | 63 int GetFlags() const override; |
62 base::TimeTicks GetEventTime() const override; | 64 base::TimeTicks GetEventTime() const override; |
63 size_t GetHistorySize() const override; | 65 size_t GetHistorySize() const override; |
64 base::TimeTicks GetHistoricalEventTime( | 66 base::TimeTicks GetHistoricalEventTime( |
65 size_t historical_index) const override; | 67 size_t historical_index) const override; |
66 float GetHistoricalTouchMajor(size_t pointer_index, | 68 float GetHistoricalTouchMajor(size_t pointer_index, |
67 size_t historical_index) const override; | 69 size_t historical_index) const override; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 int action_index_; | 109 int action_index_; |
108 int button_state_; | 110 int button_state_; |
109 int flags_; | 111 int flags_; |
110 base::StackVector<PointerProperties, kTypicalMaxPointerCount> pointers_; | 112 base::StackVector<PointerProperties, kTypicalMaxPointerCount> pointers_; |
111 ScopedVector<MotionEvent> historical_events_; | 113 ScopedVector<MotionEvent> historical_events_; |
112 }; | 114 }; |
113 | 115 |
114 } // namespace ui | 116 } // namespace ui |
115 | 117 |
116 #endif // UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ | 118 #endif // UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ |
OLD | NEW |