diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-06-22 01:27:15 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-06-28 19:10:54 -0700 |
commit | 50de30a5230dd15326f8bcbb4beaf617bca265e2 (patch) | |
tree | 08220f1667205b8ccd2891ab9eda6276c91571c7 /include/ui/InputReader.h | |
parent | a84687252b1d344f244bf93771d2acd7055d253e (diff) | |
download | frameworks_native-50de30a5230dd15326f8bcbb4beaf617bca265e2.zip frameworks_native-50de30a5230dd15326f8bcbb4beaf617bca265e2.tar.gz frameworks_native-50de30a5230dd15326f8bcbb4beaf617bca265e2.tar.bz2 |
Native input event dispatching.
Target identification is now fully native.
Fixed a couple of minor issues related to input injection.
Native input enabled by default, can be disabled by setting
WindowManagerPolicy.ENABLE_NATIVE_INPUT_DISPATCH to false.
Change-Id: I7edf66ed3e987cc9306ad4743ac57a116af452ff
Diffstat (limited to 'include/ui/InputReader.h')
-rw-r--r-- | include/ui/InputReader.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/ui/InputReader.h b/include/ui/InputReader.h index d76b8fe..2093560 100644 --- a/include/ui/InputReader.h +++ b/include/ui/InputReader.h @@ -361,7 +361,11 @@ public: // The input dispatcher should add POLICY_FLAG_BRIGHT_HERE to the policy flags it // passes through the dispatch pipeline. - ACTION_BRIGHT_HERE = 0x00000008 + ACTION_BRIGHT_HERE = 0x00000008, + + // The input dispatcher should add POLICY_FLAG_INTERCEPT_DISPATCH to the policy flags + // it passed through the dispatch pipeline. + ACTION_INTERCEPT_DISPATCH = 0x00000010 }; /* Describes a virtual key. */ |