summaryrefslogtreecommitdiffstats
path: root/include/ui
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-03-02 19:23:13 -0800
committerJeff Brown <jeffbrown@google.com>2011-03-02 19:57:07 -0800
commit56194ebec6212e229f4ccdaa4b187166d20013ef (patch)
tree51276000061ba703b6ddda32ecce3ce10a06f4f5 /include/ui
parent05dc66ada6b61a6bdf806ffaa62617ac5394695d (diff)
downloadframeworks_base-56194ebec6212e229f4ccdaa4b187166d20013ef.zip
frameworks_base-56194ebec6212e229f4ccdaa4b187166d20013ef.tar.gz
frameworks_base-56194ebec6212e229f4ccdaa4b187166d20013ef.tar.bz2
Wake screen from external HID peripherals.
Added some plumbing to enable the policy to intercept motion events when the screen is off to handle wakeup if needed. Added a basic concept of an external device to limit the scope of the wakeup policy to external devices only. The wakeup policy for internal devices should be based on explicit rules such as policy flags in key layout files. Moved isTouchEvent to native. Ensure the dispatcher sends the right event type to userActivity for non-touch pointer events like HOVER_MOVE and SCROLL. Bug: 3193114 Change-Id: I15dbd48a16810dfaf226ff7ad117d46908ca4f86
Diffstat (limited to 'include/ui')
-rw-r--r--include/ui/Input.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ui/Input.h b/include/ui/Input.h
index 082f11c..e92d7f5 100644
--- a/include/ui/Input.h
+++ b/include/ui/Input.h
@@ -476,6 +476,11 @@ public:
status_t writeToParcel(Parcel* parcel) const;
#endif
+ static bool isTouchEvent(int32_t source, int32_t action);
+ inline bool isTouchEvent() const {
+ return isTouchEvent(mSource, mAction);
+ }
+
// Low-level accessors.
inline const int32_t* getPointerIds() const { return mPointerIds.array(); }
inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }