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