diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-09-14 18:03:38 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-09-14 20:46:14 -0700 |
commit | dc1ab4b5cc274b7d744c11a939bb5910becec5e0 (patch) | |
tree | b548d8f3afe385d196b250d208fcc529ac28ed0d /native | |
parent | cee0b97eed0a460e2da58500e24d3e4dac5cb9f6 (diff) | |
download | frameworks_base-dc1ab4b5cc274b7d744c11a939bb5910becec5e0.zip frameworks_base-dc1ab4b5cc274b7d744c11a939bb5910becec5e0.tar.gz frameworks_base-dc1ab4b5cc274b7d744c11a939bb5910becec5e0.tar.bz2 |
Input API review.
Drop currently unsupported input features.
Add documentation comments.
Change-Id: I407d2e1dd90c5ee82983a3ccf177430d35ee7592
Diffstat (limited to 'native')
-rw-r--r-- | native/include/android/input.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/native/include/android/input.h b/native/include/android/input.h index c1134bf..5580700 100644 --- a/native/include/android/input.h +++ b/native/include/android/input.h @@ -295,7 +295,6 @@ enum { AINPUT_SOURCE_CLASS_POINTER = 0x00000002, AINPUT_SOURCE_CLASS_NAVIGATION = 0x00000004, AINPUT_SOURCE_CLASS_POSITION = 0x00000008, - AINPUT_SOURCE_CLASS_JOYSTICK = 0x00000010, }; enum { @@ -303,13 +302,10 @@ enum { AINPUT_SOURCE_KEYBOARD = 0x00000100 | AINPUT_SOURCE_CLASS_BUTTON, AINPUT_SOURCE_DPAD = 0x00000200 | AINPUT_SOURCE_CLASS_BUTTON, - AINPUT_SOURCE_GAMEPAD = 0x00000400 | AINPUT_SOURCE_CLASS_BUTTON, AINPUT_SOURCE_TOUCHSCREEN = 0x00001000 | AINPUT_SOURCE_CLASS_POINTER, AINPUT_SOURCE_MOUSE = 0x00002000 | AINPUT_SOURCE_CLASS_POINTER, AINPUT_SOURCE_TRACKBALL = 0x00010000 | AINPUT_SOURCE_CLASS_NAVIGATION, AINPUT_SOURCE_TOUCHPAD = 0x00100000 | AINPUT_SOURCE_CLASS_POSITION, - AINPUT_SOURCE_JOYSTICK_LEFT = 0x01000000 | AINPUT_SOURCE_CLASS_JOYSTICK, - AINPUT_SOURCE_JOYSTICK_RIGHT = 0x02000000 | AINPUT_SOURCE_CLASS_JOYSTICK, }; /* |