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