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 "ui/events/gesture_detection/gesture_detection_export.h" | 10 #include "ui/events/gesture_detection/gesture_detection_export.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 virtual float GetX(size_t pointer_index) const OVERRIDE; | 47 virtual float GetX(size_t pointer_index) const OVERRIDE; |
48 virtual float GetY(size_t pointer_index) const OVERRIDE; | 48 virtual float GetY(size_t pointer_index) const OVERRIDE; |
49 virtual float GetRawX(size_t pointer_index) const OVERRIDE; | 49 virtual float GetRawX(size_t pointer_index) const OVERRIDE; |
50 virtual float GetRawY(size_t pointer_index) const OVERRIDE; | 50 virtual float GetRawY(size_t pointer_index) const OVERRIDE; |
51 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; | 51 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; |
52 virtual float GetTouchMinor(size_t pointer_index) const OVERRIDE; | 52 virtual float GetTouchMinor(size_t pointer_index) const OVERRIDE; |
53 virtual float GetOrientation(size_t pointer_index) const OVERRIDE; | 53 virtual float GetOrientation(size_t pointer_index) const OVERRIDE; |
54 virtual float GetPressure(size_t pointer_index) const OVERRIDE; | 54 virtual float GetPressure(size_t pointer_index) const OVERRIDE; |
55 virtual ToolType GetToolType(size_t pointer_index) const OVERRIDE; | 55 virtual ToolType GetToolType(size_t pointer_index) const OVERRIDE; |
56 virtual int GetButtonState() const OVERRIDE; | 56 virtual int GetButtonState() const OVERRIDE; |
| 57 virtual int GetFlags() const OVERRIDE; |
57 virtual base::TimeTicks GetEventTime() const OVERRIDE; | 58 virtual base::TimeTicks GetEventTime() const OVERRIDE; |
58 virtual scoped_ptr<MotionEvent> Clone() const OVERRIDE; | 59 virtual scoped_ptr<MotionEvent> Clone() const OVERRIDE; |
59 virtual scoped_ptr<MotionEvent> Cancel() const OVERRIDE; | 60 virtual scoped_ptr<MotionEvent> Cancel() const OVERRIDE; |
60 | 61 |
61 void PushPointer(const PointerProperties& pointer); | 62 void PushPointer(const PointerProperties& pointer); |
62 | 63 |
63 void set_action(Action action) { action_ = action; } | 64 void set_action(Action action) { action_ = action; } |
64 void set_event_time(base::TimeTicks event_time) { event_time_ = event_time; } | 65 void set_event_time(base::TimeTicks event_time) { event_time_ = event_time; } |
65 void set_id(int id) { id_ = id; } | 66 void set_id(int id) { id_ = id; } |
66 void set_action_index(int action_index) { action_index_ = action_index; } | 67 void set_action_index(int action_index) { action_index_ = action_index; } |
67 void set_button_state(int button_state) { button_state_ = button_state; } | 68 void set_button_state(int button_state) { button_state_ = button_state; } |
| 69 void set_flags(int flags) { flags_ = flags; } |
68 | 70 |
69 protected: | 71 protected: |
70 MotionEventGeneric(); | 72 MotionEventGeneric(); |
71 | 73 |
72 void PopPointer(); | 74 void PopPointer(); |
73 | 75 |
74 PointerProperties& pointer(size_t index) { return pointers_[index]; } | 76 PointerProperties& pointer(size_t index) { return pointers_[index]; } |
75 const PointerProperties& pointer(size_t index) const { | 77 const PointerProperties& pointer(size_t index) const { |
76 return pointers_[index]; | 78 return pointers_[index]; |
77 } | 79 } |
78 | 80 |
79 private: | 81 private: |
80 enum { kTypicalMaxPointerCount = 5 }; | 82 enum { kTypicalMaxPointerCount = 5 }; |
81 | 83 |
82 Action action_; | 84 Action action_; |
83 base::TimeTicks event_time_; | 85 base::TimeTicks event_time_; |
84 int id_; | 86 int id_; |
85 int action_index_; | 87 int action_index_; |
86 int button_state_; | 88 int button_state_; |
| 89 int flags_; |
87 base::StackVector<PointerProperties, kTypicalMaxPointerCount> pointers_; | 90 base::StackVector<PointerProperties, kTypicalMaxPointerCount> pointers_; |
88 }; | 91 }; |
89 | 92 |
90 } // namespace ui | 93 } // namespace ui |
91 | 94 |
92 #endif // UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ | 95 #endif // UI_EVENTS_GESTURE_DETECTION_UI_MOTION_EVENT_GENERIC_H_ |
OLD | NEW |