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