blob: bc5b718fb8b36bc8e5496290c7225902dd9526a3 [file] [log] [blame]
Jeff Brown46b9ac02010-04-22 18:58:52 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _UI_INPUT_H
18#define _UI_INPUT_H
19
20/**
21 * Native input event structures.
22 */
23
24#include <android/input.h>
25#include <utils/Vector.h>
Jeff Brown6d0fec22010-07-23 21:28:06 -070026#include <utils/KeyedVector.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070027#include <utils/Timers.h>
Jeff Brown6d0fec22010-07-23 21:28:06 -070028#include <utils/RefBase.h>
29#include <utils/String8.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070030
Jeff Brown91c69ab2011-02-14 17:03:18 -080031#ifdef HAVE_ANDROID_OS
32class SkMatrix;
33#endif
34
Jeff Brown46b9ac02010-04-22 18:58:52 -070035/*
36 * Additional private constants not defined in ndk/ui/input.h.
37 */
38enum {
39 /*
40 * Private control to determine when an app is tracking a key sequence.
41 */
Jeff Brownc5ed5912010-07-14 18:48:53 -070042 AKEY_EVENT_FLAG_START_TRACKING = 0x40000000
Jeff Brown46b9ac02010-04-22 18:58:52 -070043};
44
Jeff Brown89de57a2011-01-19 18:41:38 -080045enum {
46 /*
47 * Indicates that an input device has switches.
48 * This input source flag is hidden from the API because switches are only used by the system
49 * and applications have no way to interact with them.
50 */
51 AINPUT_SOURCE_SWITCH = 0x80000000,
52};
53
Jeff Brown46b9ac02010-04-22 18:58:52 -070054/*
Jeff Brown05dc66a2011-03-02 14:41:58 -080055 * SystemUiVisibility constants from View.
56 */
57enum {
58 ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0,
59 ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001,
60};
61
62/*
Jeff Brown46b9ac02010-04-22 18:58:52 -070063 * Maximum number of pointers supported per motion event.
Jeff Brown01ce2e92010-09-26 22:20:12 -070064 * Smallest number of pointers is 1.
Jeff Brown58a2da82011-01-25 16:02:22 -080065 * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
66 * will occasionally emit 11. There is not much harm making this constant bigger.)
Jeff Brown46b9ac02010-04-22 18:58:52 -070067 */
Jeff Brown58a2da82011-01-25 16:02:22 -080068#define MAX_POINTERS 16
Jeff Brown46b9ac02010-04-22 18:58:52 -070069
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070070/*
Jeff Brown01ce2e92010-09-26 22:20:12 -070071 * Maximum pointer id value supported in a motion event.
72 * Smallest pointer id is 0.
73 * (This is limited by our use of BitSet32 to track pointer assignments.)
74 */
75#define MAX_POINTER_ID 31
76
77/*
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070078 * Declare a concrete type for the NDK's input event forward declaration.
79 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070080struct AInputEvent {
81 virtual ~AInputEvent() { }
82};
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070083
Jeff Brown46b9ac02010-04-22 18:58:52 -070084/*
Jeff Brown6d0fec22010-07-23 21:28:06 -070085 * Declare a concrete type for the NDK's input device forward declaration.
Jeff Brown46b9ac02010-04-22 18:58:52 -070086 */
Jeff Brown6d0fec22010-07-23 21:28:06 -070087struct AInputDevice {
88 virtual ~AInputDevice() { }
Jeff Brown46b9ac02010-04-22 18:58:52 -070089};
90
Jeff Brown6d0fec22010-07-23 21:28:06 -070091
92namespace android {
93
Jeff Brown91c69ab2011-02-14 17:03:18 -080094#ifdef HAVE_ANDROID_OS
95class Parcel;
96#endif
97
Jeff Brown46b9ac02010-04-22 18:58:52 -070098/*
99 * Flags that flow alongside events in the input dispatch system to help with certain
100 * policy decisions such as waking from device sleep.
Jeff Brownb6997262010-10-08 22:31:17 -0700101 *
102 * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
Jeff Brown46b9ac02010-04-22 18:58:52 -0700103 */
104enum {
Jeff Brown0eaf3932010-10-01 14:55:30 -0700105 /* These flags originate in RawEvents and are generally set in the key map.
Jeff Brown497a92c2010-09-12 17:55:08 -0700106 * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700107
108 POLICY_FLAG_WAKE = 0x00000001,
109 POLICY_FLAG_WAKE_DROPPED = 0x00000002,
110 POLICY_FLAG_SHIFT = 0x00000004,
111 POLICY_FLAG_CAPS_LOCK = 0x00000008,
112 POLICY_FLAG_ALT = 0x00000010,
113 POLICY_FLAG_ALT_GR = 0x00000020,
114 POLICY_FLAG_MENU = 0x00000040,
115 POLICY_FLAG_LAUNCHER = 0x00000080,
Jeff Brown0eaf3932010-10-01 14:55:30 -0700116 POLICY_FLAG_VIRTUAL = 0x00000100,
Jeff Brown497a92c2010-09-12 17:55:08 -0700117 POLICY_FLAG_FUNCTION = 0x00000200,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700118
Jeff Brown7fbdc842010-06-17 20:52:56 -0700119 POLICY_FLAG_RAW_MASK = 0x0000ffff,
120
Jeff Brown85a31762010-09-01 17:01:00 -0700121 /* These flags are set by the input dispatcher. */
122
123 // Indicates that the input event was injected.
124 POLICY_FLAG_INJECTED = 0x01000000,
125
Jeff Browne20c9e02010-10-11 14:20:19 -0700126 // Indicates that the input event is from a trusted source such as a directly attached
127 // input device or an application with system-wide event injection permission.
128 POLICY_FLAG_TRUSTED = 0x02000000,
129
Jeff Brown9c3cda02010-06-15 01:31:58 -0700130 /* These flags are set by the input reader policy as it intercepts each event. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700131
132 // Indicates that the screen was off when the event was received and the event
133 // should wake the device.
134 POLICY_FLAG_WOKE_HERE = 0x10000000,
135
136 // Indicates that the screen was dim when the event was received and the event
137 // should brighten the device.
138 POLICY_FLAG_BRIGHT_HERE = 0x20000000,
Jeff Brownb6997262010-10-08 22:31:17 -0700139
140 // Indicates that the event should be dispatched to applications.
141 // The input event should still be sent to the InputDispatcher so that it can see all
142 // input events received include those that it will not deliver.
143 POLICY_FLAG_PASS_TO_USER = 0x40000000,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700144};
145
146/*
Jeff Brownefd32662011-03-08 15:13:06 -0800147 * Button state.
148 */
149enum {
150 // Primary button pressed (left mouse button).
151 BUTTON_STATE_PRIMARY = 1 << 0,
152};
153
154/*
Jeff Brown9c3cda02010-06-15 01:31:58 -0700155 * Describes the basic configuration of input devices that are present.
156 */
157struct InputConfiguration {
158 enum {
159 TOUCHSCREEN_UNDEFINED = 0,
160 TOUCHSCREEN_NOTOUCH = 1,
161 TOUCHSCREEN_STYLUS = 2,
162 TOUCHSCREEN_FINGER = 3
163 };
164
165 enum {
166 KEYBOARD_UNDEFINED = 0,
167 KEYBOARD_NOKEYS = 1,
168 KEYBOARD_QWERTY = 2,
169 KEYBOARD_12KEY = 3
170 };
171
172 enum {
173 NAVIGATION_UNDEFINED = 0,
174 NAVIGATION_NONAV = 1,
175 NAVIGATION_DPAD = 2,
176 NAVIGATION_TRACKBALL = 3,
177 NAVIGATION_WHEEL = 4
178 };
179
180 int32_t touchScreen;
181 int32_t keyboard;
182 int32_t navigation;
183};
184
185/*
Jeff Brown46b9ac02010-04-22 18:58:52 -0700186 * Pointer coordinate data.
187 */
188struct PointerCoords {
Jeff Brown6f2fba42011-02-19 01:08:02 -0800189 enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64
Jeff Brown91c69ab2011-02-14 17:03:18 -0800190
191 // Bitfield of axes that are present in this structure.
Jeff Brown6f2fba42011-02-19 01:08:02 -0800192 uint64_t bits;
Jeff Brown91c69ab2011-02-14 17:03:18 -0800193
194 // Values of axes that are stored in this structure packed in order by axis id
195 // for each axis that is present in the structure according to 'bits'.
196 float values[MAX_AXES];
197
198 inline void clear() {
199 bits = 0;
200 }
201
Jeff Brown6f2fba42011-02-19 01:08:02 -0800202 float getAxisValue(int32_t axis) const;
203 status_t setAxisValue(int32_t axis, float value);
204 float* editAxisValue(int32_t axis);
Jeff Brown91c69ab2011-02-14 17:03:18 -0800205
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400206 void scale(float scale);
207
Jeff Brown91c69ab2011-02-14 17:03:18 -0800208#ifdef HAVE_ANDROID_OS
209 status_t readFromParcel(Parcel* parcel);
210 status_t writeToParcel(Parcel* parcel) const;
211#endif
212
213private:
214 void tooManyAxes(int axis);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700215};
216
217/*
218 * Input events.
219 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700220class InputEvent : public AInputEvent {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700221public:
222 virtual ~InputEvent() { }
223
224 virtual int32_t getType() const = 0;
225
226 inline int32_t getDeviceId() const { return mDeviceId; }
227
Jeff Brownc5ed5912010-07-14 18:48:53 -0700228 inline int32_t getSource() const { return mSource; }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800229
230 inline void setSource(int32_t source) { mSource = source; }
231
Jeff Brown46b9ac02010-04-22 18:58:52 -0700232protected:
Jeff Brownc5ed5912010-07-14 18:48:53 -0700233 void initialize(int32_t deviceId, int32_t source);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700234 void initialize(const InputEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700235
Jeff Brown46b9ac02010-04-22 18:58:52 -0700236 int32_t mDeviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700237 int32_t mSource;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700238};
239
Jeff Brown5c225b12010-06-16 01:53:36 -0700240/*
241 * Key events.
242 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700243class KeyEvent : public InputEvent {
244public:
245 virtual ~KeyEvent() { }
246
Jeff Brownc5ed5912010-07-14 18:48:53 -0700247 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700248
249 inline int32_t getAction() const { return mAction; }
250
251 inline int32_t getFlags() const { return mFlags; }
252
253 inline int32_t getKeyCode() const { return mKeyCode; }
254
255 inline int32_t getScanCode() const { return mScanCode; }
256
257 inline int32_t getMetaState() const { return mMetaState; }
258
259 inline int32_t getRepeatCount() const { return mRepeatCount; }
260
261 inline nsecs_t getDownTime() const { return mDownTime; }
262
263 inline nsecs_t getEventTime() const { return mEventTime; }
264
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700265 // Return true if this event may have a default action implementation.
266 static bool hasDefaultAction(int32_t keyCode);
267 bool hasDefaultAction() const;
268
269 // Return true if this event represents a system key.
270 static bool isSystemKey(int32_t keyCode);
271 bool isSystemKey() const;
272
Jeff Brown46b9ac02010-04-22 18:58:52 -0700273 void initialize(
274 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700275 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700276 int32_t action,
277 int32_t flags,
278 int32_t keyCode,
279 int32_t scanCode,
280 int32_t metaState,
281 int32_t repeatCount,
282 nsecs_t downTime,
283 nsecs_t eventTime);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700284 void initialize(const KeyEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700285
Jeff Brown91c69ab2011-02-14 17:03:18 -0800286protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700287 int32_t mAction;
288 int32_t mFlags;
289 int32_t mKeyCode;
290 int32_t mScanCode;
291 int32_t mMetaState;
292 int32_t mRepeatCount;
293 nsecs_t mDownTime;
294 nsecs_t mEventTime;
295};
296
Jeff Brown5c225b12010-06-16 01:53:36 -0700297/*
298 * Motion events.
299 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700300class MotionEvent : public InputEvent {
301public:
302 virtual ~MotionEvent() { }
303
Jeff Brownc5ed5912010-07-14 18:48:53 -0700304 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700305
306 inline int32_t getAction() const { return mAction; }
307
Jeff Brown91c69ab2011-02-14 17:03:18 -0800308 inline void setAction(int32_t action) { mAction = action; }
309
Jeff Brown85a31762010-09-01 17:01:00 -0700310 inline int32_t getFlags() const { return mFlags; }
311
Jeff Brown46b9ac02010-04-22 18:58:52 -0700312 inline int32_t getEdgeFlags() const { return mEdgeFlags; }
313
Jeff Brown91c69ab2011-02-14 17:03:18 -0800314 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
315
Jeff Brown46b9ac02010-04-22 18:58:52 -0700316 inline int32_t getMetaState() const { return mMetaState; }
317
Jeff Brown91c69ab2011-02-14 17:03:18 -0800318 inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
319
Jeff Brown5c225b12010-06-16 01:53:36 -0700320 inline float getXOffset() const { return mXOffset; }
321
322 inline float getYOffset() const { return mYOffset; }
323
Jeff Brown46b9ac02010-04-22 18:58:52 -0700324 inline float getXPrecision() const { return mXPrecision; }
325
326 inline float getYPrecision() const { return mYPrecision; }
327
328 inline nsecs_t getDownTime() const { return mDownTime; }
329
330 inline size_t getPointerCount() const { return mPointerIds.size(); }
331
332 inline int32_t getPointerId(size_t pointerIndex) const { return mPointerIds[pointerIndex]; }
333
334 inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
335
Jeff Brown91c69ab2011-02-14 17:03:18 -0800336 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
337
338 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
339
Jeff Brown5c225b12010-06-16 01:53:36 -0700340 inline float getRawX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800341 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700342 }
343
Jeff Brown5c225b12010-06-16 01:53:36 -0700344 inline float getRawY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800345 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700346 }
347
Jeff Brown91c69ab2011-02-14 17:03:18 -0800348 float getAxisValue(int32_t axis, size_t pointerIndex) const;
349
Jeff Brown5c225b12010-06-16 01:53:36 -0700350 inline float getX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800351 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700352 }
353
354 inline float getY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800355 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700356 }
357
Jeff Brown46b9ac02010-04-22 18:58:52 -0700358 inline float getPressure(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800359 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700360 }
361
362 inline float getSize(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800363 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700364 }
365
Jeff Brownc5ed5912010-07-14 18:48:53 -0700366 inline float getTouchMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800367 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700368 }
369
370 inline float getTouchMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800371 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700372 }
373
374 inline float getToolMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800375 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700376 }
377
378 inline float getToolMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800379 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700380 }
381
382 inline float getOrientation(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800383 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700384 }
385
Jeff Brown46b9ac02010-04-22 18:58:52 -0700386 inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
387
388 inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
389 return mSampleEventTimes[historicalIndex];
390 }
391
Jeff Brown91c69ab2011-02-14 17:03:18 -0800392 const PointerCoords* getHistoricalRawPointerCoords(
393 size_t pointerIndex, size_t historicalIndex) const;
394
395 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
396 size_t historicalIndex) const;
397
Jeff Brown5c225b12010-06-16 01:53:36 -0700398 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800399 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800400 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700401 }
402
Jeff Brown5c225b12010-06-16 01:53:36 -0700403 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800404 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800405 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700406 }
407
Jeff Brown91c69ab2011-02-14 17:03:18 -0800408 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
409
Jeff Brown5c225b12010-06-16 01:53:36 -0700410 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800411 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800412 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700413 }
414
415 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800416 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800417 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700418 }
419
Jeff Brown46b9ac02010-04-22 18:58:52 -0700420 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800421 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800422 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700423 }
424
425 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800426 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800427 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700428 }
429
Jeff Brownc5ed5912010-07-14 18:48:53 -0700430 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800431 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800432 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700433 }
434
435 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800436 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800437 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700438 }
439
440 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800441 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800442 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700443 }
444
445 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800446 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800447 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700448 }
449
450 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800451 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800452 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700453 }
454
Jeff Brown46b9ac02010-04-22 18:58:52 -0700455 void initialize(
456 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700457 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700458 int32_t action,
Jeff Brown85a31762010-09-01 17:01:00 -0700459 int32_t flags,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700460 int32_t edgeFlags,
461 int32_t metaState,
Jeff Brown5c225b12010-06-16 01:53:36 -0700462 float xOffset,
463 float yOffset,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700464 float xPrecision,
465 float yPrecision,
466 nsecs_t downTime,
467 nsecs_t eventTime,
468 size_t pointerCount,
469 const int32_t* pointerIds,
470 const PointerCoords* pointerCoords);
471
Jeff Brown91c69ab2011-02-14 17:03:18 -0800472 void copyFrom(const MotionEvent* other, bool keepHistory);
473
Jeff Brown46b9ac02010-04-22 18:58:52 -0700474 void addSample(
475 nsecs_t eventTime,
476 const PointerCoords* pointerCoords);
477
478 void offsetLocation(float xOffset, float yOffset);
479
Jeff Brown91c69ab2011-02-14 17:03:18 -0800480 void scale(float scaleFactor);
481
482#ifdef HAVE_ANDROID_OS
483 void transform(const SkMatrix* matrix);
484
485 status_t readFromParcel(Parcel* parcel);
486 status_t writeToParcel(Parcel* parcel) const;
487#endif
488
Jeff Brown56194eb2011-03-02 19:23:13 -0800489 static bool isTouchEvent(int32_t source, int32_t action);
490 inline bool isTouchEvent() const {
491 return isTouchEvent(mSource, mAction);
492 }
493
Jeff Brown5c225b12010-06-16 01:53:36 -0700494 // Low-level accessors.
495 inline const int32_t* getPointerIds() const { return mPointerIds.array(); }
496 inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }
497 inline const PointerCoords* getSamplePointerCoords() const {
498 return mSamplePointerCoords.array();
499 }
500
Jeff Brown91c69ab2011-02-14 17:03:18 -0800501protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700502 int32_t mAction;
Jeff Brown85a31762010-09-01 17:01:00 -0700503 int32_t mFlags;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700504 int32_t mEdgeFlags;
505 int32_t mMetaState;
Jeff Brown5c225b12010-06-16 01:53:36 -0700506 float mXOffset;
507 float mYOffset;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700508 float mXPrecision;
509 float mYPrecision;
510 nsecs_t mDownTime;
511 Vector<int32_t> mPointerIds;
512 Vector<nsecs_t> mSampleEventTimes;
513 Vector<PointerCoords> mSamplePointerCoords;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700514};
515
516/*
517 * Input event factory.
518 */
519class InputEventFactoryInterface {
520protected:
521 virtual ~InputEventFactoryInterface() { }
522
523public:
524 InputEventFactoryInterface() { }
525
526 virtual KeyEvent* createKeyEvent() = 0;
527 virtual MotionEvent* createMotionEvent() = 0;
528};
529
530/*
531 * A simple input event factory implementation that uses a single preallocated instance
532 * of each type of input event that are reused for each request.
533 */
534class PreallocatedInputEventFactory : public InputEventFactoryInterface {
535public:
536 PreallocatedInputEventFactory() { }
537 virtual ~PreallocatedInputEventFactory() { }
538
539 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
540 virtual MotionEvent* createMotionEvent() { return & mMotionEvent; }
541
542private:
543 KeyEvent mKeyEvent;
544 MotionEvent mMotionEvent;
545};
546
Jeff Brown6d0fec22010-07-23 21:28:06 -0700547/*
548 * Describes the characteristics and capabilities of an input device.
549 */
550class InputDeviceInfo {
551public:
552 InputDeviceInfo();
553 InputDeviceInfo(const InputDeviceInfo& other);
554 ~InputDeviceInfo();
555
556 struct MotionRange {
Jeff Brownefd32662011-03-08 15:13:06 -0800557 int32_t axis;
558 uint32_t source;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700559 float min;
560 float max;
561 float flat;
562 float fuzz;
563 };
564
565 void initialize(int32_t id, const String8& name);
566
567 inline int32_t getId() const { return mId; }
568 inline const String8 getName() const { return mName; }
569 inline uint32_t getSources() const { return mSources; }
570
Jeff Brownefd32662011-03-08 15:13:06 -0800571 const MotionRange* getMotionRange(int32_t axis, uint32_t source) const;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700572
573 void addSource(uint32_t source);
Jeff Brownefd32662011-03-08 15:13:06 -0800574 void addMotionRange(int32_t axis, uint32_t source,
575 float min, float max, float flat, float fuzz);
576 void addMotionRange(const MotionRange& range);
Jeff Brown6d0fec22010-07-23 21:28:06 -0700577
578 inline void setKeyboardType(int32_t keyboardType) { mKeyboardType = keyboardType; }
579 inline int32_t getKeyboardType() const { return mKeyboardType; }
580
Jeff Brownefd32662011-03-08 15:13:06 -0800581 inline const Vector<MotionRange>& getMotionRanges() const {
Jeff Brown8d608662010-08-30 03:02:23 -0700582 return mMotionRanges;
583 }
584
Jeff Brown6d0fec22010-07-23 21:28:06 -0700585private:
586 int32_t mId;
587 String8 mName;
588 uint32_t mSources;
589 int32_t mKeyboardType;
590
Jeff Brownefd32662011-03-08 15:13:06 -0800591 Vector<MotionRange> mMotionRanges;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700592};
593
Jeff Brown90655042010-12-02 13:50:46 -0800594/*
595 * Identifies a device.
596 */
597struct InputDeviceIdentifier {
598 inline InputDeviceIdentifier() :
599 bus(0), vendor(0), product(0), version(0) {
600 }
601
602 String8 name;
603 String8 location;
604 String8 uniqueId;
605 uint16_t bus;
606 uint16_t vendor;
607 uint16_t product;
608 uint16_t version;
609};
610
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800611/* Types of input device configuration files. */
612enum InputDeviceConfigurationFileType {
613 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION = 0, /* .idc file */
614 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_LAYOUT = 1, /* .kl file */
615 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_CHARACTER_MAP = 2, /* .kcm file */
616};
617
618/*
Jeff Brown90655042010-12-02 13:50:46 -0800619 * Gets the path of an input device configuration file, if one is available.
Jeff Brown1f245102010-11-18 20:53:46 -0800620 * Considers both system provided and user installed configuration files.
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800621 *
Jeff Brown90655042010-12-02 13:50:46 -0800622 * The device identifier is used to construct several default configuration file
623 * names to try based on the device name, vendor, product, and version.
624 *
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800625 * Returns an empty string if not found.
626 */
Jeff Brown90655042010-12-02 13:50:46 -0800627extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier(
628 const InputDeviceIdentifier& deviceIdentifier,
629 InputDeviceConfigurationFileType type);
630
631/*
632 * Gets the path of an input device configuration file, if one is available.
633 * Considers both system provided and user installed configuration files.
634 *
635 * The name is case-sensitive and is used to construct the filename to resolve.
636 * All characters except 'a'-'z', 'A'-'Z', '0'-'9', '-', and '_' are replaced by underscores.
637 *
638 * Returns an empty string if not found.
639 */
640extern String8 getInputDeviceConfigurationFilePathByName(
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800641 const String8& name, InputDeviceConfigurationFileType type);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700642
643} // namespace android
644
645#endif // _UI_INPUT_H