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 | |
Mathias Agopian | b93a03f8 | 2012-02-17 15:34:57 -0800 | [diff] [blame] | 17 | #ifndef _ANDROIDFW_INPUT_H |
| 18 | #define _ANDROIDFW_INPUT_H |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 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 | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 30 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 31 | #ifdef HAVE_ANDROID_OS |
| 32 | class SkMatrix; |
| 33 | #endif |
| 34 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 35 | /* |
| 36 | * Additional private constants not defined in ndk/ui/input.h. |
| 37 | */ |
| 38 | enum { |
Jeff Brown | 21bc5c9 | 2011-02-28 18:27:14 -0800 | [diff] [blame] | 39 | /* Private control to determine when an app is tracking a key sequence. */ |
| 40 | AKEY_EVENT_FLAG_START_TRACKING = 0x40000000, |
| 41 | |
| 42 | /* Key event is inconsistent with previously sent key events. */ |
| 43 | AKEY_EVENT_FLAG_TAINTED = 0x80000000, |
| 44 | }; |
| 45 | |
| 46 | enum { |
| 47 | /* Motion event is inconsistent with previously sent motion events. */ |
| 48 | AMOTION_EVENT_FLAG_TAINTED = 0x80000000, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 49 | }; |
| 50 | |
Jeff Brown | 89de57a | 2011-01-19 18:41:38 -0800 | [diff] [blame] | 51 | enum { |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame^] | 52 | /* Used when a motion event is not associated with any display. |
| 53 | * Typically used for non-pointer events. */ |
| 54 | ADISPLAY_ID_NONE = -1, |
| 55 | |
| 56 | /* The default display id. */ |
| 57 | ADISPLAY_ID_DEFAULT = 0, |
| 58 | }; |
| 59 | |
| 60 | enum { |
Jeff Brown | 89de57a | 2011-01-19 18:41:38 -0800 | [diff] [blame] | 61 | /* |
| 62 | * Indicates that an input device has switches. |
| 63 | * This input source flag is hidden from the API because switches are only used by the system |
| 64 | * and applications have no way to interact with them. |
| 65 | */ |
| 66 | AINPUT_SOURCE_SWITCH = 0x80000000, |
| 67 | }; |
| 68 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 69 | /* |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 70 | * SystemUiVisibility constants from View. |
| 71 | */ |
| 72 | enum { |
| 73 | ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0, |
| 74 | ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001, |
| 75 | }; |
| 76 | |
| 77 | /* |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 78 | * Maximum number of pointers supported per motion event. |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 79 | * Smallest number of pointers is 1. |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 80 | * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers |
| 81 | * 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] | 82 | */ |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 83 | #define MAX_POINTERS 16 |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 84 | |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 85 | /* |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 86 | * Maximum pointer id value supported in a motion event. |
| 87 | * Smallest pointer id is 0. |
| 88 | * (This is limited by our use of BitSet32 to track pointer assignments.) |
| 89 | */ |
| 90 | #define MAX_POINTER_ID 31 |
| 91 | |
| 92 | /* |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 93 | * Declare a concrete type for the NDK's input event forward declaration. |
| 94 | */ |
Dianne Hackborn | d76b67c | 2010-07-13 17:48:30 -0700 | [diff] [blame] | 95 | struct AInputEvent { |
| 96 | virtual ~AInputEvent() { } |
| 97 | }; |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 98 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 99 | /* |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 100 | * Declare a concrete type for the NDK's input device forward declaration. |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 101 | */ |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 102 | struct AInputDevice { |
| 103 | virtual ~AInputDevice() { } |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 104 | }; |
| 105 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 106 | |
| 107 | namespace android { |
| 108 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 109 | #ifdef HAVE_ANDROID_OS |
| 110 | class Parcel; |
| 111 | #endif |
| 112 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 113 | /* |
| 114 | * Flags that flow alongside events in the input dispatch system to help with certain |
| 115 | * policy decisions such as waking from device sleep. |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 116 | * |
| 117 | * 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] | 118 | */ |
| 119 | enum { |
Jeff Brown | 0eaf393 | 2010-10-01 14:55:30 -0700 | [diff] [blame] | 120 | /* 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] | 121 | * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */ |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 122 | |
| 123 | POLICY_FLAG_WAKE = 0x00000001, |
| 124 | POLICY_FLAG_WAKE_DROPPED = 0x00000002, |
| 125 | POLICY_FLAG_SHIFT = 0x00000004, |
| 126 | POLICY_FLAG_CAPS_LOCK = 0x00000008, |
| 127 | POLICY_FLAG_ALT = 0x00000010, |
| 128 | POLICY_FLAG_ALT_GR = 0x00000020, |
| 129 | POLICY_FLAG_MENU = 0x00000040, |
| 130 | POLICY_FLAG_LAUNCHER = 0x00000080, |
Jeff Brown | 0eaf393 | 2010-10-01 14:55:30 -0700 | [diff] [blame] | 131 | POLICY_FLAG_VIRTUAL = 0x00000100, |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 132 | POLICY_FLAG_FUNCTION = 0x00000200, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 133 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 134 | POLICY_FLAG_RAW_MASK = 0x0000ffff, |
| 135 | |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 136 | /* These flags are set by the input dispatcher. */ |
| 137 | |
| 138 | // Indicates that the input event was injected. |
| 139 | POLICY_FLAG_INJECTED = 0x01000000, |
| 140 | |
Jeff Brown | e20c9e0 | 2010-10-11 14:20:19 -0700 | [diff] [blame] | 141 | // Indicates that the input event is from a trusted source such as a directly attached |
| 142 | // input device or an application with system-wide event injection permission. |
| 143 | POLICY_FLAG_TRUSTED = 0x02000000, |
| 144 | |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 145 | // Indicates that the input event has passed through an input filter. |
| 146 | POLICY_FLAG_FILTERED = 0x04000000, |
| 147 | |
| 148 | // Disables automatic key repeating behavior. |
| 149 | POLICY_FLAG_DISABLE_KEY_REPEAT = 0x08000000, |
| 150 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 151 | /* 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] | 152 | |
| 153 | // Indicates that the screen was off when the event was received and the event |
| 154 | // should wake the device. |
| 155 | POLICY_FLAG_WOKE_HERE = 0x10000000, |
| 156 | |
| 157 | // Indicates that the screen was dim when the event was received and the event |
| 158 | // should brighten the device. |
| 159 | POLICY_FLAG_BRIGHT_HERE = 0x20000000, |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 160 | |
| 161 | // Indicates that the event should be dispatched to applications. |
| 162 | // The input event should still be sent to the InputDispatcher so that it can see all |
| 163 | // input events received include those that it will not deliver. |
| 164 | POLICY_FLAG_PASS_TO_USER = 0x40000000, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 165 | }; |
| 166 | |
| 167 | /* |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 168 | * Pointer coordinate data. |
| 169 | */ |
| 170 | struct PointerCoords { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 171 | enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64 |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 172 | |
| 173 | // Bitfield of axes that are present in this structure. |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 174 | uint64_t bits; |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 175 | |
| 176 | // Values of axes that are stored in this structure packed in order by axis id |
| 177 | // for each axis that is present in the structure according to 'bits'. |
| 178 | float values[MAX_AXES]; |
| 179 | |
| 180 | inline void clear() { |
| 181 | bits = 0; |
| 182 | } |
| 183 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 184 | float getAxisValue(int32_t axis) const; |
| 185 | status_t setAxisValue(int32_t axis, float value); |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 186 | |
Dianne Hackborn | e2515ee | 2011-04-27 18:52:56 -0400 | [diff] [blame] | 187 | void scale(float scale); |
| 188 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 189 | inline float getX() const { |
| 190 | return getAxisValue(AMOTION_EVENT_AXIS_X); |
| 191 | } |
| 192 | |
| 193 | inline float getY() const { |
| 194 | return getAxisValue(AMOTION_EVENT_AXIS_Y); |
| 195 | } |
| 196 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 197 | #ifdef HAVE_ANDROID_OS |
| 198 | status_t readFromParcel(Parcel* parcel); |
| 199 | status_t writeToParcel(Parcel* parcel) const; |
| 200 | #endif |
| 201 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 202 | bool operator==(const PointerCoords& other) const; |
| 203 | inline bool operator!=(const PointerCoords& other) const { |
| 204 | return !(*this == other); |
| 205 | } |
| 206 | |
| 207 | void copyFrom(const PointerCoords& other); |
| 208 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 209 | private: |
| 210 | void tooManyAxes(int axis); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | /* |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 214 | * Pointer property data. |
| 215 | */ |
| 216 | struct PointerProperties { |
| 217 | // The id of the pointer. |
| 218 | int32_t id; |
| 219 | |
| 220 | // The pointer tool type. |
| 221 | int32_t toolType; |
| 222 | |
| 223 | inline void clear() { |
| 224 | id = -1; |
| 225 | toolType = 0; |
| 226 | } |
| 227 | |
| 228 | bool operator==(const PointerProperties& other) const; |
| 229 | inline bool operator!=(const PointerProperties& other) const { |
| 230 | return !(*this == other); |
| 231 | } |
| 232 | |
| 233 | void copyFrom(const PointerProperties& other); |
| 234 | }; |
| 235 | |
| 236 | /* |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 237 | * Input events. |
| 238 | */ |
Dianne Hackborn | 2e9f93e | 2010-06-28 15:27:30 -0700 | [diff] [blame] | 239 | class InputEvent : public AInputEvent { |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 240 | public: |
| 241 | virtual ~InputEvent() { } |
| 242 | |
| 243 | virtual int32_t getType() const = 0; |
| 244 | |
| 245 | inline int32_t getDeviceId() const { return mDeviceId; } |
| 246 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 247 | inline int32_t getSource() const { return mSource; } |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 248 | |
| 249 | inline void setSource(int32_t source) { mSource = source; } |
| 250 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 251 | protected: |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 252 | void initialize(int32_t deviceId, int32_t source); |
Dianne Hackborn | 2c6081c | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 253 | void initialize(const InputEvent& from); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 254 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 255 | int32_t mDeviceId; |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 256 | int32_t mSource; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 257 | }; |
| 258 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 259 | /* |
| 260 | * Key events. |
| 261 | */ |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 262 | class KeyEvent : public InputEvent { |
| 263 | public: |
| 264 | virtual ~KeyEvent() { } |
| 265 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 266 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; } |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 267 | |
| 268 | inline int32_t getAction() const { return mAction; } |
| 269 | |
| 270 | inline int32_t getFlags() const { return mFlags; } |
| 271 | |
Jeff Brown | fd23e3e | 2012-05-09 13:34:28 -0700 | [diff] [blame] | 272 | inline void setFlags(int32_t flags) { mFlags = flags; } |
| 273 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 274 | inline int32_t getKeyCode() const { return mKeyCode; } |
| 275 | |
| 276 | inline int32_t getScanCode() const { return mScanCode; } |
| 277 | |
| 278 | inline int32_t getMetaState() const { return mMetaState; } |
| 279 | |
| 280 | inline int32_t getRepeatCount() const { return mRepeatCount; } |
| 281 | |
| 282 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 283 | |
| 284 | inline nsecs_t getEventTime() const { return mEventTime; } |
| 285 | |
Dianne Hackborn | 3c80a4a | 2010-06-29 19:20:40 -0700 | [diff] [blame] | 286 | // Return true if this event may have a default action implementation. |
| 287 | static bool hasDefaultAction(int32_t keyCode); |
| 288 | bool hasDefaultAction() const; |
| 289 | |
| 290 | // Return true if this event represents a system key. |
| 291 | static bool isSystemKey(int32_t keyCode); |
| 292 | bool isSystemKey() const; |
| 293 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 294 | void initialize( |
| 295 | int32_t deviceId, |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 296 | int32_t source, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 297 | int32_t action, |
| 298 | int32_t flags, |
| 299 | int32_t keyCode, |
| 300 | int32_t scanCode, |
| 301 | int32_t metaState, |
| 302 | int32_t repeatCount, |
| 303 | nsecs_t downTime, |
| 304 | nsecs_t eventTime); |
Dianne Hackborn | 2c6081c | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 305 | void initialize(const KeyEvent& from); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 306 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 307 | protected: |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 308 | int32_t mAction; |
| 309 | int32_t mFlags; |
| 310 | int32_t mKeyCode; |
| 311 | int32_t mScanCode; |
| 312 | int32_t mMetaState; |
| 313 | int32_t mRepeatCount; |
| 314 | nsecs_t mDownTime; |
| 315 | nsecs_t mEventTime; |
| 316 | }; |
| 317 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 318 | /* |
| 319 | * Motion events. |
| 320 | */ |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 321 | class MotionEvent : public InputEvent { |
| 322 | public: |
| 323 | virtual ~MotionEvent() { } |
| 324 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 325 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; } |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 326 | |
| 327 | inline int32_t getAction() const { return mAction; } |
| 328 | |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 329 | inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; } |
| 330 | |
| 331 | inline int32_t getActionIndex() const { |
| 332 | return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) |
| 333 | >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT; |
| 334 | } |
| 335 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 336 | inline void setAction(int32_t action) { mAction = action; } |
| 337 | |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 338 | inline int32_t getFlags() const { return mFlags; } |
| 339 | |
Jeff Brown | 21bc5c9 | 2011-02-28 18:27:14 -0800 | [diff] [blame] | 340 | inline void setFlags(int32_t flags) { mFlags = flags; } |
| 341 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 342 | inline int32_t getEdgeFlags() const { return mEdgeFlags; } |
| 343 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 344 | inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; } |
| 345 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 346 | inline int32_t getMetaState() const { return mMetaState; } |
| 347 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 348 | inline void setMetaState(int32_t metaState) { mMetaState = metaState; } |
| 349 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 350 | inline int32_t getButtonState() const { return mButtonState; } |
| 351 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 352 | inline float getXOffset() const { return mXOffset; } |
| 353 | |
| 354 | inline float getYOffset() const { return mYOffset; } |
| 355 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 356 | inline float getXPrecision() const { return mXPrecision; } |
| 357 | |
| 358 | inline float getYPrecision() const { return mYPrecision; } |
| 359 | |
| 360 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 361 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 362 | inline void setDownTime(nsecs_t downTime) { mDownTime = downTime; } |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 363 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 364 | inline size_t getPointerCount() const { return mPointerProperties.size(); } |
| 365 | |
| 366 | inline const PointerProperties* getPointerProperties(size_t pointerIndex) const { |
| 367 | return &mPointerProperties[pointerIndex]; |
| 368 | } |
| 369 | |
| 370 | inline int32_t getPointerId(size_t pointerIndex) const { |
| 371 | return mPointerProperties[pointerIndex].id; |
| 372 | } |
| 373 | |
| 374 | inline int32_t getToolType(size_t pointerIndex) const { |
| 375 | return mPointerProperties[pointerIndex].toolType; |
| 376 | } |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 377 | |
| 378 | inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; } |
| 379 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 380 | const PointerCoords* getRawPointerCoords(size_t pointerIndex) const; |
| 381 | |
| 382 | float getRawAxisValue(int32_t axis, size_t pointerIndex) const; |
| 383 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 384 | inline float getRawX(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 385 | return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 388 | inline float getRawY(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 389 | return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 390 | } |
| 391 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 392 | float getAxisValue(int32_t axis, size_t pointerIndex) const; |
| 393 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 394 | inline float getX(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 395 | return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | inline float getY(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 399 | return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 400 | } |
| 401 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 402 | inline float getPressure(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 403 | return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | inline float getSize(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 407 | return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 408 | } |
| 409 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 410 | inline float getTouchMajor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 411 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | inline float getTouchMinor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 415 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | inline float getToolMajor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 419 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | inline float getToolMinor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 423 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | inline float getOrientation(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 427 | return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 428 | } |
| 429 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 430 | inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; } |
| 431 | |
| 432 | inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const { |
| 433 | return mSampleEventTimes[historicalIndex]; |
| 434 | } |
| 435 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 436 | const PointerCoords* getHistoricalRawPointerCoords( |
| 437 | size_t pointerIndex, size_t historicalIndex) const; |
| 438 | |
| 439 | float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex, |
| 440 | size_t historicalIndex) const; |
| 441 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 442 | inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 443 | return getHistoricalRawAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 444 | AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 447 | inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 448 | return getHistoricalRawAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 449 | AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 452 | float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const; |
| 453 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 454 | inline float getHistoricalX(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_X, pointerIndex, historicalIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | inline float getHistoricalY(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_Y, pointerIndex, historicalIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 464 | inline float getHistoricalPressure(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_PRESSURE, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | inline float getHistoricalSize(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_SIZE, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 474 | inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 475 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 476 | AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 480 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 481 | AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 485 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 486 | AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 490 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 491 | AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 495 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 496 | AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 497 | } |
| 498 | |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 499 | ssize_t findPointerIndex(int32_t pointerId) const; |
| 500 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 501 | void initialize( |
| 502 | int32_t deviceId, |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 503 | int32_t source, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 504 | int32_t action, |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 505 | int32_t flags, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 506 | int32_t edgeFlags, |
| 507 | int32_t metaState, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 508 | int32_t buttonState, |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 509 | float xOffset, |
| 510 | float yOffset, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 511 | float xPrecision, |
| 512 | float yPrecision, |
| 513 | nsecs_t downTime, |
| 514 | nsecs_t eventTime, |
| 515 | size_t pointerCount, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 516 | const PointerProperties* pointerProperties, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 517 | const PointerCoords* pointerCoords); |
| 518 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 519 | void copyFrom(const MotionEvent* other, bool keepHistory); |
| 520 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 521 | void addSample( |
| 522 | nsecs_t eventTime, |
| 523 | const PointerCoords* pointerCoords); |
| 524 | |
| 525 | void offsetLocation(float xOffset, float yOffset); |
| 526 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 527 | void scale(float scaleFactor); |
| 528 | |
| 529 | #ifdef HAVE_ANDROID_OS |
| 530 | void transform(const SkMatrix* matrix); |
| 531 | |
| 532 | status_t readFromParcel(Parcel* parcel); |
| 533 | status_t writeToParcel(Parcel* parcel) const; |
| 534 | #endif |
| 535 | |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 536 | static bool isTouchEvent(int32_t source, int32_t action); |
| 537 | inline bool isTouchEvent() const { |
| 538 | return isTouchEvent(mSource, mAction); |
| 539 | } |
| 540 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 541 | // Low-level accessors. |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 542 | inline const PointerProperties* getPointerProperties() const { |
| 543 | return mPointerProperties.array(); |
| 544 | } |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 545 | inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); } |
| 546 | inline const PointerCoords* getSamplePointerCoords() const { |
| 547 | return mSamplePointerCoords.array(); |
| 548 | } |
| 549 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 550 | protected: |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 551 | int32_t mAction; |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 552 | int32_t mFlags; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 553 | int32_t mEdgeFlags; |
| 554 | int32_t mMetaState; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 555 | int32_t mButtonState; |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 556 | float mXOffset; |
| 557 | float mYOffset; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 558 | float mXPrecision; |
| 559 | float mYPrecision; |
| 560 | nsecs_t mDownTime; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 561 | Vector<PointerProperties> mPointerProperties; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 562 | Vector<nsecs_t> mSampleEventTimes; |
| 563 | Vector<PointerCoords> mSamplePointerCoords; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 564 | }; |
| 565 | |
| 566 | /* |
| 567 | * Input event factory. |
| 568 | */ |
| 569 | class InputEventFactoryInterface { |
| 570 | protected: |
| 571 | virtual ~InputEventFactoryInterface() { } |
| 572 | |
| 573 | public: |
| 574 | InputEventFactoryInterface() { } |
| 575 | |
| 576 | virtual KeyEvent* createKeyEvent() = 0; |
| 577 | virtual MotionEvent* createMotionEvent() = 0; |
| 578 | }; |
| 579 | |
| 580 | /* |
| 581 | * A simple input event factory implementation that uses a single preallocated instance |
| 582 | * of each type of input event that are reused for each request. |
| 583 | */ |
| 584 | class PreallocatedInputEventFactory : public InputEventFactoryInterface { |
| 585 | public: |
| 586 | PreallocatedInputEventFactory() { } |
| 587 | virtual ~PreallocatedInputEventFactory() { } |
| 588 | |
| 589 | virtual KeyEvent* createKeyEvent() { return & mKeyEvent; } |
| 590 | virtual MotionEvent* createMotionEvent() { return & mMotionEvent; } |
| 591 | |
| 592 | private: |
| 593 | KeyEvent mKeyEvent; |
| 594 | MotionEvent mMotionEvent; |
| 595 | }; |
| 596 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 597 | /* |
Jeff Brown | 2b6c32c | 2012-03-13 15:00:09 -0700 | [diff] [blame] | 598 | * An input event factory implementation that maintains a pool of input events. |
| 599 | */ |
| 600 | class PooledInputEventFactory : public InputEventFactoryInterface { |
| 601 | public: |
| 602 | PooledInputEventFactory(size_t maxPoolSize = 20); |
| 603 | virtual ~PooledInputEventFactory(); |
| 604 | |
| 605 | virtual KeyEvent* createKeyEvent(); |
| 606 | virtual MotionEvent* createMotionEvent(); |
| 607 | |
| 608 | void recycle(InputEvent* event); |
| 609 | |
| 610 | private: |
| 611 | const size_t mMaxPoolSize; |
| 612 | |
| 613 | Vector<KeyEvent*> mKeyEventPool; |
| 614 | Vector<MotionEvent*> mMotionEventPool; |
| 615 | }; |
| 616 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 617 | } // namespace android |
| 618 | |
Mathias Agopian | b93a03f8 | 2012-02-17 15:34:57 -0800 | [diff] [blame] | 619 | #endif // _ANDROIDFW_INPUT_H |