blob: b7b5a8d931139d89d4a59d62d8843fa8c1437b6f [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/*
55 * Maximum number of pointers supported per motion event.
Jeff Brown01ce2e92010-09-26 22:20:12 -070056 * Smallest number of pointers is 1.
Jeff Brown58a2da82011-01-25 16:02:22 -080057 * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
58 * will occasionally emit 11. There is not much harm making this constant bigger.)
Jeff Brown46b9ac02010-04-22 18:58:52 -070059 */
Jeff Brown58a2da82011-01-25 16:02:22 -080060#define MAX_POINTERS 16
Jeff Brown46b9ac02010-04-22 18:58:52 -070061
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070062/*
Jeff Brown01ce2e92010-09-26 22:20:12 -070063 * Maximum pointer id value supported in a motion event.
64 * Smallest pointer id is 0.
65 * (This is limited by our use of BitSet32 to track pointer assignments.)
66 */
67#define MAX_POINTER_ID 31
68
69/*
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070070 * Declare a concrete type for the NDK's input event forward declaration.
71 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070072struct AInputEvent {
73 virtual ~AInputEvent() { }
74};
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070075
Jeff Brown46b9ac02010-04-22 18:58:52 -070076/*
Jeff Brown6d0fec22010-07-23 21:28:06 -070077 * Declare a concrete type for the NDK's input device forward declaration.
Jeff Brown46b9ac02010-04-22 18:58:52 -070078 */
Jeff Brown6d0fec22010-07-23 21:28:06 -070079struct AInputDevice {
80 virtual ~AInputDevice() { }
Jeff Brown46b9ac02010-04-22 18:58:52 -070081};
82
Jeff Brown6d0fec22010-07-23 21:28:06 -070083
84namespace android {
85
Jeff Brown91c69ab2011-02-14 17:03:18 -080086#ifdef HAVE_ANDROID_OS
87class Parcel;
88#endif
89
Jeff Brown46b9ac02010-04-22 18:58:52 -070090/*
91 * Flags that flow alongside events in the input dispatch system to help with certain
92 * policy decisions such as waking from device sleep.
Jeff Brownb6997262010-10-08 22:31:17 -070093 *
94 * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
Jeff Brown46b9ac02010-04-22 18:58:52 -070095 */
96enum {
Jeff Brown0eaf3932010-10-01 14:55:30 -070097 /* These flags originate in RawEvents and are generally set in the key map.
Jeff Brown497a92c2010-09-12 17:55:08 -070098 * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
Jeff Brown46b9ac02010-04-22 18:58:52 -070099
100 POLICY_FLAG_WAKE = 0x00000001,
101 POLICY_FLAG_WAKE_DROPPED = 0x00000002,
102 POLICY_FLAG_SHIFT = 0x00000004,
103 POLICY_FLAG_CAPS_LOCK = 0x00000008,
104 POLICY_FLAG_ALT = 0x00000010,
105 POLICY_FLAG_ALT_GR = 0x00000020,
106 POLICY_FLAG_MENU = 0x00000040,
107 POLICY_FLAG_LAUNCHER = 0x00000080,
Jeff Brown0eaf3932010-10-01 14:55:30 -0700108 POLICY_FLAG_VIRTUAL = 0x00000100,
Jeff Brown497a92c2010-09-12 17:55:08 -0700109 POLICY_FLAG_FUNCTION = 0x00000200,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700110
Jeff Brown7fbdc842010-06-17 20:52:56 -0700111 POLICY_FLAG_RAW_MASK = 0x0000ffff,
112
Jeff Brown85a31762010-09-01 17:01:00 -0700113 /* These flags are set by the input dispatcher. */
114
115 // Indicates that the input event was injected.
116 POLICY_FLAG_INJECTED = 0x01000000,
117
Jeff Browne20c9e02010-10-11 14:20:19 -0700118 // Indicates that the input event is from a trusted source such as a directly attached
119 // input device or an application with system-wide event injection permission.
120 POLICY_FLAG_TRUSTED = 0x02000000,
121
Jeff Brown9c3cda02010-06-15 01:31:58 -0700122 /* These flags are set by the input reader policy as it intercepts each event. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700123
124 // Indicates that the screen was off when the event was received and the event
125 // should wake the device.
126 POLICY_FLAG_WOKE_HERE = 0x10000000,
127
128 // Indicates that the screen was dim when the event was received and the event
129 // should brighten the device.
130 POLICY_FLAG_BRIGHT_HERE = 0x20000000,
Jeff Brownb6997262010-10-08 22:31:17 -0700131
132 // Indicates that the event should be dispatched to applications.
133 // The input event should still be sent to the InputDispatcher so that it can see all
134 // input events received include those that it will not deliver.
135 POLICY_FLAG_PASS_TO_USER = 0x40000000,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700136};
137
138/*
Jeff Brown9c3cda02010-06-15 01:31:58 -0700139 * Describes the basic configuration of input devices that are present.
140 */
141struct InputConfiguration {
142 enum {
143 TOUCHSCREEN_UNDEFINED = 0,
144 TOUCHSCREEN_NOTOUCH = 1,
145 TOUCHSCREEN_STYLUS = 2,
146 TOUCHSCREEN_FINGER = 3
147 };
148
149 enum {
150 KEYBOARD_UNDEFINED = 0,
151 KEYBOARD_NOKEYS = 1,
152 KEYBOARD_QWERTY = 2,
153 KEYBOARD_12KEY = 3
154 };
155
156 enum {
157 NAVIGATION_UNDEFINED = 0,
158 NAVIGATION_NONAV = 1,
159 NAVIGATION_DPAD = 2,
160 NAVIGATION_TRACKBALL = 3,
161 NAVIGATION_WHEEL = 4
162 };
163
164 int32_t touchScreen;
165 int32_t keyboard;
166 int32_t navigation;
167};
168
169/*
Jeff Brown46b9ac02010-04-22 18:58:52 -0700170 * Pointer coordinate data.
171 */
172struct PointerCoords {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800173 static const size_t MAX_AXES = 15; // 15 so that sizeof(PointerCoords) == 16 * 4 == 64
174
175 // Bitfield of axes that are present in this structure.
176 uint32_t bits; // 32bits are enough for now, can raise to 64bit when needed
177
178 // Values of axes that are stored in this structure packed in order by axis id
179 // for each axis that is present in the structure according to 'bits'.
180 float values[MAX_AXES];
181
182 inline void clear() {
183 bits = 0;
184 }
185
186 inline float getAxisValue(int32_t axis) const {
187 uint32_t axisBit = 1 << axis;
188 if (!(bits & axisBit)) {
189 return 0;
190 }
191 uint32_t index = __builtin_popcount(bits & (axisBit - 1));
192 return values[index];
193 }
194
195 inline void setAxisValue(int32_t axis, float value) {
196 uint32_t axisBit = 1 << axis;
197 uint32_t index = __builtin_popcount(bits & (axisBit - 1));
198 if (!(bits & axisBit)) {
199 uint32_t count = __builtin_popcount(bits);
200 if (count >= MAX_AXES) {
201 tooManyAxes(axis);
202 return;
203 }
204 bits |= axisBit;
205 for (uint32_t i = count; i > index; i--) {
206 values[i] = values[i - 1];
207 }
208 }
209 values[index] = value;
210 }
211
212 inline float* editAxisValue(int32_t axis) {
213 uint32_t axisBit = 1 << axis;
214 if (!(bits & axisBit)) {
215 return NULL;
216 }
217 uint32_t index = __builtin_popcount(bits & (axisBit - 1));
218 return &values[index];
219 }
220
221#ifdef HAVE_ANDROID_OS
222 status_t readFromParcel(Parcel* parcel);
223 status_t writeToParcel(Parcel* parcel) const;
224#endif
225
226private:
227 void tooManyAxes(int axis);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700228};
229
230/*
231 * Input events.
232 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700233class InputEvent : public AInputEvent {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700234public:
235 virtual ~InputEvent() { }
236
237 virtual int32_t getType() const = 0;
238
239 inline int32_t getDeviceId() const { return mDeviceId; }
240
Jeff Brownc5ed5912010-07-14 18:48:53 -0700241 inline int32_t getSource() const { return mSource; }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800242
243 inline void setSource(int32_t source) { mSource = source; }
244
Jeff Brown46b9ac02010-04-22 18:58:52 -0700245protected:
Jeff Brownc5ed5912010-07-14 18:48:53 -0700246 void initialize(int32_t deviceId, int32_t source);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700247 void initialize(const InputEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700248
Jeff Brown46b9ac02010-04-22 18:58:52 -0700249 int32_t mDeviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700250 int32_t mSource;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700251};
252
Jeff Brown5c225b12010-06-16 01:53:36 -0700253/*
254 * Key events.
255 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700256class KeyEvent : public InputEvent {
257public:
258 virtual ~KeyEvent() { }
259
Jeff Brownc5ed5912010-07-14 18:48:53 -0700260 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700261
262 inline int32_t getAction() const { return mAction; }
263
264 inline int32_t getFlags() const { return mFlags; }
265
266 inline int32_t getKeyCode() const { return mKeyCode; }
267
268 inline int32_t getScanCode() const { return mScanCode; }
269
270 inline int32_t getMetaState() const { return mMetaState; }
271
272 inline int32_t getRepeatCount() const { return mRepeatCount; }
273
274 inline nsecs_t getDownTime() const { return mDownTime; }
275
276 inline nsecs_t getEventTime() const { return mEventTime; }
277
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700278 // Return true if this event may have a default action implementation.
279 static bool hasDefaultAction(int32_t keyCode);
280 bool hasDefaultAction() const;
281
282 // Return true if this event represents a system key.
283 static bool isSystemKey(int32_t keyCode);
284 bool isSystemKey() const;
285
Jeff Brown46b9ac02010-04-22 18:58:52 -0700286 void initialize(
287 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700288 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700289 int32_t action,
290 int32_t flags,
291 int32_t keyCode,
292 int32_t scanCode,
293 int32_t metaState,
294 int32_t repeatCount,
295 nsecs_t downTime,
296 nsecs_t eventTime);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700297 void initialize(const KeyEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700298
Jeff Brown91c69ab2011-02-14 17:03:18 -0800299protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700300 int32_t mAction;
301 int32_t mFlags;
302 int32_t mKeyCode;
303 int32_t mScanCode;
304 int32_t mMetaState;
305 int32_t mRepeatCount;
306 nsecs_t mDownTime;
307 nsecs_t mEventTime;
308};
309
Jeff Brown5c225b12010-06-16 01:53:36 -0700310/*
311 * Motion events.
312 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700313class MotionEvent : public InputEvent {
314public:
315 virtual ~MotionEvent() { }
316
Jeff Brownc5ed5912010-07-14 18:48:53 -0700317 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700318
319 inline int32_t getAction() const { return mAction; }
320
Jeff Brown91c69ab2011-02-14 17:03:18 -0800321 inline void setAction(int32_t action) { mAction = action; }
322
Jeff Brown85a31762010-09-01 17:01:00 -0700323 inline int32_t getFlags() const { return mFlags; }
324
Jeff Brown46b9ac02010-04-22 18:58:52 -0700325 inline int32_t getEdgeFlags() const { return mEdgeFlags; }
326
Jeff Brown91c69ab2011-02-14 17:03:18 -0800327 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
328
Jeff Brown46b9ac02010-04-22 18:58:52 -0700329 inline int32_t getMetaState() const { return mMetaState; }
330
Jeff Brown91c69ab2011-02-14 17:03:18 -0800331 inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
332
Jeff Brown5c225b12010-06-16 01:53:36 -0700333 inline float getXOffset() const { return mXOffset; }
334
335 inline float getYOffset() const { return mYOffset; }
336
Jeff Brown46b9ac02010-04-22 18:58:52 -0700337 inline float getXPrecision() const { return mXPrecision; }
338
339 inline float getYPrecision() const { return mYPrecision; }
340
341 inline nsecs_t getDownTime() const { return mDownTime; }
342
343 inline size_t getPointerCount() const { return mPointerIds.size(); }
344
345 inline int32_t getPointerId(size_t pointerIndex) const { return mPointerIds[pointerIndex]; }
346
347 inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
348
Jeff Brown91c69ab2011-02-14 17:03:18 -0800349 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
350
351 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
352
Jeff Brown5c225b12010-06-16 01:53:36 -0700353 inline float getRawX(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800354 return getRawAxisValue(AINPUT_MOTION_AXIS_X, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700355 }
356
Jeff Brown5c225b12010-06-16 01:53:36 -0700357 inline float getRawY(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800358 return getRawAxisValue(AINPUT_MOTION_AXIS_Y, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700359 }
360
Jeff Brown91c69ab2011-02-14 17:03:18 -0800361 float getAxisValue(int32_t axis, size_t pointerIndex) const;
362
Jeff Brown5c225b12010-06-16 01:53:36 -0700363 inline float getX(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800364 return getAxisValue(AINPUT_MOTION_AXIS_X, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700365 }
366
367 inline float getY(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800368 return getAxisValue(AINPUT_MOTION_AXIS_Y, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700369 }
370
Jeff Brown46b9ac02010-04-22 18:58:52 -0700371 inline float getPressure(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800372 return getAxisValue(AINPUT_MOTION_AXIS_PRESSURE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700373 }
374
375 inline float getSize(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800376 return getAxisValue(AINPUT_MOTION_AXIS_SIZE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700377 }
378
Jeff Brownc5ed5912010-07-14 18:48:53 -0700379 inline float getTouchMajor(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800380 return getAxisValue(AINPUT_MOTION_AXIS_TOUCH_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700381 }
382
383 inline float getTouchMinor(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800384 return getAxisValue(AINPUT_MOTION_AXIS_TOUCH_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700385 }
386
387 inline float getToolMajor(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800388 return getAxisValue(AINPUT_MOTION_AXIS_TOOL_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700389 }
390
391 inline float getToolMinor(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800392 return getAxisValue(AINPUT_MOTION_AXIS_TOOL_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700393 }
394
395 inline float getOrientation(size_t pointerIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800396 return getAxisValue(AINPUT_MOTION_AXIS_ORIENTATION, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700397 }
398
Jeff Brown46b9ac02010-04-22 18:58:52 -0700399 inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
400
401 inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
402 return mSampleEventTimes[historicalIndex];
403 }
404
Jeff Brown91c69ab2011-02-14 17:03:18 -0800405 const PointerCoords* getHistoricalRawPointerCoords(
406 size_t pointerIndex, size_t historicalIndex) const;
407
408 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
409 size_t historicalIndex) const;
410
Jeff Brown5c225b12010-06-16 01:53:36 -0700411 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800412 return getHistoricalRawAxisValue(
413 AINPUT_MOTION_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700414 }
415
Jeff Brown5c225b12010-06-16 01:53:36 -0700416 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800417 return getHistoricalRawAxisValue(
418 AINPUT_MOTION_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700419 }
420
Jeff Brown91c69ab2011-02-14 17:03:18 -0800421 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
422
Jeff Brown5c225b12010-06-16 01:53:36 -0700423 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800424 return getHistoricalAxisValue(
425 AINPUT_MOTION_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700426 }
427
428 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800429 return getHistoricalAxisValue(
430 AINPUT_MOTION_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700431 }
432
Jeff Brown46b9ac02010-04-22 18:58:52 -0700433 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800434 return getHistoricalAxisValue(
435 AINPUT_MOTION_AXIS_PRESSURE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700436 }
437
438 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800439 return getHistoricalAxisValue(
440 AINPUT_MOTION_AXIS_SIZE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700441 }
442
Jeff Brownc5ed5912010-07-14 18:48:53 -0700443 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800444 return getHistoricalAxisValue(
445 AINPUT_MOTION_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700446 }
447
448 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800449 return getHistoricalAxisValue(
450 AINPUT_MOTION_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700451 }
452
453 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800454 return getHistoricalAxisValue(
455 AINPUT_MOTION_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700456 }
457
458 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800459 return getHistoricalAxisValue(
460 AINPUT_MOTION_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700461 }
462
463 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800464 return getHistoricalAxisValue(
465 AINPUT_MOTION_AXIS_ORIENTATION, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700466 }
467
Jeff Brown46b9ac02010-04-22 18:58:52 -0700468 void initialize(
469 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700470 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700471 int32_t action,
Jeff Brown85a31762010-09-01 17:01:00 -0700472 int32_t flags,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700473 int32_t edgeFlags,
474 int32_t metaState,
Jeff Brown5c225b12010-06-16 01:53:36 -0700475 float xOffset,
476 float yOffset,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700477 float xPrecision,
478 float yPrecision,
479 nsecs_t downTime,
480 nsecs_t eventTime,
481 size_t pointerCount,
482 const int32_t* pointerIds,
483 const PointerCoords* pointerCoords);
484
Jeff Brown91c69ab2011-02-14 17:03:18 -0800485 void copyFrom(const MotionEvent* other, bool keepHistory);
486
Jeff Brown46b9ac02010-04-22 18:58:52 -0700487 void addSample(
488 nsecs_t eventTime,
489 const PointerCoords* pointerCoords);
490
491 void offsetLocation(float xOffset, float yOffset);
492
Jeff Brown91c69ab2011-02-14 17:03:18 -0800493 void scale(float scaleFactor);
494
495#ifdef HAVE_ANDROID_OS
496 void transform(const SkMatrix* matrix);
497
498 status_t readFromParcel(Parcel* parcel);
499 status_t writeToParcel(Parcel* parcel) const;
500#endif
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/*
556 * Describes the characteristics and capabilities of an input device.
557 */
558class InputDeviceInfo {
559public:
560 InputDeviceInfo();
561 InputDeviceInfo(const InputDeviceInfo& other);
562 ~InputDeviceInfo();
563
564 struct MotionRange {
565 float min;
566 float max;
567 float flat;
568 float fuzz;
569 };
570
571 void initialize(int32_t id, const String8& name);
572
573 inline int32_t getId() const { return mId; }
574 inline const String8 getName() const { return mName; }
575 inline uint32_t getSources() const { return mSources; }
576
Jeff Brown91c69ab2011-02-14 17:03:18 -0800577 const MotionRange* getMotionRange(int32_t axis) const;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700578
579 void addSource(uint32_t source);
Jeff Brown91c69ab2011-02-14 17:03:18 -0800580 void addMotionRange(int32_t axis, float min, float max, float flat, float fuzz);
581 void addMotionRange(int32_t axis, const MotionRange& range);
Jeff Brown6d0fec22010-07-23 21:28:06 -0700582
583 inline void setKeyboardType(int32_t keyboardType) { mKeyboardType = keyboardType; }
584 inline int32_t getKeyboardType() const { return mKeyboardType; }
585
Jeff Brown8d608662010-08-30 03:02:23 -0700586 inline const KeyedVector<int32_t, MotionRange> getMotionRanges() const {
587 return mMotionRanges;
588 }
589
Jeff Brown6d0fec22010-07-23 21:28:06 -0700590private:
591 int32_t mId;
592 String8 mName;
593 uint32_t mSources;
594 int32_t mKeyboardType;
595
596 KeyedVector<int32_t, MotionRange> mMotionRanges;
597};
598
Jeff Brown90655042010-12-02 13:50:46 -0800599/*
600 * Identifies a device.
601 */
602struct InputDeviceIdentifier {
603 inline InputDeviceIdentifier() :
604 bus(0), vendor(0), product(0), version(0) {
605 }
606
607 String8 name;
608 String8 location;
609 String8 uniqueId;
610 uint16_t bus;
611 uint16_t vendor;
612 uint16_t product;
613 uint16_t version;
614};
615
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800616/* Types of input device configuration files. */
617enum InputDeviceConfigurationFileType {
618 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION = 0, /* .idc file */
619 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_LAYOUT = 1, /* .kl file */
620 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_CHARACTER_MAP = 2, /* .kcm file */
621};
622
623/*
Jeff Brown90655042010-12-02 13:50:46 -0800624 * Gets the path of an input device configuration file, if one is available.
Jeff Brown1f245102010-11-18 20:53:46 -0800625 * Considers both system provided and user installed configuration files.
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800626 *
Jeff Brown90655042010-12-02 13:50:46 -0800627 * The device identifier is used to construct several default configuration file
628 * names to try based on the device name, vendor, product, and version.
629 *
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800630 * Returns an empty string if not found.
631 */
Jeff Brown90655042010-12-02 13:50:46 -0800632extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier(
633 const InputDeviceIdentifier& deviceIdentifier,
634 InputDeviceConfigurationFileType type);
635
636/*
637 * Gets the path of an input device configuration file, if one is available.
638 * Considers both system provided and user installed configuration files.
639 *
640 * The name is case-sensitive and is used to construct the filename to resolve.
641 * All characters except 'a'-'z', 'A'-'Z', '0'-'9', '-', and '_' are replaced by underscores.
642 *
643 * Returns an empty string if not found.
644 */
645extern String8 getInputDeviceConfigurationFilePathByName(
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800646 const String8& name, InputDeviceConfigurationFileType type);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700647
648} // namespace android
649
650#endif // _UI_INPUT_H