summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-08-05 12:36:11 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-08-05 12:36:11 -0700
commitb1d39aae13869a9dd05efb95c48b8782a54f0871 (patch)
treeb2f48a60f0a3937342806b6e1cdcf782264c730f /include
parenta1bd466d5ca2d776369e0502c08fadc55c313e06 (diff)
parent0dd7cb4b4ef86eb7d4e837b1948501da66adeebe (diff)
downloadframeworks_base-b1d39aae13869a9dd05efb95c48b8782a54f0871.zip
frameworks_base-b1d39aae13869a9dd05efb95c48b8782a54f0871.tar.gz
frameworks_base-b1d39aae13869a9dd05efb95c48b8782a54f0871.tar.bz2
Merge change 9649
* changes: Finish implementation of multiple pointer support for MotionEvent.
Diffstat (limited to 'include')
-rw-r--r--include/ui/EventHub.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/ui/EventHub.h b/include/ui/EventHub.h
index d62fd7d..bffba07 100644
--- a/include/ui/EventHub.h
+++ b/include/ui/EventHub.h
@@ -55,7 +55,9 @@ public:
CLASS_KEYBOARD = 0x00000001,
CLASS_ALPHAKEY = 0x00000002,
CLASS_TOUCHSCREEN = 0x00000004,
- CLASS_TRACKBALL = 0x00000008
+ CLASS_TRACKBALL = 0x00000008,
+ CLASS_TOUCHSCREEN_MT= 0x00000010,
+ CLASS_DPAD = 0x00000020
};
uint32_t getDeviceClasses(int32_t deviceId) const;
@@ -122,6 +124,7 @@ private:
};
device_t* getDevice(int32_t deviceId) const;
+ bool hasKeycode(device_t* device, int keycode) const;
// Protect all internal state.
mutable Mutex mLock;