blob: d190e496982ad641ce341fccb8f7d94ae1475b91 [file] [log] [blame]
Jeff Brown46b9ac0a2010-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 _ANDROID_INPUT_H
18#define _ANDROID_INPUT_H
19
20/******************************************************************
21 *
22 * IMPORTANT NOTICE:
23 *
24 * This file is part of Android's set of stable system headers
25 * exposed by the Android NDK (Native Development Kit).
26 *
27 * Third-party source AND binary code relies on the definitions
28 * here to be FROZEN ON ALL UPCOMING PLATFORM RELEASES.
29 *
30 * - DO NOT MODIFY ENUMS (EXCEPT IF YOU ADD NEW 32-BIT VALUES)
31 * - DO NOT MODIFY CONSTANTS OR FUNCTIONAL MACROS
32 * - DO NOT CHANGE THE SIGNATURE OF FUNCTIONS IN ANY WAY
33 * - DO NOT CHANGE THE LAYOUT OR SIZE OF STRUCTURES
34 */
35
36/*
37 * Structures and functions to receive and process input events in
38 * native code.
39 *
40 * NOTE: These functions MUST be implemented by /system/lib/libui.so
41 */
42
Kenny Roote30de4e2010-07-28 16:41:02 -070043#include <stdint.h>
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070044#include <sys/types.h>
45#include <android/keycodes.h>
Dianne Hackborn68267412010-07-02 18:52:01 -070046#include <android/looper.h>
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070047
48#ifdef __cplusplus
49extern "C" {
50#endif
51
52/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070053 * Key states (may be returned by queries about the current state of a
54 * particular key code, scan code or switch).
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070055 */
56enum {
57 /* The key state is unknown or the requested key itself is not supported. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070058 AKEY_STATE_UNKNOWN = -1,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070059
60 /* The key is up. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070061 AKEY_STATE_UP = 0,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070062
63 /* The key is down. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070064 AKEY_STATE_DOWN = 1,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070065
66 /* The key is down but is a virtual key press that is being emulated by the system. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070067 AKEY_STATE_VIRTUAL = 2
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070068};
69
70/*
71 * Meta key / modifer state.
72 */
73enum {
74 /* No meta keys are pressed. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070075 AMETA_NONE = 0,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070076
77 /* This mask is used to check whether one of the ALT meta keys is pressed. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070078 AMETA_ALT_ON = 0x02,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070079
80 /* This mask is used to check whether the left ALT meta key is pressed. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070081 AMETA_ALT_LEFT_ON = 0x10,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070082
83 /* This mask is used to check whether the right ALT meta key is pressed. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070084 AMETA_ALT_RIGHT_ON = 0x20,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070085
86 /* This mask is used to check whether one of the SHIFT meta keys is pressed. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070087 AMETA_SHIFT_ON = 0x01,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070088
89 /* This mask is used to check whether the left SHIFT meta key is pressed. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070090 AMETA_SHIFT_LEFT_ON = 0x40,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070091
92 /* This mask is used to check whether the right SHIFT meta key is pressed. */
Jeff Brownc5ed5912010-07-14 18:48:53 -070093 AMETA_SHIFT_RIGHT_ON = 0x80,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070094
95 /* This mask is used to check whether the SYM meta key is pressed. */
Jeff Brown497a92c2010-09-12 17:55:08 -070096 AMETA_SYM_ON = 0x04,
97
98 /* This mask is used to check whether the FUNCTION meta key is pressed. */
99 AMETA_FUNCTION_ON = 0x08,
100
101 /* This mask is used to check whether one of the CTRL meta keys is pressed. */
102 AMETA_CTRL_ON = 0x1000,
103
104 /* This mask is used to check whether the left CTRL meta key is pressed. */
105 AMETA_CTRL_LEFT_ON = 0x2000,
106
107 /* This mask is used to check whether the right CTRL meta key is pressed. */
108 AMETA_CTRL_RIGHT_ON = 0x4000,
109
110 /* This mask is used to check whether one of the META meta keys is pressed. */
111 AMETA_META_ON = 0x10000,
112
113 /* This mask is used to check whether the left META meta key is pressed. */
114 AMETA_META_LEFT_ON = 0x20000,
115
116 /* This mask is used to check whether the right META meta key is pressed. */
117 AMETA_META_RIGHT_ON = 0x40000,
118
119 /* This mask is used to check whether the CAPS LOCK meta key is latched. */
120 AMETA_CAPS_LOCK_LATCHED = 0x100000,
121
122 /* This mask is used to check whether the NUM LOCK meta key is latched. */
123 AMETA_NUM_LOCK_LATCHED = 0x200000,
124
125 /* This mask is used to check whether the SCROLL LOCK meta key is latched. */
126 AMETA_SCROLL_LOCK_LATCHED = 0x400000,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700127};
128
129/*
130 * Input events.
131 *
132 * Input events are opaque structures. Use the provided accessors functions to
133 * read their properties.
134 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700135struct AInputEvent;
136typedef struct AInputEvent AInputEvent;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700137
138/*
139 * Input event types.
140 */
141enum {
142 /* Indicates that the input event is a key event. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700143 AINPUT_EVENT_TYPE_KEY = 1,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700144
145 /* Indicates that the input event is a motion event. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700146 AINPUT_EVENT_TYPE_MOTION = 2
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700147};
148
149/*
150 * Key event actions.
151 */
152enum {
153 /* The key has been pressed down. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700154 AKEY_EVENT_ACTION_DOWN = 0,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700155
156 /* The key has been released. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700157 AKEY_EVENT_ACTION_UP = 1,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700158
159 /* Multiple duplicate key events have occurred in a row, or a complex string is
160 * being delivered. The repeat_count property of the key event contains the number
161 * of times the given key code should be executed.
162 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700163 AKEY_EVENT_ACTION_MULTIPLE = 2
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700164};
165
166/*
167 * Key event flags.
168 */
169enum {
170 /* This mask is set if the device woke because of this key event. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700171 AKEY_EVENT_FLAG_WOKE_HERE = 0x1,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700172
173 /* This mask is set if the key event was generated by a software keyboard. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700174 AKEY_EVENT_FLAG_SOFT_KEYBOARD = 0x2,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700175
176 /* This mask is set if we don't want the key event to cause us to leave touch mode. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700177 AKEY_EVENT_FLAG_KEEP_TOUCH_MODE = 0x4,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700178
179 /* This mask is set if an event was known to come from a trusted part
180 * of the system. That is, the event is known to come from the user,
181 * and could not have been spoofed by a third party component. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700182 AKEY_EVENT_FLAG_FROM_SYSTEM = 0x8,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700183
184 /* This mask is used for compatibility, to identify enter keys that are
185 * coming from an IME whose enter key has been auto-labelled "next" or
186 * "done". This allows TextView to dispatch these as normal enter keys
187 * for old applications, but still do the appropriate action when
188 * receiving them. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700189 AKEY_EVENT_FLAG_EDITOR_ACTION = 0x10,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700190
191 /* When associated with up key events, this indicates that the key press
192 * has been canceled. Typically this is used with virtual touch screen
193 * keys, where the user can slide from the virtual key area on to the
194 * display: in that case, the application will receive a canceled up
195 * event and should not perform the action normally associated with the
196 * key. Note that for this to work, the application can not perform an
197 * action for a key until it receives an up or the long press timeout has
198 * expired. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700199 AKEY_EVENT_FLAG_CANCELED = 0x20,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700200
201 /* This key event was generated by a virtual (on-screen) hard key area.
202 * Typically this is an area of the touchscreen, outside of the regular
203 * display, dedicated to "hardware" buttons. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700204 AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY = 0x40,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700205
206 /* This flag is set for the first key repeat that occurs after the
207 * long press timeout. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700208 AKEY_EVENT_FLAG_LONG_PRESS = 0x80,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700209
Jeff Brownc5ed5912010-07-14 18:48:53 -0700210 /* Set when a key event has AKEY_EVENT_FLAG_CANCELED set because a long
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700211 * press action was executed while it was down. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700212 AKEY_EVENT_FLAG_CANCELED_LONG_PRESS = 0x100,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700213
Jeff Brownc5ed5912010-07-14 18:48:53 -0700214 /* Set for AKEY_EVENT_ACTION_UP when this event's key code is still being
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700215 * tracked from its initial down. That is, somebody requested that tracking
216 * started on the key down and a long press has not caused
217 * the tracking to be canceled. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700218 AKEY_EVENT_FLAG_TRACKING = 0x200
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700219};
220
221/*
222 * Motion event actions.
223 */
224
225/* Bit shift for the action bits holding the pointer index as
Jeff Brownc5ed5912010-07-14 18:48:53 -0700226 * defined by AMOTION_EVENT_ACTION_POINTER_INDEX_MASK.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700227 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700228#define AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT 8
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700229
230enum {
231 /* Bit mask of the parts of the action code that are the action itself.
232 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700233 AMOTION_EVENT_ACTION_MASK = 0xff,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700234
235 /* Bits in the action code that represent a pointer index, used with
Jeff Brownc5ed5912010-07-14 18:48:53 -0700236 * AMOTION_EVENT_ACTION_POINTER_DOWN and AMOTION_EVENT_ACTION_POINTER_UP. Shifting
237 * down by AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT provides the actual pointer
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700238 * index where the data for the pointer going up or down can be found.
239 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700240 AMOTION_EVENT_ACTION_POINTER_INDEX_MASK = 0xff00,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700241
242 /* A pressed gesture has started, the motion contains the initial starting location.
243 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700244 AMOTION_EVENT_ACTION_DOWN = 0,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700245
246 /* A pressed gesture has finished, the motion contains the final release location
247 * as well as any intermediate points since the last down or move event.
248 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700249 AMOTION_EVENT_ACTION_UP = 1,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700250
Jeff Brownc5ed5912010-07-14 18:48:53 -0700251 /* A change has happened during a press gesture (between AMOTION_EVENT_ACTION_DOWN and
252 * AMOTION_EVENT_ACTION_UP). The motion contains the most recent point, as well as
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700253 * any intermediate points since the last down or move event.
254 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700255 AMOTION_EVENT_ACTION_MOVE = 2,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700256
257 /* The current gesture has been aborted.
258 * You will not receive any more points in it. You should treat this as
259 * an up event, but not perform any action that you normally would.
260 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700261 AMOTION_EVENT_ACTION_CANCEL = 3,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700262
263 /* A movement has happened outside of the normal bounds of the UI element.
264 * This does not provide a full gesture, but only the initial location of the movement/touch.
265 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700266 AMOTION_EVENT_ACTION_OUTSIDE = 4,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700267
268 /* A non-primary pointer has gone down.
Jeff Brownc5ed5912010-07-14 18:48:53 -0700269 * The bits in AMOTION_EVENT_ACTION_POINTER_INDEX_MASK indicate which pointer changed.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700270 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700271 AMOTION_EVENT_ACTION_POINTER_DOWN = 5,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700272
273 /* A non-primary pointer has gone up.
Jeff Brownc5ed5912010-07-14 18:48:53 -0700274 * The bits in AMOTION_EVENT_ACTION_POINTER_INDEX_MASK indicate which pointer changed.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700275 */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700276 AMOTION_EVENT_ACTION_POINTER_UP = 6
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700277};
278
279/*
Jeff Brown85a31762010-09-01 17:01:00 -0700280 * Motion event flags.
281 */
282enum {
283 /* This flag indicates that the window that received this motion event is partly
284 * or wholly obscured by another visible window above it. This flag is set to true
285 * even if the event did not directly pass through the obscured area.
286 * A security sensitive application can check this flag to identify situations in which
287 * a malicious application may have covered up part of its content for the purpose
288 * of misleading the user or hijacking touches. An appropriate response might be
289 * to drop the suspect touches or to take additional precautions to confirm the user's
290 * actual intent.
291 */
292 AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED = 0x1,
293};
294
295/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700296 * Motion event edge touch flags.
297 */
298enum {
299 /* No edges intersected */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700300 AMOTION_EVENT_EDGE_FLAG_NONE = 0,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700301
302 /* Flag indicating the motion event intersected the top edge of the screen. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700303 AMOTION_EVENT_EDGE_FLAG_TOP = 0x01,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700304
305 /* Flag indicating the motion event intersected the bottom edge of the screen. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700306 AMOTION_EVENT_EDGE_FLAG_BOTTOM = 0x02,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700307
308 /* Flag indicating the motion event intersected the left edge of the screen. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700309 AMOTION_EVENT_EDGE_FLAG_LEFT = 0x04,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700310
311 /* Flag indicating the motion event intersected the right edge of the screen. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700312 AMOTION_EVENT_EDGE_FLAG_RIGHT = 0x08
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700313};
314
315/*
Jeff Brownc5ed5912010-07-14 18:48:53 -0700316 * Input sources.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700317 *
Jeff Brownc5ed5912010-07-14 18:48:53 -0700318 * Refer to the documentation on android.view.InputDevice for more details about input sources
319 * and their correct interpretation.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700320 */
321enum {
Jeff Brownc5ed5912010-07-14 18:48:53 -0700322 AINPUT_SOURCE_CLASS_MASK = 0x000000ff,
323
324 AINPUT_SOURCE_CLASS_BUTTON = 0x00000001,
325 AINPUT_SOURCE_CLASS_POINTER = 0x00000002,
326 AINPUT_SOURCE_CLASS_NAVIGATION = 0x00000004,
327 AINPUT_SOURCE_CLASS_POSITION = 0x00000008,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700328};
329
330enum {
331 AINPUT_SOURCE_UNKNOWN = 0x00000000,
332
333 AINPUT_SOURCE_KEYBOARD = 0x00000100 | AINPUT_SOURCE_CLASS_BUTTON,
334 AINPUT_SOURCE_DPAD = 0x00000200 | AINPUT_SOURCE_CLASS_BUTTON,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700335 AINPUT_SOURCE_TOUCHSCREEN = 0x00001000 | AINPUT_SOURCE_CLASS_POINTER,
336 AINPUT_SOURCE_MOUSE = 0x00002000 | AINPUT_SOURCE_CLASS_POINTER,
337 AINPUT_SOURCE_TRACKBALL = 0x00010000 | AINPUT_SOURCE_CLASS_NAVIGATION,
338 AINPUT_SOURCE_TOUCHPAD = 0x00100000 | AINPUT_SOURCE_CLASS_POSITION,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700339};
340
341/*
Jeff Brown6d0fec22010-07-23 21:28:06 -0700342 * Keyboard types.
343 *
344 * Refer to the documentation on android.view.InputDevice for more details.
345 */
346enum {
347 AINPUT_KEYBOARD_TYPE_NONE = 0,
348 AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC = 1,
349 AINPUT_KEYBOARD_TYPE_ALPHABETIC = 2,
350};
351
352/*
353 * Constants used to retrieve information about the range of motion for a particular
354 * coordinate of a motion event.
355 *
356 * Refer to the documentation on android.view.InputDevice for more details about input sources
357 * and their correct interpretation.
358 */
359enum {
360 AINPUT_MOTION_RANGE_X = 0,
361 AINPUT_MOTION_RANGE_Y = 1,
362 AINPUT_MOTION_RANGE_PRESSURE = 2,
363 AINPUT_MOTION_RANGE_SIZE = 3,
364 AINPUT_MOTION_RANGE_TOUCH_MAJOR = 4,
365 AINPUT_MOTION_RANGE_TOUCH_MINOR = 5,
366 AINPUT_MOTION_RANGE_TOOL_MAJOR = 6,
367 AINPUT_MOTION_RANGE_TOOL_MINOR = 7,
368 AINPUT_MOTION_RANGE_ORIENTATION = 8,
369};
370
371
372/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700373 * Input event accessors.
374 *
375 * Note that most functions can only be used on input events that are of a given type.
376 * Calling these functions on input events of other types will yield undefined behavior.
377 */
378
379/*** Accessors for all input events. ***/
380
381/* Get the input event type. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700382int32_t AInputEvent_getType(const AInputEvent* event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700383
384/* Get the id for the device that an input event came from.
385 *
386 * Input events can be generated by multiple different input devices.
387 * Use the input device id to obtain information about the input
388 * device that was responsible for generating a particular event.
389 *
390 * An input device id of 0 indicates that the event didn't come from a physical device;
391 * other numbers are arbitrary and you shouldn't depend on the values.
392 * Use the provided input device query API to obtain information about input devices.
393 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700394int32_t AInputEvent_getDeviceId(const AInputEvent* event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700395
Jeff Brownc5ed5912010-07-14 18:48:53 -0700396/* Get the input event source. */
397int32_t AInputEvent_getSource(const AInputEvent* event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700398
399/*** Accessors for key events only. ***/
400
401/* Get the key event action. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700402int32_t AKeyEvent_getAction(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700403
404/* Get the key event flags. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700405int32_t AKeyEvent_getFlags(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700406
407/* Get the key code of the key event.
408 * This is the physical key that was pressed, not the Unicode character. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700409int32_t AKeyEvent_getKeyCode(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700410
411/* Get the hardware key id of this key event.
412 * These values are not reliable and vary from device to device. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700413int32_t AKeyEvent_getScanCode(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700414
415/* Get the meta key state. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700416int32_t AKeyEvent_getMetaState(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700417
418/* Get the repeat count of the event.
419 * For both key up an key down events, this is the number of times the key has
420 * repeated with the first down starting at 0 and counting up from there. For
421 * multiple key events, this is the number of down/up pairs that have occurred. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700422int32_t AKeyEvent_getRepeatCount(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700423
424/* Get the time of the most recent key down event, in the
425 * java.lang.System.nanoTime() time base. If this is a down event,
426 * this will be the same as eventTime.
427 * Note that when chording keys, this value is the down time of the most recently
428 * pressed key, which may not be the same physical key of this event. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700429int64_t AKeyEvent_getDownTime(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700430
431/* Get the time this event occurred, in the
432 * java.lang.System.nanoTime() time base. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700433int64_t AKeyEvent_getEventTime(const AInputEvent* key_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700434
435/*** Accessors for motion events only. ***/
436
437/* Get the combined motion event action code and pointer index. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700438int32_t AMotionEvent_getAction(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700439
Jeff Brown85a31762010-09-01 17:01:00 -0700440/* Get the motion event flags. */
441int32_t AMotionEvent_getFlags(const AInputEvent* motion_event);
442
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700443/* Get the state of any meta / modifier keys that were in effect when the
444 * event was generated. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700445int32_t AMotionEvent_getMetaState(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700446
447/* Get a bitfield indicating which edges, if any, were touched by this motion event.
448 * For touch events, clients can use this to determine if the user's finger was
449 * touching the edge of the display. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700450int32_t AMotionEvent_getEdgeFlags(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700451
452/* Get the time when the user originally pressed down to start a stream of
453 * position events, in the java.lang.System.nanoTime() time base. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700454int64_t AMotionEvent_getDownTime(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700455
456/* Get the time when this specific event was generated,
457 * in the java.lang.System.nanoTime() time base. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700458int64_t AMotionEvent_getEventTime(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700459
Jeff Brown5c225b12010-06-16 01:53:36 -0700460/* Get the X coordinate offset.
461 * For touch events on the screen, this is the delta that was added to the raw
462 * screen coordinates to adjust for the absolute position of the containing windows
463 * and views. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700464float AMotionEvent_getXOffset(const AInputEvent* motion_event);
Jeff Brown5c225b12010-06-16 01:53:36 -0700465
466/* Get the precision of the Y coordinates being reported.
467 * For touch events on the screen, this is the delta that was added to the raw
468 * screen coordinates to adjust for the absolute position of the containing windows
469 * and views. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700470float AMotionEvent_getYOffset(const AInputEvent* motion_event);
Jeff Brown5c225b12010-06-16 01:53:36 -0700471
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700472/* Get the precision of the X coordinates being reported.
473 * You can multiply this number with an X coordinate sample to find the
474 * actual hardware value of the X coordinate. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700475float AMotionEvent_getXPrecision(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700476
477/* Get the precision of the Y coordinates being reported.
478 * You can multiply this number with a Y coordinate sample to find the
479 * actual hardware value of the Y coordinate. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700480float AMotionEvent_getYPrecision(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700481
482/* Get the number of pointers of data contained in this event.
483 * Always >= 1. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700484size_t AMotionEvent_getPointerCount(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700485
486/* Get the pointer identifier associated with a particular pointer
487 * data index is this event. The identifier tells you the actual pointer
488 * number associated with the data, accounting for individual pointers
489 * going up and down since the start of the current gesture. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700490int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700491
Jeff Brown5c225b12010-06-16 01:53:36 -0700492/* Get the original raw X coordinate of this event.
493 * For touch events on the screen, this is the original location of the event
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700494 * on the screen, before it had been adjusted for the containing window
495 * and views. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700496float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700497
Jeff Brown5c225b12010-06-16 01:53:36 -0700498/* Get the original raw X coordinate of this event.
499 * For touch events on the screen, this is the original location of the event
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700500 * on the screen, before it had been adjusted for the containing window
501 * and views. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700502float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700503
504/* Get the current X coordinate of this event for the given pointer index.
505 * Whole numbers are pixels; the value may have a fraction for input devices
506 * that are sub-pixel precise. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700507float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700508
509/* Get the current Y coordinate of this event for the given pointer index.
510 * Whole numbers are pixels; the value may have a fraction for input devices
511 * that are sub-pixel precise. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700512float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700513
514/* Get the current pressure of this event for the given pointer index.
515 * The pressure generally ranges from 0 (no pressure at all) to 1 (normal pressure),
516 * however values higher than 1 may be generated depending on the calibration of
517 * the input device. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700518float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700519
520/* Get the current scaled value of the approximate size for the given pointer index.
521 * This represents some approximation of the area of the screen being
522 * pressed; the actual value in pixels corresponding to the
523 * touch is normalized with the device specific range of values
524 * and scaled to a value between 0 and 1. The value of size can be used to
525 * determine fat touch events. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700526float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700527
Jeff Brownc5ed5912010-07-14 18:48:53 -0700528/* Get the current length of the major axis of an ellipse that describes the touch area
529 * at the point of contact for the given pointer index. */
530float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index);
531
532/* Get the current length of the minor axis of an ellipse that describes the touch area
533 * at the point of contact for the given pointer index. */
534float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index);
535
536/* Get the current length of the major axis of an ellipse that describes the size
537 * of the approaching tool for the given pointer index.
538 * The tool area represents the estimated size of the finger or pen that is
539 * touching the device independent of its actual touch area at the point of contact. */
540float AMotionEvent_getToolMajor(const AInputEvent* motion_event, size_t pointer_index);
541
542/* Get the current length of the minor axis of an ellipse that describes the size
543 * of the approaching tool for the given pointer index.
544 * The tool area represents the estimated size of the finger or pen that is
545 * touching the device independent of its actual touch area at the point of contact. */
546float AMotionEvent_getToolMinor(const AInputEvent* motion_event, size_t pointer_index);
547
548/* Get the current orientation of the touch area and tool area in radians clockwise from
549 * vertical for the given pointer index.
550 * An angle of 0 degrees indicates that the major axis of contact is oriented
551 * upwards, is perfectly circular or is of unknown orientation. A positive angle
552 * indicates that the major axis of contact is oriented to the right. A negative angle
553 * indicates that the major axis of contact is oriented to the left.
Jeff Brown6d0fec22010-07-23 21:28:06 -0700554 * The full range is from -PI/2 radians (finger pointing fully left) to PI/2 radians
Jeff Brownc5ed5912010-07-14 18:48:53 -0700555 * (finger pointing fully right). */
556float AMotionEvent_getOrientation(const AInputEvent* motion_event, size_t pointer_index);
557
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700558/* Get the number of historical points in this event. These are movements that
559 * have occurred between this event and the previous event. This only applies
Jeff Brownc5ed5912010-07-14 18:48:53 -0700560 * to AMOTION_EVENT_ACTION_MOVE events -- all other actions will have a size of 0.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700561 * Historical samples are indexed from oldest to newest. */
Jeff Brownc5ed5912010-07-14 18:48:53 -0700562size_t AMotionEvent_getHistorySize(const AInputEvent* motion_event);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700563
564/* Get the time that a historical movement occurred between this event and
565 * the previous event, in the java.lang.System.nanoTime() time base. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700566int64_t AMotionEvent_getHistoricalEventTime(AInputEvent* motion_event,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700567 size_t history_index);
568
Jeff Brown5c225b12010-06-16 01:53:36 -0700569/* Get the historical raw X coordinate of this event for the given pointer index that
570 * occurred between this event and the previous motion event.
571 * For touch events on the screen, this is the original location of the event
572 * on the screen, before it had been adjusted for the containing window
573 * and views.
574 * Whole numbers are pixels; the value may have a fraction for input devices
575 * that are sub-pixel precise. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700576float AMotionEvent_getHistoricalRawX(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown5c225b12010-06-16 01:53:36 -0700577
578/* Get the historical raw Y coordinate of this event for the given pointer index that
579 * occurred between this event and the previous motion event.
580 * For touch events on the screen, this is the original location of the event
581 * on the screen, before it had been adjusted for the containing window
582 * and views.
583 * Whole numbers are pixels; the value may have a fraction for input devices
584 * that are sub-pixel precise. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700585float AMotionEvent_getHistoricalRawY(const AInputEvent* motion_event, size_t pointer_index);
Jeff Brown5c225b12010-06-16 01:53:36 -0700586
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700587/* Get the historical X coordinate of this event for the given pointer index that
588 * occurred between this event and the previous motion event.
589 * Whole numbers are pixels; the value may have a fraction for input devices
590 * that are sub-pixel precise. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700591float AMotionEvent_getHistoricalX(AInputEvent* motion_event, size_t pointer_index,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700592 size_t history_index);
593
594/* Get the historical Y coordinate of this event for the given pointer index that
595 * occurred between this event and the previous motion event.
596 * Whole numbers are pixels; the value may have a fraction for input devices
597 * that are sub-pixel precise. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700598float AMotionEvent_getHistoricalY(AInputEvent* motion_event, size_t pointer_index,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700599 size_t history_index);
600
601/* Get the historical pressure of this event for the given pointer index that
602 * occurred between this event and the previous motion event.
603 * The pressure generally ranges from 0 (no pressure at all) to 1 (normal pressure),
604 * however values higher than 1 may be generated depending on the calibration of
605 * the input device. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700606float AMotionEvent_getHistoricalPressure(AInputEvent* motion_event, size_t pointer_index,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700607 size_t history_index);
608
609/* Get the current scaled value of the approximate size for the given pointer index that
610 * occurred between this event and the previous motion event.
611 * This represents some approximation of the area of the screen being
612 * pressed; the actual value in pixels corresponding to the
613 * touch is normalized with the device specific range of values
614 * and scaled to a value between 0 and 1. The value of size can be used to
615 * determine fat touch events. */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700616float AMotionEvent_getHistoricalSize(AInputEvent* motion_event, size_t pointer_index,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700617 size_t history_index);
618
Jeff Brownc5ed5912010-07-14 18:48:53 -0700619/* Get the historical length of the major axis of an ellipse that describes the touch area
620 * at the point of contact for the given pointer index that
621 * occurred between this event and the previous motion event. */
622float AMotionEvent_getHistoricalTouchMajor(const AInputEvent* motion_event, size_t pointer_index,
623 size_t history_index);
624
625/* Get the historical length of the minor axis of an ellipse that describes the touch area
626 * at the point of contact for the given pointer index that
627 * occurred between this event and the previous motion event. */
628float AMotionEvent_getHistoricalTouchMinor(const AInputEvent* motion_event, size_t pointer_index,
629 size_t history_index);
630
631/* Get the historical length of the major axis of an ellipse that describes the size
632 * of the approaching tool for the given pointer index that
633 * occurred between this event and the previous motion event.
634 * The tool area represents the estimated size of the finger or pen that is
635 * touching the device independent of its actual touch area at the point of contact. */
636float AMotionEvent_getHistoricalToolMajor(const AInputEvent* motion_event, size_t pointer_index,
637 size_t history_index);
638
639/* Get the historical length of the minor axis of an ellipse that describes the size
640 * of the approaching tool for the given pointer index that
641 * occurred between this event and the previous motion event.
642 * The tool area represents the estimated size of the finger or pen that is
643 * touching the device independent of its actual touch area at the point of contact. */
644float AMotionEvent_getHistoricalToolMinor(const AInputEvent* motion_event, size_t pointer_index,
645 size_t history_index);
646
647/* Get the historical orientation of the touch area and tool area in radians clockwise from
648 * vertical for the given pointer index that
649 * occurred between this event and the previous motion event.
650 * An angle of 0 degrees indicates that the major axis of contact is oriented
651 * upwards, is perfectly circular or is of unknown orientation. A positive angle
652 * indicates that the major axis of contact is oriented to the right. A negative angle
653 * indicates that the major axis of contact is oriented to the left.
Jeff Brown6d0fec22010-07-23 21:28:06 -0700654 * The full range is from -PI/2 radians (finger pointing fully left) to PI/2 radians
Jeff Brownc5ed5912010-07-14 18:48:53 -0700655 * (finger pointing fully right). */
656float AMotionEvent_getHistoricalOrientation(const AInputEvent* motion_event, size_t pointer_index,
657 size_t history_index);
658
659
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700660/*
661 * Input queue
662 *
663 * An input queue is the facility through which you retrieve input
664 * events.
665 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700666struct AInputQueue;
667typedef struct AInputQueue AInputQueue;
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700668
669/*
Dianne Hackborn85448bb2010-07-07 14:27:31 -0700670 * Add this input queue to a looper for processing. See
Dianne Hackborn42c03e52010-09-07 15:28:30 -0700671 * ALooper_addFd() for information on the ident, callback, and data params.
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700672 */
Dianne Hackborn68267412010-07-02 18:52:01 -0700673void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
Jeff Brown4fe6c3e2010-09-13 23:17:30 -0700674 int ident, ALooper_callbackFunc callback, void* data);
Dianne Hackborn68267412010-07-02 18:52:01 -0700675
676/*
677 * Remove the input queue from the looper it is currently attached to.
678 */
679void AInputQueue_detachLooper(AInputQueue* queue);
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700680
681/*
682 * Returns true if there are one or more events available in the
683 * input queue. Returns 1 if the queue has events; 0 if
684 * it does not have events; and a negative value if there is an error.
685 */
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700686int32_t AInputQueue_hasEvents(AInputQueue* queue);
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700687
688/*
689 * Returns the next available event from the queue. Returns a negative
690 * value if no events are available or an error has occurred.
691 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700692int32_t AInputQueue_getEvent(AInputQueue* queue, AInputEvent** outEvent);
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700693
694/*
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700695 * Sends the key for standard pre-dispatching -- that is, possibly deliver
696 * it to the current IME to be consumed before the app. Returns 0 if it
697 * was not pre-dispatched, meaning you can process it right now. If non-zero
698 * is returned, you must abandon the current event processing and allow the
699 * event to appear again in the event queue (if it does not get consumed during
700 * pre-dispatching).
701 */
702int32_t AInputQueue_preDispatchEvent(AInputQueue* queue, AInputEvent* event);
703
704/*
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700705 * Report that dispatching has finished with the given event.
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700706 * This must be called after receiving an event with AInputQueue_get_event().
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700707 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700708void AInputQueue_finishEvent(AInputQueue* queue, AInputEvent* event, int handled);
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700709
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700710#ifdef __cplusplus
711}
712#endif
713
714#endif // _ANDROID_INPUT_H