summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-01-19 18:58:28 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-19 18:58:28 -0800
commite155bd0fcb57fa96c4a7b5cc70205d53acf41291 (patch)
tree81521106d865081b80000e7135174087a0f56e68
parentcd5256594b75e81bcc0708d7599fe5fa0157d0ae (diff)
parent5f668c6e6bb2515325632691a804a7c8f24ebb09 (diff)
downloadframeworks_base-e155bd0fcb57fa96c4a7b5cc70205d53acf41291.zip
frameworks_base-e155bd0fcb57fa96c4a7b5cc70205d53acf41291.tar.gz
frameworks_base-e155bd0fcb57fa96c4a7b5cc70205d53acf41291.tar.bz2
am 5f668c6e: am 8b9df978: Merge "Fix getSwitchState." into honeycomb
* commit '5f668c6e6bb2515325632691a804a7c8f24ebb09': Fix getSwitchState.
-rw-r--r--include/ui/Input.h9
-rw-r--r--services/input/InputReader.cpp2
-rw-r--r--services/input/tests/InputReader_test.cpp2
3 files changed, 11 insertions, 2 deletions
diff --git a/include/ui/Input.h b/include/ui/Input.h
index 27f65bc..30b45f7 100644
--- a/include/ui/Input.h
+++ b/include/ui/Input.h
@@ -38,6 +38,15 @@ enum {
AKEY_EVENT_FLAG_START_TRACKING = 0x40000000
};
+enum {
+ /*
+ * Indicates that an input device has switches.
+ * This input source flag is hidden from the API because switches are only used by the system
+ * and applications have no way to interact with them.
+ */
+ AINPUT_SOURCE_SWITCH = 0x80000000,
+};
+
/*
* Maximum number of pointers supported per motion event.
* Smallest number of pointers is 1.
diff --git a/services/input/InputReader.cpp b/services/input/InputReader.cpp
index 7e3a898..d09c5f6 100644
--- a/services/input/InputReader.cpp
+++ b/services/input/InputReader.cpp
@@ -762,7 +762,7 @@ SwitchInputMapper::~SwitchInputMapper() {
}
uint32_t SwitchInputMapper::getSources() {
- return 0;
+ return AINPUT_SOURCE_SWITCH;
}
void SwitchInputMapper::process(const RawEvent* rawEvent) {
diff --git a/services/input/tests/InputReader_test.cpp b/services/input/tests/InputReader_test.cpp
index 775747c..98d627d 100644
--- a/services/input/tests/InputReader_test.cpp
+++ b/services/input/tests/InputReader_test.cpp
@@ -1484,7 +1484,7 @@ TEST_F(SwitchInputMapperTest, GetSources) {
SwitchInputMapper* mapper = new SwitchInputMapper(mDevice);
addMapperAndConfigure(mapper);
- ASSERT_EQ(uint32_t(0), mapper->getSources());
+ ASSERT_EQ(uint32_t(AINPUT_SOURCE_SWITCH), mapper->getSources());
}
TEST_F(SwitchInputMapperTest, GetSwitchState) {