Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1 | /* |
| 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 Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 26 | #include <utils/KeyedVector.h> |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 27 | #include <utils/Timers.h> |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 28 | #include <utils/RefBase.h> |
| 29 | #include <utils/String8.h> |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 30 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 31 | #ifdef HAVE_ANDROID_OS |
| 32 | class SkMatrix; |
| 33 | #endif |
| 34 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 35 | /* |
| 36 | * Additional private constants not defined in ndk/ui/input.h. |
| 37 | */ |
| 38 | enum { |
| 39 | /* |
| 40 | * Private control to determine when an app is tracking a key sequence. |
| 41 | */ |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 42 | AKEY_EVENT_FLAG_START_TRACKING = 0x40000000 |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
Jeff Brown | 430c21e | 2011-01-19 18:41:38 -0800 | [diff] [blame] | 45 | enum { |
| 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 Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 54 | /* |
Jeff Brown | 80f3e7c | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 55 | * SystemUiVisibility constants from View. |
| 56 | */ |
| 57 | enum { |
| 58 | ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0, |
| 59 | ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001, |
| 60 | }; |
| 61 | |
| 62 | /* |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 63 | * Maximum number of pointers supported per motion event. |
Jeff Brown | d1b0a2b | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 64 | * Smallest number of pointers is 1. |
Jeff Brown | eb8b9d8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 65 | * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers |
| 66 | * will occasionally emit 11. There is not much harm making this constant bigger.) |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 67 | */ |
Jeff Brown | eb8b9d8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 68 | #define MAX_POINTERS 16 |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 69 | |
Dianne Hackborn | 4d96bb6 | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 70 | /* |
Jeff Brown | d1b0a2b | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 71 | * Maximum pointer id value supported in a motion event. |
| 72 | * Smallest pointer id is 0. |
| 73 | * (This is limited by our use of BitSet32 to track pointer assignments.) |
| 74 | */ |
| 75 | #define MAX_POINTER_ID 31 |
| 76 | |
| 77 | /* |
Dianne Hackborn | 4d96bb6 | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 78 | * Declare a concrete type for the NDK's input event forward declaration. |
| 79 | */ |
Dianne Hackborn | ce838a2 | 2010-07-13 17:48:30 -0700 | [diff] [blame] | 80 | struct AInputEvent { |
| 81 | virtual ~AInputEvent() { } |
| 82 | }; |
Dianne Hackborn | 4d96bb6 | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 83 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 84 | /* |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 85 | * Declare a concrete type for the NDK's input device forward declaration. |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 86 | */ |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 87 | struct AInputDevice { |
| 88 | virtual ~AInputDevice() { } |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 89 | }; |
| 90 | |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 91 | |
| 92 | namespace android { |
| 93 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 94 | #ifdef HAVE_ANDROID_OS |
| 95 | class Parcel; |
| 96 | #endif |
| 97 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 98 | /* |
| 99 | * Flags that flow alongside events in the input dispatch system to help with certain |
| 100 | * policy decisions such as waking from device sleep. |
Jeff Brown | 90f0cee | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 101 | * |
| 102 | * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java. |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 103 | */ |
| 104 | enum { |
Jeff Brown | 956c0fb | 2010-10-01 14:55:30 -0700 | [diff] [blame] | 105 | /* These flags originate in RawEvents and are generally set in the key map. |
Jeff Brown | 6a817e2 | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 106 | * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */ |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 107 | |
| 108 | POLICY_FLAG_WAKE = 0x00000001, |
| 109 | POLICY_FLAG_WAKE_DROPPED = 0x00000002, |
| 110 | POLICY_FLAG_SHIFT = 0x00000004, |
| 111 | POLICY_FLAG_CAPS_LOCK = 0x00000008, |
| 112 | POLICY_FLAG_ALT = 0x00000010, |
| 113 | POLICY_FLAG_ALT_GR = 0x00000020, |
| 114 | POLICY_FLAG_MENU = 0x00000040, |
| 115 | POLICY_FLAG_LAUNCHER = 0x00000080, |
Jeff Brown | 956c0fb | 2010-10-01 14:55:30 -0700 | [diff] [blame] | 116 | POLICY_FLAG_VIRTUAL = 0x00000100, |
Jeff Brown | 6a817e2 | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 117 | POLICY_FLAG_FUNCTION = 0x00000200, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 118 | |
Jeff Brown | 51d45a7 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 119 | POLICY_FLAG_RAW_MASK = 0x0000ffff, |
| 120 | |
Jeff Brown | af30ff6 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 121 | /* These flags are set by the input dispatcher. */ |
| 122 | |
| 123 | // Indicates that the input event was injected. |
| 124 | POLICY_FLAG_INJECTED = 0x01000000, |
| 125 | |
Jeff Brown | 33d54ce | 2010-10-11 14:20:19 -0700 | [diff] [blame] | 126 | // Indicates that the input event is from a trusted source such as a directly attached |
| 127 | // input device or an application with system-wide event injection permission. |
| 128 | POLICY_FLAG_TRUSTED = 0x02000000, |
| 129 | |
Jeff Brown | 54bc281 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 130 | /* These flags are set by the input reader policy as it intercepts each event. */ |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 131 | |
| 132 | // Indicates that the screen was off when the event was received and the event |
| 133 | // should wake the device. |
| 134 | POLICY_FLAG_WOKE_HERE = 0x10000000, |
| 135 | |
| 136 | // Indicates that the screen was dim when the event was received and the event |
| 137 | // should brighten the device. |
| 138 | POLICY_FLAG_BRIGHT_HERE = 0x20000000, |
Jeff Brown | 90f0cee | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 139 | |
| 140 | // Indicates that the event should be dispatched to applications. |
| 141 | // The input event should still be sent to the InputDispatcher so that it can see all |
| 142 | // input events received include those that it will not deliver. |
| 143 | POLICY_FLAG_PASS_TO_USER = 0x40000000, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | /* |
Jeff Brown | 54bc281 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 147 | * Describes the basic configuration of input devices that are present. |
| 148 | */ |
| 149 | struct InputConfiguration { |
| 150 | enum { |
| 151 | TOUCHSCREEN_UNDEFINED = 0, |
| 152 | TOUCHSCREEN_NOTOUCH = 1, |
| 153 | TOUCHSCREEN_STYLUS = 2, |
| 154 | TOUCHSCREEN_FINGER = 3 |
| 155 | }; |
| 156 | |
| 157 | enum { |
| 158 | KEYBOARD_UNDEFINED = 0, |
| 159 | KEYBOARD_NOKEYS = 1, |
| 160 | KEYBOARD_QWERTY = 2, |
| 161 | KEYBOARD_12KEY = 3 |
| 162 | }; |
| 163 | |
| 164 | enum { |
| 165 | NAVIGATION_UNDEFINED = 0, |
| 166 | NAVIGATION_NONAV = 1, |
| 167 | NAVIGATION_DPAD = 2, |
| 168 | NAVIGATION_TRACKBALL = 3, |
| 169 | NAVIGATION_WHEEL = 4 |
| 170 | }; |
| 171 | |
| 172 | int32_t touchScreen; |
| 173 | int32_t keyboard; |
| 174 | int32_t navigation; |
| 175 | }; |
| 176 | |
| 177 | /* |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 178 | * Pointer coordinate data. |
| 179 | */ |
| 180 | struct PointerCoords { |
Jeff Brown | 3ea4de8 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 181 | enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64 |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 182 | |
| 183 | // Bitfield of axes that are present in this structure. |
Jeff Brown | 3ea4de8 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 184 | uint64_t bits; |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 185 | |
| 186 | // Values of axes that are stored in this structure packed in order by axis id |
| 187 | // for each axis that is present in the structure according to 'bits'. |
| 188 | float values[MAX_AXES]; |
| 189 | |
| 190 | inline void clear() { |
| 191 | bits = 0; |
| 192 | } |
| 193 | |
Jeff Brown | 3ea4de8 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 194 | float getAxisValue(int32_t axis) const; |
| 195 | status_t setAxisValue(int32_t axis, float value); |
| 196 | float* editAxisValue(int32_t axis); |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 197 | |
| 198 | #ifdef HAVE_ANDROID_OS |
| 199 | status_t readFromParcel(Parcel* parcel); |
| 200 | status_t writeToParcel(Parcel* parcel) const; |
| 201 | #endif |
| 202 | |
| 203 | private: |
| 204 | void tooManyAxes(int axis); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | /* |
| 208 | * Input events. |
| 209 | */ |
Dianne Hackborn | 9c7f818 | 2010-06-28 15:27:30 -0700 | [diff] [blame] | 210 | class InputEvent : public AInputEvent { |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 211 | public: |
| 212 | virtual ~InputEvent() { } |
| 213 | |
| 214 | virtual int32_t getType() const = 0; |
| 215 | |
| 216 | inline int32_t getDeviceId() const { return mDeviceId; } |
| 217 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 218 | inline int32_t getSource() const { return mSource; } |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 219 | |
| 220 | inline void setSource(int32_t source) { mSource = source; } |
| 221 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 222 | protected: |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 223 | void initialize(int32_t deviceId, int32_t source); |
Dianne Hackborn | 0e88527 | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 224 | void initialize(const InputEvent& from); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 225 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 226 | int32_t mDeviceId; |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 227 | int32_t mSource; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 228 | }; |
| 229 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 230 | /* |
| 231 | * Key events. |
| 232 | */ |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 233 | class KeyEvent : public InputEvent { |
| 234 | public: |
| 235 | virtual ~KeyEvent() { } |
| 236 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 237 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; } |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 238 | |
| 239 | inline int32_t getAction() const { return mAction; } |
| 240 | |
| 241 | inline int32_t getFlags() const { return mFlags; } |
| 242 | |
| 243 | inline int32_t getKeyCode() const { return mKeyCode; } |
| 244 | |
| 245 | inline int32_t getScanCode() const { return mScanCode; } |
| 246 | |
| 247 | inline int32_t getMetaState() const { return mMetaState; } |
| 248 | |
| 249 | inline int32_t getRepeatCount() const { return mRepeatCount; } |
| 250 | |
| 251 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 252 | |
| 253 | inline nsecs_t getEventTime() const { return mEventTime; } |
| 254 | |
Dianne Hackborn | 189ed23 | 2010-06-29 19:20:40 -0700 | [diff] [blame] | 255 | // Return true if this event may have a default action implementation. |
| 256 | static bool hasDefaultAction(int32_t keyCode); |
| 257 | bool hasDefaultAction() const; |
| 258 | |
| 259 | // Return true if this event represents a system key. |
| 260 | static bool isSystemKey(int32_t keyCode); |
| 261 | bool isSystemKey() const; |
| 262 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 263 | void initialize( |
| 264 | int32_t deviceId, |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 265 | int32_t source, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 266 | int32_t action, |
| 267 | int32_t flags, |
| 268 | int32_t keyCode, |
| 269 | int32_t scanCode, |
| 270 | int32_t metaState, |
| 271 | int32_t repeatCount, |
| 272 | nsecs_t downTime, |
| 273 | nsecs_t eventTime); |
Dianne Hackborn | 0e88527 | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 274 | void initialize(const KeyEvent& from); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 275 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 276 | protected: |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 277 | int32_t mAction; |
| 278 | int32_t mFlags; |
| 279 | int32_t mKeyCode; |
| 280 | int32_t mScanCode; |
| 281 | int32_t mMetaState; |
| 282 | int32_t mRepeatCount; |
| 283 | nsecs_t mDownTime; |
| 284 | nsecs_t mEventTime; |
| 285 | }; |
| 286 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 287 | /* |
| 288 | * Motion events. |
| 289 | */ |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 290 | class MotionEvent : public InputEvent { |
| 291 | public: |
| 292 | virtual ~MotionEvent() { } |
| 293 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 294 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; } |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 295 | |
| 296 | inline int32_t getAction() const { return mAction; } |
| 297 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 298 | inline void setAction(int32_t action) { mAction = action; } |
| 299 | |
Jeff Brown | af30ff6 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 300 | inline int32_t getFlags() const { return mFlags; } |
| 301 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 302 | inline int32_t getEdgeFlags() const { return mEdgeFlags; } |
| 303 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 304 | inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; } |
| 305 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 306 | inline int32_t getMetaState() const { return mMetaState; } |
| 307 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 308 | inline void setMetaState(int32_t metaState) { mMetaState = metaState; } |
| 309 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 310 | inline float getXOffset() const { return mXOffset; } |
| 311 | |
| 312 | inline float getYOffset() const { return mYOffset; } |
| 313 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 314 | inline float getXPrecision() const { return mXPrecision; } |
| 315 | |
| 316 | inline float getYPrecision() const { return mYPrecision; } |
| 317 | |
| 318 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 319 | |
| 320 | inline size_t getPointerCount() const { return mPointerIds.size(); } |
| 321 | |
| 322 | inline int32_t getPointerId(size_t pointerIndex) const { return mPointerIds[pointerIndex]; } |
| 323 | |
| 324 | inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; } |
| 325 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 326 | const PointerCoords* getRawPointerCoords(size_t pointerIndex) const; |
| 327 | |
| 328 | float getRawAxisValue(int32_t axis, size_t pointerIndex) const; |
| 329 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 330 | inline float getRawX(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 331 | return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 334 | inline float getRawY(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 335 | return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 338 | float getAxisValue(int32_t axis, size_t pointerIndex) const; |
| 339 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 340 | inline float getX(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 341 | return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | inline float getY(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 345 | return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 346 | } |
| 347 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 348 | inline float getPressure(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 349 | return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | inline float getSize(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 353 | return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 354 | } |
| 355 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 356 | inline float getTouchMajor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 357 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | inline float getTouchMinor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 361 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | inline float getToolMajor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 365 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | inline float getToolMinor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 369 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | inline float getOrientation(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 373 | return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 376 | inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; } |
| 377 | |
| 378 | inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const { |
| 379 | return mSampleEventTimes[historicalIndex]; |
| 380 | } |
| 381 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 382 | const PointerCoords* getHistoricalRawPointerCoords( |
| 383 | size_t pointerIndex, size_t historicalIndex) const; |
| 384 | |
| 385 | float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex, |
| 386 | size_t historicalIndex) const; |
| 387 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 388 | inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 389 | return getHistoricalRawAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 390 | AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 393 | inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 394 | return getHistoricalRawAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 395 | AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 398 | float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const; |
| 399 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 400 | inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 401 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 402 | AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 406 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 407 | AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 408 | } |
| 409 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 410 | inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 411 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 412 | AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 416 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 417 | AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 420 | inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 421 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 422 | AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 426 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 427 | AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 431 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 432 | AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 436 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 437 | AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 441 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 442 | AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 443 | } |
| 444 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 445 | void initialize( |
| 446 | int32_t deviceId, |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 447 | int32_t source, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 448 | int32_t action, |
Jeff Brown | af30ff6 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 449 | int32_t flags, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 450 | int32_t edgeFlags, |
| 451 | int32_t metaState, |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 452 | float xOffset, |
| 453 | float yOffset, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 454 | float xPrecision, |
| 455 | float yPrecision, |
| 456 | nsecs_t downTime, |
| 457 | nsecs_t eventTime, |
| 458 | size_t pointerCount, |
| 459 | const int32_t* pointerIds, |
| 460 | const PointerCoords* pointerCoords); |
| 461 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 462 | void copyFrom(const MotionEvent* other, bool keepHistory); |
| 463 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 464 | void addSample( |
| 465 | nsecs_t eventTime, |
| 466 | const PointerCoords* pointerCoords); |
| 467 | |
| 468 | void offsetLocation(float xOffset, float yOffset); |
| 469 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 470 | void scale(float scaleFactor); |
| 471 | |
| 472 | #ifdef HAVE_ANDROID_OS |
| 473 | void transform(const SkMatrix* matrix); |
| 474 | |
| 475 | status_t readFromParcel(Parcel* parcel); |
| 476 | status_t writeToParcel(Parcel* parcel) const; |
| 477 | #endif |
| 478 | |
Jeff Brown | d5ed285 | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 479 | static bool isTouchEvent(int32_t source, int32_t action); |
| 480 | inline bool isTouchEvent() const { |
| 481 | return isTouchEvent(mSource, mAction); |
| 482 | } |
| 483 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 484 | // Low-level accessors. |
| 485 | inline const int32_t* getPointerIds() const { return mPointerIds.array(); } |
| 486 | inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); } |
| 487 | inline const PointerCoords* getSamplePointerCoords() const { |
| 488 | return mSamplePointerCoords.array(); |
| 489 | } |
| 490 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 491 | protected: |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 492 | int32_t mAction; |
Jeff Brown | af30ff6 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 493 | int32_t mFlags; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 494 | int32_t mEdgeFlags; |
| 495 | int32_t mMetaState; |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 496 | float mXOffset; |
| 497 | float mYOffset; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 498 | float mXPrecision; |
| 499 | float mYPrecision; |
| 500 | nsecs_t mDownTime; |
| 501 | Vector<int32_t> mPointerIds; |
| 502 | Vector<nsecs_t> mSampleEventTimes; |
| 503 | Vector<PointerCoords> mSamplePointerCoords; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 504 | }; |
| 505 | |
| 506 | /* |
| 507 | * Input event factory. |
| 508 | */ |
| 509 | class InputEventFactoryInterface { |
| 510 | protected: |
| 511 | virtual ~InputEventFactoryInterface() { } |
| 512 | |
| 513 | public: |
| 514 | InputEventFactoryInterface() { } |
| 515 | |
| 516 | virtual KeyEvent* createKeyEvent() = 0; |
| 517 | virtual MotionEvent* createMotionEvent() = 0; |
| 518 | }; |
| 519 | |
| 520 | /* |
| 521 | * A simple input event factory implementation that uses a single preallocated instance |
| 522 | * of each type of input event that are reused for each request. |
| 523 | */ |
| 524 | class PreallocatedInputEventFactory : public InputEventFactoryInterface { |
| 525 | public: |
| 526 | PreallocatedInputEventFactory() { } |
| 527 | virtual ~PreallocatedInputEventFactory() { } |
| 528 | |
| 529 | virtual KeyEvent* createKeyEvent() { return & mKeyEvent; } |
| 530 | virtual MotionEvent* createMotionEvent() { return & mMotionEvent; } |
| 531 | |
| 532 | private: |
| 533 | KeyEvent mKeyEvent; |
| 534 | MotionEvent mMotionEvent; |
| 535 | }; |
| 536 | |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 537 | /* |
| 538 | * Describes the characteristics and capabilities of an input device. |
| 539 | */ |
| 540 | class InputDeviceInfo { |
| 541 | public: |
| 542 | InputDeviceInfo(); |
| 543 | InputDeviceInfo(const InputDeviceInfo& other); |
| 544 | ~InputDeviceInfo(); |
| 545 | |
| 546 | struct MotionRange { |
| 547 | float min; |
| 548 | float max; |
| 549 | float flat; |
| 550 | float fuzz; |
| 551 | }; |
| 552 | |
| 553 | void initialize(int32_t id, const String8& name); |
| 554 | |
| 555 | inline int32_t getId() const { return mId; } |
| 556 | inline const String8 getName() const { return mName; } |
| 557 | inline uint32_t getSources() const { return mSources; } |
| 558 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 559 | const MotionRange* getMotionRange(int32_t axis) const; |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 560 | |
| 561 | void addSource(uint32_t source); |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 562 | void addMotionRange(int32_t axis, float min, float max, float flat, float fuzz); |
| 563 | void addMotionRange(int32_t axis, const MotionRange& range); |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 564 | |
| 565 | inline void setKeyboardType(int32_t keyboardType) { mKeyboardType = keyboardType; } |
| 566 | inline int32_t getKeyboardType() const { return mKeyboardType; } |
| 567 | |
Jeff Brown | 38a7fab | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 568 | inline const KeyedVector<int32_t, MotionRange> getMotionRanges() const { |
| 569 | return mMotionRanges; |
| 570 | } |
| 571 | |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 572 | private: |
| 573 | int32_t mId; |
| 574 | String8 mName; |
| 575 | uint32_t mSources; |
| 576 | int32_t mKeyboardType; |
| 577 | |
| 578 | KeyedVector<int32_t, MotionRange> mMotionRanges; |
| 579 | }; |
| 580 | |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 581 | /* |
| 582 | * Identifies a device. |
| 583 | */ |
| 584 | struct InputDeviceIdentifier { |
| 585 | inline InputDeviceIdentifier() : |
| 586 | bus(0), vendor(0), product(0), version(0) { |
| 587 | } |
| 588 | |
| 589 | String8 name; |
| 590 | String8 location; |
| 591 | String8 uniqueId; |
| 592 | uint16_t bus; |
| 593 | uint16_t vendor; |
| 594 | uint16_t product; |
| 595 | uint16_t version; |
| 596 | }; |
| 597 | |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 598 | /* Types of input device configuration files. */ |
| 599 | enum InputDeviceConfigurationFileType { |
| 600 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION = 0, /* .idc file */ |
| 601 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_LAYOUT = 1, /* .kl file */ |
| 602 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_CHARACTER_MAP = 2, /* .kcm file */ |
| 603 | }; |
| 604 | |
| 605 | /* |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 606 | * Gets the path of an input device configuration file, if one is available. |
Jeff Brown | 53c1664 | 2010-11-18 20:53:46 -0800 | [diff] [blame] | 607 | * Considers both system provided and user installed configuration files. |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 608 | * |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 609 | * The device identifier is used to construct several default configuration file |
| 610 | * names to try based on the device name, vendor, product, and version. |
| 611 | * |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 612 | * Returns an empty string if not found. |
| 613 | */ |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 614 | extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier( |
| 615 | const InputDeviceIdentifier& deviceIdentifier, |
| 616 | InputDeviceConfigurationFileType type); |
| 617 | |
| 618 | /* |
| 619 | * Gets the path of an input device configuration file, if one is available. |
| 620 | * Considers both system provided and user installed configuration files. |
| 621 | * |
| 622 | * The name is case-sensitive and is used to construct the filename to resolve. |
| 623 | * All characters except 'a'-'z', 'A'-'Z', '0'-'9', '-', and '_' are replaced by underscores. |
| 624 | * |
| 625 | * Returns an empty string if not found. |
| 626 | */ |
| 627 | extern String8 getInputDeviceConfigurationFilePathByName( |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 628 | const String8& name, InputDeviceConfigurationFileType type); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 629 | |
| 630 | } // namespace android |
| 631 | |
| 632 | #endif // _UI_INPUT_H |