blob: 55f73ac0e3402488a4e283bf24a540b5de3da4d1 [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 Brown96ad3972011-03-09 17:39:48 -080030#include <utils/BitSet.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070031
Jeff Brown91c69ab2011-02-14 17:03:18 -080032#ifdef HAVE_ANDROID_OS
33class SkMatrix;
34#endif
35
Jeff Brown46b9ac02010-04-22 18:58:52 -070036/*
37 * Additional private constants not defined in ndk/ui/input.h.
38 */
39enum {
40 /*
41 * Private control to determine when an app is tracking a key sequence.
42 */
Jeff Brownc5ed5912010-07-14 18:48:53 -070043 AKEY_EVENT_FLAG_START_TRACKING = 0x40000000
Jeff Brown46b9ac02010-04-22 18:58:52 -070044};
45
Jeff Brown89de57a2011-01-19 18:41:38 -080046enum {
47 /*
48 * Indicates that an input device has switches.
49 * This input source flag is hidden from the API because switches are only used by the system
50 * and applications have no way to interact with them.
51 */
52 AINPUT_SOURCE_SWITCH = 0x80000000,
53};
54
Jeff Brown46b9ac02010-04-22 18:58:52 -070055/*
Jeff Brown05dc66a2011-03-02 14:41:58 -080056 * SystemUiVisibility constants from View.
57 */
58enum {
59 ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0,
60 ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001,
61};
62
63/*
Jeff Brown46b9ac02010-04-22 18:58:52 -070064 * Maximum number of pointers supported per motion event.
Jeff Brown01ce2e92010-09-26 22:20:12 -070065 * Smallest number of pointers is 1.
Jeff Brown58a2da82011-01-25 16:02:22 -080066 * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
67 * will occasionally emit 11. There is not much harm making this constant bigger.)
Jeff Brown46b9ac02010-04-22 18:58:52 -070068 */
Jeff Brown58a2da82011-01-25 16:02:22 -080069#define MAX_POINTERS 16
Jeff Brown46b9ac02010-04-22 18:58:52 -070070
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070071/*
Jeff Brown01ce2e92010-09-26 22:20:12 -070072 * Maximum pointer id value supported in a motion event.
73 * Smallest pointer id is 0.
74 * (This is limited by our use of BitSet32 to track pointer assignments.)
75 */
76#define MAX_POINTER_ID 31
77
78/*
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070079 * Declare a concrete type for the NDK's input event forward declaration.
80 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070081struct AInputEvent {
82 virtual ~AInputEvent() { }
83};
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070084
Jeff Brown46b9ac02010-04-22 18:58:52 -070085/*
Jeff Brown6d0fec22010-07-23 21:28:06 -070086 * Declare a concrete type for the NDK's input device forward declaration.
Jeff Brown46b9ac02010-04-22 18:58:52 -070087 */
Jeff Brown6d0fec22010-07-23 21:28:06 -070088struct AInputDevice {
89 virtual ~AInputDevice() { }
Jeff Brown46b9ac02010-04-22 18:58:52 -070090};
91
Jeff Brown6d0fec22010-07-23 21:28:06 -070092
93namespace android {
94
Jeff Brown91c69ab2011-02-14 17:03:18 -080095#ifdef HAVE_ANDROID_OS
96class Parcel;
97#endif
98
Jeff Brown46b9ac02010-04-22 18:58:52 -070099/*
100 * Flags that flow alongside events in the input dispatch system to help with certain
101 * policy decisions such as waking from device sleep.
Jeff Brownb6997262010-10-08 22:31:17 -0700102 *
103 * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
Jeff Brown46b9ac02010-04-22 18:58:52 -0700104 */
105enum {
Jeff Brown0eaf3932010-10-01 14:55:30 -0700106 /* These flags originate in RawEvents and are generally set in the key map.
Jeff Brown497a92c2010-09-12 17:55:08 -0700107 * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700108
109 POLICY_FLAG_WAKE = 0x00000001,
110 POLICY_FLAG_WAKE_DROPPED = 0x00000002,
111 POLICY_FLAG_SHIFT = 0x00000004,
112 POLICY_FLAG_CAPS_LOCK = 0x00000008,
113 POLICY_FLAG_ALT = 0x00000010,
114 POLICY_FLAG_ALT_GR = 0x00000020,
115 POLICY_FLAG_MENU = 0x00000040,
116 POLICY_FLAG_LAUNCHER = 0x00000080,
Jeff Brown0eaf3932010-10-01 14:55:30 -0700117 POLICY_FLAG_VIRTUAL = 0x00000100,
Jeff Brown497a92c2010-09-12 17:55:08 -0700118 POLICY_FLAG_FUNCTION = 0x00000200,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700119
Jeff Brown7fbdc842010-06-17 20:52:56 -0700120 POLICY_FLAG_RAW_MASK = 0x0000ffff,
121
Jeff Brown85a31762010-09-01 17:01:00 -0700122 /* These flags are set by the input dispatcher. */
123
124 // Indicates that the input event was injected.
125 POLICY_FLAG_INJECTED = 0x01000000,
126
Jeff Browne20c9e02010-10-11 14:20:19 -0700127 // Indicates that the input event is from a trusted source such as a directly attached
128 // input device or an application with system-wide event injection permission.
129 POLICY_FLAG_TRUSTED = 0x02000000,
130
Jeff Brown9c3cda02010-06-15 01:31:58 -0700131 /* These flags are set by the input reader policy as it intercepts each event. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700132
133 // Indicates that the screen was off when the event was received and the event
134 // should wake the device.
135 POLICY_FLAG_WOKE_HERE = 0x10000000,
136
137 // Indicates that the screen was dim when the event was received and the event
138 // should brighten the device.
139 POLICY_FLAG_BRIGHT_HERE = 0x20000000,
Jeff Brownb6997262010-10-08 22:31:17 -0700140
141 // Indicates that the event should be dispatched to applications.
142 // The input event should still be sent to the InputDispatcher so that it can see all
143 // input events received include those that it will not deliver.
144 POLICY_FLAG_PASS_TO_USER = 0x40000000,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700145};
146
147/*
Jeff Brownefd32662011-03-08 15:13:06 -0800148 * Button state.
149 */
150enum {
151 // Primary button pressed (left mouse button).
152 BUTTON_STATE_PRIMARY = 1 << 0,
153};
154
155/*
Jeff Brown9c3cda02010-06-15 01:31:58 -0700156 * Describes the basic configuration of input devices that are present.
157 */
158struct InputConfiguration {
159 enum {
160 TOUCHSCREEN_UNDEFINED = 0,
161 TOUCHSCREEN_NOTOUCH = 1,
162 TOUCHSCREEN_STYLUS = 2,
163 TOUCHSCREEN_FINGER = 3
164 };
165
166 enum {
167 KEYBOARD_UNDEFINED = 0,
168 KEYBOARD_NOKEYS = 1,
169 KEYBOARD_QWERTY = 2,
170 KEYBOARD_12KEY = 3
171 };
172
173 enum {
174 NAVIGATION_UNDEFINED = 0,
175 NAVIGATION_NONAV = 1,
176 NAVIGATION_DPAD = 2,
177 NAVIGATION_TRACKBALL = 3,
178 NAVIGATION_WHEEL = 4
179 };
180
181 int32_t touchScreen;
182 int32_t keyboard;
183 int32_t navigation;
184};
185
186/*
Jeff Brown46b9ac02010-04-22 18:58:52 -0700187 * Pointer coordinate data.
188 */
189struct PointerCoords {
Jeff Brown6f2fba42011-02-19 01:08:02 -0800190 enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64
Jeff Brown91c69ab2011-02-14 17:03:18 -0800191
192 // Bitfield of axes that are present in this structure.
Jeff Brown6f2fba42011-02-19 01:08:02 -0800193 uint64_t bits;
Jeff Brown91c69ab2011-02-14 17:03:18 -0800194
195 // Values of axes that are stored in this structure packed in order by axis id
196 // for each axis that is present in the structure according to 'bits'.
197 float values[MAX_AXES];
198
199 inline void clear() {
200 bits = 0;
201 }
202
Jeff Brown6f2fba42011-02-19 01:08:02 -0800203 float getAxisValue(int32_t axis) const;
204 status_t setAxisValue(int32_t axis, float value);
205 float* editAxisValue(int32_t axis);
Jeff Brown91c69ab2011-02-14 17:03:18 -0800206
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400207 void scale(float scale);
208
Jeff Brown91c69ab2011-02-14 17:03:18 -0800209#ifdef HAVE_ANDROID_OS
210 status_t readFromParcel(Parcel* parcel);
211 status_t writeToParcel(Parcel* parcel) const;
212#endif
213
Jeff Brown96ad3972011-03-09 17:39:48 -0800214 bool operator==(const PointerCoords& other) const;
215 inline bool operator!=(const PointerCoords& other) const {
216 return !(*this == other);
217 }
218
219 void copyFrom(const PointerCoords& other);
220
Jeff Brown91c69ab2011-02-14 17:03:18 -0800221private:
222 void tooManyAxes(int axis);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700223};
224
225/*
226 * Input events.
227 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700228class InputEvent : public AInputEvent {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700229public:
230 virtual ~InputEvent() { }
231
232 virtual int32_t getType() const = 0;
233
234 inline int32_t getDeviceId() const { return mDeviceId; }
235
Jeff Brownc5ed5912010-07-14 18:48:53 -0700236 inline int32_t getSource() const { return mSource; }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800237
238 inline void setSource(int32_t source) { mSource = source; }
239
Jeff Brown46b9ac02010-04-22 18:58:52 -0700240protected:
Jeff Brownc5ed5912010-07-14 18:48:53 -0700241 void initialize(int32_t deviceId, int32_t source);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700242 void initialize(const InputEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700243
Jeff Brown46b9ac02010-04-22 18:58:52 -0700244 int32_t mDeviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700245 int32_t mSource;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700246};
247
Jeff Brown5c225b12010-06-16 01:53:36 -0700248/*
249 * Key events.
250 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700251class KeyEvent : public InputEvent {
252public:
253 virtual ~KeyEvent() { }
254
Jeff Brownc5ed5912010-07-14 18:48:53 -0700255 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700256
257 inline int32_t getAction() const { return mAction; }
258
259 inline int32_t getFlags() const { return mFlags; }
260
261 inline int32_t getKeyCode() const { return mKeyCode; }
262
263 inline int32_t getScanCode() const { return mScanCode; }
264
265 inline int32_t getMetaState() const { return mMetaState; }
266
267 inline int32_t getRepeatCount() const { return mRepeatCount; }
268
269 inline nsecs_t getDownTime() const { return mDownTime; }
270
271 inline nsecs_t getEventTime() const { return mEventTime; }
272
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700273 // Return true if this event may have a default action implementation.
274 static bool hasDefaultAction(int32_t keyCode);
275 bool hasDefaultAction() const;
276
277 // Return true if this event represents a system key.
278 static bool isSystemKey(int32_t keyCode);
279 bool isSystemKey() const;
280
Jeff Brown46b9ac02010-04-22 18:58:52 -0700281 void initialize(
282 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700283 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700284 int32_t action,
285 int32_t flags,
286 int32_t keyCode,
287 int32_t scanCode,
288 int32_t metaState,
289 int32_t repeatCount,
290 nsecs_t downTime,
291 nsecs_t eventTime);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700292 void initialize(const KeyEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700293
Jeff Brown91c69ab2011-02-14 17:03:18 -0800294protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700295 int32_t mAction;
296 int32_t mFlags;
297 int32_t mKeyCode;
298 int32_t mScanCode;
299 int32_t mMetaState;
300 int32_t mRepeatCount;
301 nsecs_t mDownTime;
302 nsecs_t mEventTime;
303};
304
Jeff Brown5c225b12010-06-16 01:53:36 -0700305/*
306 * Motion events.
307 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700308class MotionEvent : public InputEvent {
309public:
310 virtual ~MotionEvent() { }
311
Jeff Brownc5ed5912010-07-14 18:48:53 -0700312 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700313
314 inline int32_t getAction() const { return mAction; }
315
Jeff Brown91c69ab2011-02-14 17:03:18 -0800316 inline void setAction(int32_t action) { mAction = action; }
317
Jeff Brown85a31762010-09-01 17:01:00 -0700318 inline int32_t getFlags() const { return mFlags; }
319
Jeff Brown46b9ac02010-04-22 18:58:52 -0700320 inline int32_t getEdgeFlags() const { return mEdgeFlags; }
321
Jeff Brown91c69ab2011-02-14 17:03:18 -0800322 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
323
Jeff Brown46b9ac02010-04-22 18:58:52 -0700324 inline int32_t getMetaState() const { return mMetaState; }
325
Jeff Brown91c69ab2011-02-14 17:03:18 -0800326 inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
327
Jeff Brown5c225b12010-06-16 01:53:36 -0700328 inline float getXOffset() const { return mXOffset; }
329
330 inline float getYOffset() const { return mYOffset; }
331
Jeff Brown46b9ac02010-04-22 18:58:52 -0700332 inline float getXPrecision() const { return mXPrecision; }
333
334 inline float getYPrecision() const { return mYPrecision; }
335
336 inline nsecs_t getDownTime() const { return mDownTime; }
337
338 inline size_t getPointerCount() const { return mPointerIds.size(); }
339
340 inline int32_t getPointerId(size_t pointerIndex) const { return mPointerIds[pointerIndex]; }
341
342 inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
343
Jeff Brown91c69ab2011-02-14 17:03:18 -0800344 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
345
346 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
347
Jeff Brown5c225b12010-06-16 01:53:36 -0700348 inline float getRawX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800349 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700350 }
351
Jeff Brown5c225b12010-06-16 01:53:36 -0700352 inline float getRawY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800353 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700354 }
355
Jeff Brown91c69ab2011-02-14 17:03:18 -0800356 float getAxisValue(int32_t axis, size_t pointerIndex) const;
357
Jeff Brown5c225b12010-06-16 01:53:36 -0700358 inline float getX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800359 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700360 }
361
362 inline float getY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800363 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700364 }
365
Jeff Brown46b9ac02010-04-22 18:58:52 -0700366 inline float getPressure(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800367 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700368 }
369
370 inline float getSize(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800371 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700372 }
373
Jeff Brownc5ed5912010-07-14 18:48:53 -0700374 inline float getTouchMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800375 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700376 }
377
378 inline float getTouchMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800379 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700380 }
381
382 inline float getToolMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800383 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700384 }
385
386 inline float getToolMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800387 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700388 }
389
390 inline float getOrientation(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800391 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700392 }
393
Jeff Brown46b9ac02010-04-22 18:58:52 -0700394 inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
395
396 inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
397 return mSampleEventTimes[historicalIndex];
398 }
399
Jeff Brown91c69ab2011-02-14 17:03:18 -0800400 const PointerCoords* getHistoricalRawPointerCoords(
401 size_t pointerIndex, size_t historicalIndex) const;
402
403 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
404 size_t historicalIndex) const;
405
Jeff Brown5c225b12010-06-16 01:53:36 -0700406 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800407 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800408 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700409 }
410
Jeff Brown5c225b12010-06-16 01:53:36 -0700411 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800412 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800413 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700414 }
415
Jeff Brown91c69ab2011-02-14 17:03:18 -0800416 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
417
Jeff Brown5c225b12010-06-16 01:53:36 -0700418 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800419 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800420 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700421 }
422
423 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800424 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800425 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700426 }
427
Jeff Brown46b9ac02010-04-22 18:58:52 -0700428 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800429 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800430 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700431 }
432
433 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800434 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800435 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700436 }
437
Jeff Brownc5ed5912010-07-14 18:48:53 -0700438 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800439 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800440 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700441 }
442
443 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800444 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800445 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700446 }
447
448 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800449 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800450 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700451 }
452
453 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800454 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800455 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700456 }
457
458 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800459 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800460 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700461 }
462
Jeff Brown46b9ac02010-04-22 18:58:52 -0700463 void initialize(
464 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700465 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700466 int32_t action,
Jeff Brown85a31762010-09-01 17:01:00 -0700467 int32_t flags,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700468 int32_t edgeFlags,
469 int32_t metaState,
Jeff Brown5c225b12010-06-16 01:53:36 -0700470 float xOffset,
471 float yOffset,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700472 float xPrecision,
473 float yPrecision,
474 nsecs_t downTime,
475 nsecs_t eventTime,
476 size_t pointerCount,
477 const int32_t* pointerIds,
478 const PointerCoords* pointerCoords);
479
Jeff Brown91c69ab2011-02-14 17:03:18 -0800480 void copyFrom(const MotionEvent* other, bool keepHistory);
481
Jeff Brown46b9ac02010-04-22 18:58:52 -0700482 void addSample(
483 nsecs_t eventTime,
484 const PointerCoords* pointerCoords);
485
486 void offsetLocation(float xOffset, float yOffset);
487
Jeff Brown91c69ab2011-02-14 17:03:18 -0800488 void scale(float scaleFactor);
489
490#ifdef HAVE_ANDROID_OS
491 void transform(const SkMatrix* matrix);
492
493 status_t readFromParcel(Parcel* parcel);
494 status_t writeToParcel(Parcel* parcel) const;
495#endif
496
Jeff Brown56194eb2011-03-02 19:23:13 -0800497 static bool isTouchEvent(int32_t source, int32_t action);
498 inline bool isTouchEvent() const {
499 return isTouchEvent(mSource, mAction);
500 }
501
Jeff Brown5c225b12010-06-16 01:53:36 -0700502 // Low-level accessors.
503 inline const int32_t* getPointerIds() const { return mPointerIds.array(); }
504 inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }
505 inline const PointerCoords* getSamplePointerCoords() const {
506 return mSamplePointerCoords.array();
507 }
508
Jeff Brown91c69ab2011-02-14 17:03:18 -0800509protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700510 int32_t mAction;
Jeff Brown85a31762010-09-01 17:01:00 -0700511 int32_t mFlags;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700512 int32_t mEdgeFlags;
513 int32_t mMetaState;
Jeff Brown5c225b12010-06-16 01:53:36 -0700514 float mXOffset;
515 float mYOffset;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700516 float mXPrecision;
517 float mYPrecision;
518 nsecs_t mDownTime;
519 Vector<int32_t> mPointerIds;
520 Vector<nsecs_t> mSampleEventTimes;
521 Vector<PointerCoords> mSamplePointerCoords;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700522};
523
524/*
525 * Input event factory.
526 */
527class InputEventFactoryInterface {
528protected:
529 virtual ~InputEventFactoryInterface() { }
530
531public:
532 InputEventFactoryInterface() { }
533
534 virtual KeyEvent* createKeyEvent() = 0;
535 virtual MotionEvent* createMotionEvent() = 0;
536};
537
538/*
539 * A simple input event factory implementation that uses a single preallocated instance
540 * of each type of input event that are reused for each request.
541 */
542class PreallocatedInputEventFactory : public InputEventFactoryInterface {
543public:
544 PreallocatedInputEventFactory() { }
545 virtual ~PreallocatedInputEventFactory() { }
546
547 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
548 virtual MotionEvent* createMotionEvent() { return & mMotionEvent; }
549
550private:
551 KeyEvent mKeyEvent;
552 MotionEvent mMotionEvent;
553};
554
Jeff Brown6d0fec22010-07-23 21:28:06 -0700555/*
Jeff Brown96ad3972011-03-09 17:39:48 -0800556 * Calculates the velocity of pointer motions over time.
557 * Uses essentially the same algorithm as android.view.VelocityTracker.
558 */
559class VelocityTracker {
560public:
561 struct Position {
562 float x, y;
563 };
564
565 VelocityTracker();
566
567 // Resets the velocity tracker state.
568 void clear();
569
570 // Adds movement information for a set of pointers.
571 // The idBits bitfield specifies the pointer ids of the pointers whose positions
572 // are included in the movement.
573 // The positions array contains position information for each pointer in order by
574 // increasing id. Its size should be equal to the number of one bits in idBits.
575 void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions);
576
577 // Gets the velocity of the specified pointer id in position units per second.
578 // Returns false and sets the velocity components to zero if there is no movement
579 // information for the pointer.
580 bool getVelocity(uint32_t id, float* outVx, float* outVy) const;
581
582private:
583 // Number of samples to keep.
584 static const uint32_t HISTORY_SIZE = 10;
585
586 // Oldest sample to consider when calculating the velocity.
587 static const nsecs_t MAX_AGE = 200 * 1000000; // 200 ms
588
589 // The minimum duration between samples when estimating velocity.
590 static const nsecs_t MIN_DURATION = 5 * 1000000; // 5 ms
591
592 struct Movement {
593 nsecs_t eventTime;
594 BitSet32 idBits;
595 Position positions[MAX_POINTERS];
596 };
597
598 uint32_t mIndex;
599 Movement mMovements[HISTORY_SIZE];
600};
601
602/*
Jeff Brown6d0fec22010-07-23 21:28:06 -0700603 * Describes the characteristics and capabilities of an input device.
604 */
605class InputDeviceInfo {
606public:
607 InputDeviceInfo();
608 InputDeviceInfo(const InputDeviceInfo& other);
609 ~InputDeviceInfo();
610
611 struct MotionRange {
Jeff Brownefd32662011-03-08 15:13:06 -0800612 int32_t axis;
613 uint32_t source;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700614 float min;
615 float max;
616 float flat;
617 float fuzz;
618 };
619
620 void initialize(int32_t id, const String8& name);
621
622 inline int32_t getId() const { return mId; }
623 inline const String8 getName() const { return mName; }
624 inline uint32_t getSources() const { return mSources; }
625
Jeff Brownefd32662011-03-08 15:13:06 -0800626 const MotionRange* getMotionRange(int32_t axis, uint32_t source) const;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700627
628 void addSource(uint32_t source);
Jeff Brownefd32662011-03-08 15:13:06 -0800629 void addMotionRange(int32_t axis, uint32_t source,
630 float min, float max, float flat, float fuzz);
631 void addMotionRange(const MotionRange& range);
Jeff Brown6d0fec22010-07-23 21:28:06 -0700632
633 inline void setKeyboardType(int32_t keyboardType) { mKeyboardType = keyboardType; }
634 inline int32_t getKeyboardType() const { return mKeyboardType; }
635
Jeff Brownefd32662011-03-08 15:13:06 -0800636 inline const Vector<MotionRange>& getMotionRanges() const {
Jeff Brown8d608662010-08-30 03:02:23 -0700637 return mMotionRanges;
638 }
639
Jeff Brown6d0fec22010-07-23 21:28:06 -0700640private:
641 int32_t mId;
642 String8 mName;
643 uint32_t mSources;
644 int32_t mKeyboardType;
645
Jeff Brownefd32662011-03-08 15:13:06 -0800646 Vector<MotionRange> mMotionRanges;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700647};
648
Jeff Brown90655042010-12-02 13:50:46 -0800649/*
650 * Identifies a device.
651 */
652struct InputDeviceIdentifier {
653 inline InputDeviceIdentifier() :
654 bus(0), vendor(0), product(0), version(0) {
655 }
656
657 String8 name;
658 String8 location;
659 String8 uniqueId;
660 uint16_t bus;
661 uint16_t vendor;
662 uint16_t product;
663 uint16_t version;
664};
665
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800666/* Types of input device configuration files. */
667enum InputDeviceConfigurationFileType {
668 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION = 0, /* .idc file */
669 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_LAYOUT = 1, /* .kl file */
670 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_CHARACTER_MAP = 2, /* .kcm file */
671};
672
673/*
Jeff Brown90655042010-12-02 13:50:46 -0800674 * Gets the path of an input device configuration file, if one is available.
Jeff Brown1f245102010-11-18 20:53:46 -0800675 * Considers both system provided and user installed configuration files.
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800676 *
Jeff Brown90655042010-12-02 13:50:46 -0800677 * The device identifier is used to construct several default configuration file
678 * names to try based on the device name, vendor, product, and version.
679 *
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800680 * Returns an empty string if not found.
681 */
Jeff Brown90655042010-12-02 13:50:46 -0800682extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier(
683 const InputDeviceIdentifier& deviceIdentifier,
684 InputDeviceConfigurationFileType type);
685
686/*
687 * Gets the path of an input device configuration file, if one is available.
688 * Considers both system provided and user installed configuration files.
689 *
690 * The name is case-sensitive and is used to construct the filename to resolve.
691 * All characters except 'a'-'z', 'A'-'Z', '0'-'9', '-', and '_' are replaced by underscores.
692 *
693 * Returns an empty string if not found.
694 */
695extern String8 getInputDeviceConfigurationFilePathByName(
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800696 const String8& name, InputDeviceConfigurationFileType type);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700697
698} // namespace android
699
700#endif // _UI_INPUT_H