diff options
| author | 2010-09-01 17:01:00 -0700 | |
|---|---|---|
| committer | 2010-09-08 11:50:55 -0700 | |
| commit | af30ff6020990427e0e0e73e4ac4a85a6f26a8ff (patch) | |
| tree | cd1ecd559519bdfb59d347bf969fef364be0ae28 /libs/ui/Input.cpp | |
| parent | d71a3160ae23c4a7af59360c0c68b6e2f8020ac9 (diff) | |
Add support for secure views.
Added the MotionEvent.FLAG_WINDOW_IS_OBSCURED flag which is set by the
input manager whenever another visible window is partly or wholly obscured
the target of a touch event so that applications can filter touches
accordingly.
Added a "filterTouchesWhenObscured" attribute to View which can be used to
enable filtering of touches when the view's window is obscured.
Change-Id: I936d9c85013fd2d77fb296a600528d30a29027d2
Diffstat (limited to 'libs/ui/Input.cpp')
| -rw-r--r-- | libs/ui/Input.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ui/Input.cpp b/libs/ui/Input.cpp index 4973cd89f2..811edaf8a2 100644 --- a/libs/ui/Input.cpp +++ b/libs/ui/Input.cpp @@ -129,6 +129,7 @@ void MotionEvent::initialize( int32_t deviceId, int32_t source, int32_t action, + int32_t flags, int32_t edgeFlags, int32_t metaState, float xOffset, @@ -142,6 +143,7 @@ void MotionEvent::initialize( const PointerCoords* pointerCoords) { InputEvent::initialize(deviceId, source); mAction = action; + mFlags = flags; mEdgeFlags = edgeFlags; mMetaState = metaState; mXOffset = xOffset; |