| 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; |
| 32 float tiltDirection; |
| 31 // source_device_id is only used on Aura. | 33 // source_device_id is only used on Aura. |
| 32 int source_device_id; | 34 int source_device_id; |
| 33 }; | 35 }; |
| 34 | 36 |
| 35 // A generic MotionEvent implementation. | 37 // A generic MotionEvent implementation. |
| 36 class GESTURE_DETECTION_EXPORT MotionEventGeneric : public MotionEvent { | 38 class GESTURE_DETECTION_EXPORT MotionEventGeneric : public MotionEvent { |
| 37 public: | 39 public: |
| 38 MotionEventGeneric(Action action, | 40 MotionEventGeneric(Action action, |
| 39 base::TimeTicks event_time, | 41 base::TimeTicks event_time, |
| 40 const PointerProperties& pointer); | 42 const PointerProperties& pointer); |
| 41 MotionEventGeneric(const MotionEventGeneric& other); | 43 MotionEventGeneric(const MotionEventGeneric& other); |
| 42 | 44 |
| 43 ~MotionEventGeneric() override; | 45 ~MotionEventGeneric() override; |
| 44 | 46 |
| 45 // MotionEvent implementation. | 47 // MotionEvent implementation. |
| 46 int GetId() const override; | 48 int GetId() const override; |
| 47 Action GetAction() const override; | 49 Action GetAction() const override; |
| 48 int GetActionIndex() const override; | 50 int GetActionIndex() const override; |
| 49 size_t GetPointerCount() const override; | 51 size_t GetPointerCount() const override; |
| 50 int GetPointerId(size_t pointer_index) const override; | 52 int GetPointerId(size_t pointer_index) const override; |
| 51 float GetX(size_t pointer_index) const override; | 53 float GetX(size_t pointer_index) const override; |
| 52 float GetY(size_t pointer_index) const override; | 54 float GetY(size_t pointer_index) const override; |
| 53 float GetRawX(size_t pointer_index) const override; | 55 float GetRawX(size_t pointer_index) const override; |
| 54 float GetRawY(size_t pointer_index) const override; | 56 float GetRawY(size_t pointer_index) const override; |
| 55 float GetTouchMajor(size_t pointer_index) const override; | 57 float GetTouchMajor(size_t pointer_index) const override; |
| 56 float GetTouchMinor(size_t pointer_index) const override; | 58 float GetTouchMinor(size_t pointer_index) const override; |
| 57 float GetOrientation(size_t pointer_index) const override; | 59 float GetOrientation(size_t pointer_index) const override; |
| 60 float GetTilt(size_t pointer_index) const override; |
| 61 float GetTiltDirection(size_t pointer_index) const override; |
| 58 float GetPressure(size_t pointer_index) const override; | 62 float GetPressure(size_t pointer_index) const override; |
| 59 ToolType GetToolType(size_t pointer_index) const override; | 63 ToolType GetToolType(size_t pointer_index) const override; |
| 60 int GetButtonState() const override; | 64 int GetButtonState() const override; |
| 61 int GetFlags() const override; | 65 int GetFlags() const override; |
| 62 base::TimeTicks GetEventTime() const override; | 66 base::TimeTicks GetEventTime() const override; |
| 63 size_t GetHistorySize() const override; | 67 size_t GetHistorySize() const override; |
| 64 base::TimeTicks GetHistoricalEventTime( | 68 base::TimeTicks GetHistoricalEventTime( |
| 65 size_t historical_index) const override; | 69 size_t historical_index) const override; |
| 66 float GetHistoricalTouchMajor(size_t pointer_index, | 70 float GetHistoricalTouchMajor(size_t pointer_index, |
| 67 size_t historical_index) const override; | 71 size_t historical_index) const override; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 int action_index_; | 111 int action_index_; |
| 108 int button_state_; | 112 int button_state_; |
| 109 int flags_; | 113 int flags_; |
| 110 base::StackVector<PointerProperties, kTypicalMaxPointerCount> pointers_; | 114 base::StackVector<PointerProperties, kTypicalMaxPointerCount> pointers_; |
| 111 ScopedVector<MotionEvent> historical_events_; | 115 ScopedVector<MotionEvent> historical_events_; |
| 112 }; | 116 }; |
| 113 | 117 |
| 114 } // namespace ui | 118 } // namespace ui |
| 115 | 119 |
| 116 #endif // UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ | 120 #endif // UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ |
| OLD | NEW |