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 CONTENT_BROWSER_RENDERER_HOST_INPUT_MOTION_EVENT_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_MOTION_EVENT_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_MOTION_EVENT_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_MOTION_EVENT_ANDROID_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 jint history_size, | 32 jint history_size, |
33 jint action_index, | 33 jint action_index, |
34 jfloat pos_x_0_pixels, | 34 jfloat pos_x_0_pixels, |
35 jfloat pos_y_0_pixels, | 35 jfloat pos_y_0_pixels, |
36 jfloat pos_x_1_pixels, | 36 jfloat pos_x_1_pixels, |
37 jfloat pos_y_1_pixels, | 37 jfloat pos_y_1_pixels, |
38 jint pointer_id_0, | 38 jint pointer_id_0, |
39 jint pointer_id_1, | 39 jint pointer_id_1, |
40 jfloat touch_major_0_pixels, | 40 jfloat touch_major_0_pixels, |
41 jfloat touch_major_1_pixels, | 41 jfloat touch_major_1_pixels, |
42 jfloat touch_minor_0_pixels, | |
43 jfloat touch_minor_1_pixels, | |
44 jfloat orientation_0_rad, | |
45 jfloat orientation_1_rad, | |
46 jfloat raw_pos_x_pixels, | 42 jfloat raw_pos_x_pixels, |
47 jfloat raw_pos_y_pixels, | 43 jfloat raw_pos_y_pixels, |
48 jint android_tool_type_0, | 44 jint android_tool_type_0, |
49 jint android_tool_type_1, | 45 jint android_tool_type_1, |
50 jint android_button_state); | 46 jint android_button_state); |
51 virtual ~MotionEventAndroid(); | 47 virtual ~MotionEventAndroid(); |
52 | 48 |
53 // ui::MotionEvent methods. | 49 // ui::MotionEvent methods. |
54 virtual int GetId() const OVERRIDE; | 50 virtual int GetId() const OVERRIDE; |
55 virtual Action GetAction() const OVERRIDE; | 51 virtual Action GetAction() const OVERRIDE; |
56 virtual int GetActionIndex() const OVERRIDE; | 52 virtual int GetActionIndex() const OVERRIDE; |
57 virtual size_t GetPointerCount() const OVERRIDE; | 53 virtual size_t GetPointerCount() const OVERRIDE; |
58 virtual int GetPointerId(size_t pointer_index) const OVERRIDE; | 54 virtual int GetPointerId(size_t pointer_index) const OVERRIDE; |
59 virtual float GetX(size_t pointer_index) const OVERRIDE; | 55 virtual float GetX(size_t pointer_index) const OVERRIDE; |
60 virtual float GetY(size_t pointer_index) const OVERRIDE; | 56 virtual float GetY(size_t pointer_index) const OVERRIDE; |
61 virtual float GetRawX(size_t pointer_index) const OVERRIDE; | 57 virtual float GetRawX(size_t pointer_index) const OVERRIDE; |
62 virtual float GetRawY(size_t pointer_index) const OVERRIDE; | 58 virtual float GetRawY(size_t pointer_index) const OVERRIDE; |
63 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; | 59 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; |
64 virtual float GetTouchMinor(size_t pointer_index) const OVERRIDE; | |
65 virtual float GetOrientation(size_t pointer_index) const OVERRIDE; | |
66 virtual float GetPressure(size_t pointer_index) const OVERRIDE; | 60 virtual float GetPressure(size_t pointer_index) const OVERRIDE; |
67 virtual base::TimeTicks GetEventTime() const OVERRIDE; | 61 virtual base::TimeTicks GetEventTime() const OVERRIDE; |
68 virtual size_t GetHistorySize() const OVERRIDE; | 62 virtual size_t GetHistorySize() const OVERRIDE; |
69 virtual base::TimeTicks GetHistoricalEventTime( | 63 virtual base::TimeTicks GetHistoricalEventTime( |
70 size_t historical_index) const OVERRIDE; | 64 size_t historical_index) const OVERRIDE; |
71 virtual float GetHistoricalTouchMajor(size_t pointer_index, | 65 virtual float GetHistoricalTouchMajor(size_t pointer_index, |
72 size_t historical_index) const OVERRIDE; | 66 size_t historical_index) const OVERRIDE; |
73 virtual float GetHistoricalX(size_t pointer_index, | 67 virtual float GetHistoricalX(size_t pointer_index, |
74 size_t historical_index) const OVERRIDE; | 68 size_t historical_index) const OVERRIDE; |
75 virtual float GetHistoricalY(size_t pointer_index, | 69 virtual float GetHistoricalY(size_t pointer_index, |
76 size_t historical_index) const OVERRIDE; | 70 size_t historical_index) const OVERRIDE; |
77 virtual ToolType GetToolType(size_t pointer_index) const OVERRIDE; | 71 virtual ToolType GetToolType(size_t pointer_index) const OVERRIDE; |
78 virtual int GetButtonState() const OVERRIDE; | 72 virtual int GetButtonState() const OVERRIDE; |
79 virtual scoped_ptr<MotionEvent> Clone() const OVERRIDE; | 73 virtual scoped_ptr<MotionEvent> Clone() const OVERRIDE; |
80 virtual scoped_ptr<MotionEvent> Cancel() const OVERRIDE; | 74 virtual scoped_ptr<MotionEvent> Cancel() const OVERRIDE; |
81 | 75 |
82 // Additional Android MotionEvent methods. | 76 // Additional Android MotionEvent methods. |
| 77 float GetTouchMinor() const { return GetTouchMinor(0); } |
| 78 float GetTouchMinor(size_t pointer_index) const; |
| 79 float GetOrientation() const; |
83 base::TimeTicks GetDownTime() const; | 80 base::TimeTicks GetDownTime() const; |
84 | 81 |
85 static bool RegisterMotionEventAndroid(JNIEnv* env); | 82 static bool RegisterMotionEventAndroid(JNIEnv* env); |
86 | 83 |
87 static base::android::ScopedJavaLocalRef<jobject> Obtain( | 84 static base::android::ScopedJavaLocalRef<jobject> Obtain( |
88 const MotionEventAndroid& event); | 85 const MotionEventAndroid& event); |
89 static base::android::ScopedJavaLocalRef<jobject> Obtain( | 86 static base::android::ScopedJavaLocalRef<jobject> Obtain( |
90 base::TimeTicks down_time, | 87 base::TimeTicks down_time, |
91 base::TimeTicks event_time, | 88 base::TimeTicks event_time, |
92 Action action, | 89 Action action, |
(...skipping 18 matching lines...) Expand all Loading... |
111 base::android::ScopedJavaGlobalRef<jobject> event_; | 108 base::android::ScopedJavaGlobalRef<jobject> event_; |
112 | 109 |
113 base::TimeTicks cached_time_; | 110 base::TimeTicks cached_time_; |
114 Action cached_action_; | 111 Action cached_action_; |
115 size_t cached_pointer_count_; | 112 size_t cached_pointer_count_; |
116 size_t cached_history_size_; | 113 size_t cached_history_size_; |
117 int cached_action_index_; | 114 int cached_action_index_; |
118 gfx::PointF cached_positions_[MAX_POINTERS_TO_CACHE]; | 115 gfx::PointF cached_positions_[MAX_POINTERS_TO_CACHE]; |
119 int cached_pointer_ids_[MAX_POINTERS_TO_CACHE]; | 116 int cached_pointer_ids_[MAX_POINTERS_TO_CACHE]; |
120 float cached_touch_majors_[MAX_POINTERS_TO_CACHE]; | 117 float cached_touch_majors_[MAX_POINTERS_TO_CACHE]; |
121 float cached_touch_minors_[MAX_POINTERS_TO_CACHE]; | |
122 float cached_orientations_[MAX_POINTERS_TO_CACHE]; | |
123 gfx::Vector2dF cached_raw_position_offset_; | 118 gfx::Vector2dF cached_raw_position_offset_; |
124 ToolType cached_tool_types_[MAX_POINTERS_TO_CACHE]; | 119 ToolType cached_tool_types_[MAX_POINTERS_TO_CACHE]; |
125 int cached_button_state_; | 120 int cached_button_state_; |
126 | 121 |
127 // Used to convert pixel coordinates from the Java-backed MotionEvent to | 122 // Used to convert pixel coordinates from the Java-backed MotionEvent to |
128 // DIP coordinates cached/returned by the MotionEventAndroid. | 123 // DIP coordinates cached/returned by the MotionEventAndroid. |
129 const float pix_to_dip_; | 124 const float pix_to_dip_; |
130 | 125 |
131 // Whether |event_| should be recycled on destruction. This will only be true | 126 // Whether |event_| should be recycled on destruction. This will only be true |
132 // for those events generated via |Obtain(...)|. | 127 // for those events generated via |Obtain(...)|. |
133 bool should_recycle_; | 128 bool should_recycle_; |
134 }; | 129 }; |
135 | 130 |
136 } // namespace content | 131 } // namespace content |
137 | 132 |
138 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOTION_EVENT_ANDROID_H_ | 133 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOTION_EVENT_ANDROID_H_ |
OLD | NEW |