widget/gonk/libui/Input.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /*
     2  * Copyright (C) 2010 The Android Open Source Project
     3  *
     4  * Licensed under the Apache License, Version 2.0 (the "License");
     5  * you may not use this file except in compliance with the License.
     6  * You may obtain a copy of the License at
     7  *
     8  *      http://www.apache.org/licenses/LICENSE-2.0
     9  *
    10  * Unless required by applicable law or agreed to in writing, software
    11  * distributed under the License is distributed on an "AS IS" BASIS,
    12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  * See the License for the specific language governing permissions and
    14  * limitations under the License.
    15  */
    17 #ifndef _ANDROIDFW_INPUT_H
    18 #define _ANDROIDFW_INPUT_H
    20 /**
    21  * Native input event structures.
    22  */
    24 #include "android_input.h"
    25 #include <utils/Vector.h>
    26 #include <utils/KeyedVector.h>
    27 #include <utils/Timers.h>
    28 #include <utils/RefBase.h>
    29 #include <utils/String8.h>
    31 #ifdef HAVE_ANDROID_OS
    32 class SkMatrix;
    33 #endif
    35 /*
    36  * Additional private constants not defined in ndk/ui/input.h.
    37  */
    38 enum {
    39     /* Signifies that the key is being predispatched */
    40     AKEY_EVENT_FLAG_PREDISPATCH = 0x20000000,
    42     /* Private control to determine when an app is tracking a key sequence. */
    43     AKEY_EVENT_FLAG_START_TRACKING = 0x40000000,
    45     /* Key event is inconsistent with previously sent key events. */
    46     AKEY_EVENT_FLAG_TAINTED = 0x80000000,
    47 };
    49 enum {
    50     /* Motion event is inconsistent with previously sent motion events. */
    51     AMOTION_EVENT_FLAG_TAINTED = 0x80000000,
    52 };
    54 enum {
    55     /* Used when a motion event is not associated with any display.
    56      * Typically used for non-pointer events. */
    57     ADISPLAY_ID_NONE = -1,
    59     /* The default display id. */
    60     ADISPLAY_ID_DEFAULT = 0,
    61 };
    63 enum {
    64     /*
    65      * Indicates that an input device has switches.
    66      * This input source flag is hidden from the API because switches are only used by the system
    67      * and applications have no way to interact with them.
    68      */
    69     AINPUT_SOURCE_SWITCH = 0x80000000,
    70 };
    72 /*
    73  * SystemUiVisibility constants from View.
    74  */
    75 enum {
    76     ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0,
    77     ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001,
    78 };
    80 /*
    81  * Maximum number of pointers supported per motion event.
    82  * Smallest number of pointers is 1.
    83  * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
    84  * will occasionally emit 11.  There is not much harm making this constant bigger.)
    85  */
    86 #define MAX_POINTERS 16
    88 /*
    89  * Maximum pointer id value supported in a motion event.
    90  * Smallest pointer id is 0.
    91  * (This is limited by our use of BitSet32 to track pointer assignments.)
    92  */
    93 #define MAX_POINTER_ID 31
    95 /*
    96  * Declare a concrete type for the NDK's input event forward declaration.
    97  */
    98 struct AInputEvent {
    99     virtual ~AInputEvent() { }
   100 };
   102 /*
   103  * Declare a concrete type for the NDK's input device forward declaration.
   104  */
   105 struct AInputDevice {
   106     virtual ~AInputDevice() { }
   107 };
   110 namespace android {
   112 #ifdef HAVE_ANDROID_OS
   113 class Parcel;
   114 #endif
   116 /*
   117  * Flags that flow alongside events in the input dispatch system to help with certain
   118  * policy decisions such as waking from device sleep.
   119  *
   120  * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
   121  */
   122 enum {
   123     /* These flags originate in RawEvents and are generally set in the key map.
   124      * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
   126     POLICY_FLAG_WAKE = 0x00000001,
   127     POLICY_FLAG_WAKE_DROPPED = 0x00000002,
   128     POLICY_FLAG_SHIFT = 0x00000004,
   129     POLICY_FLAG_CAPS_LOCK = 0x00000008,
   130     POLICY_FLAG_ALT = 0x00000010,
   131     POLICY_FLAG_ALT_GR = 0x00000020,
   132     POLICY_FLAG_MENU = 0x00000040,
   133     POLICY_FLAG_LAUNCHER = 0x00000080,
   134     POLICY_FLAG_VIRTUAL = 0x00000100,
   135     POLICY_FLAG_FUNCTION = 0x00000200,
   137     POLICY_FLAG_RAW_MASK = 0x0000ffff,
   139     /* These flags are set by the input dispatcher. */
   141     // Indicates that the input event was injected.
   142     POLICY_FLAG_INJECTED = 0x01000000,
   144     // Indicates that the input event is from a trusted source such as a directly attached
   145     // input device or an application with system-wide event injection permission.
   146     POLICY_FLAG_TRUSTED = 0x02000000,
   148     // Indicates that the input event has passed through an input filter.
   149     POLICY_FLAG_FILTERED = 0x04000000,
   151     // Disables automatic key repeating behavior.
   152     POLICY_FLAG_DISABLE_KEY_REPEAT = 0x08000000,
   154     /* These flags are set by the input reader policy as it intercepts each event. */
   156     // Indicates that the screen was off when the event was received and the event
   157     // should wake the device.
   158     POLICY_FLAG_WOKE_HERE = 0x10000000,
   160     // Indicates that the screen was dim when the event was received and the event
   161     // should brighten the device.
   162     POLICY_FLAG_BRIGHT_HERE = 0x20000000,
   164     // Indicates that the event should be dispatched to applications.
   165     // The input event should still be sent to the InputDispatcher so that it can see all
   166     // input events received include those that it will not deliver.
   167     POLICY_FLAG_PASS_TO_USER = 0x40000000,
   168 };
   170 /*
   171  * Pointer coordinate data.
   172  */
   173 struct PointerCoords {
   174     enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64
   176     // Bitfield of axes that are present in this structure.
   177     uint64_t bits;
   179     // Values of axes that are stored in this structure packed in order by axis id
   180     // for each axis that is present in the structure according to 'bits'.
   181     float values[MAX_AXES];
   183     inline void clear() {
   184         bits = 0;
   185     }
   187     float getAxisValue(int32_t axis) const;
   188     status_t setAxisValue(int32_t axis, float value);
   190     void scale(float scale);
   192     inline float getX() const {
   193         return getAxisValue(AMOTION_EVENT_AXIS_X);
   194     }
   196     inline float getY() const {
   197         return getAxisValue(AMOTION_EVENT_AXIS_Y);
   198     }
   200 #ifdef HAVE_ANDROID_OS
   201     status_t readFromParcel(Parcel* parcel);
   202     status_t writeToParcel(Parcel* parcel) const;
   203 #endif
   205     bool operator==(const PointerCoords& other) const;
   206     inline bool operator!=(const PointerCoords& other) const {
   207         return !(*this == other);
   208     }
   210     void copyFrom(const PointerCoords& other);
   212 private:
   213     void tooManyAxes(int axis);
   214 };
   216 /*
   217  * Pointer property data.
   218  */
   219 struct PointerProperties {
   220     // The id of the pointer.
   221     int32_t id;
   223     // The pointer tool type.
   224     int32_t toolType;
   226     inline void clear() {
   227         id = -1;
   228         toolType = 0;
   229     }
   231     bool operator==(const PointerProperties& other) const;
   232     inline bool operator!=(const PointerProperties& other) const {
   233         return !(*this == other);
   234     }
   236     void copyFrom(const PointerProperties& other);
   237 };
   239 /*
   240  * Input events.
   241  */
   242 class InputEvent : public AInputEvent {
   243 public:
   244     virtual ~InputEvent() { }
   246     virtual int32_t getType() const = 0;
   248     inline int32_t getDeviceId() const { return mDeviceId; }
   250     inline int32_t getSource() const { return mSource; }
   252     inline void setSource(int32_t source) { mSource = source; }
   254 protected:
   255     void initialize(int32_t deviceId, int32_t source);
   256     void initialize(const InputEvent& from);
   258     int32_t mDeviceId;
   259     int32_t mSource;
   260 };
   262 /*
   263  * Key events.
   264  */
   265 class KeyEvent : public InputEvent {
   266 public:
   267     virtual ~KeyEvent() { }
   269     virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
   271     inline int32_t getAction() const { return mAction; }
   273     inline int32_t getFlags() const { return mFlags; }
   275     inline void setFlags(int32_t flags) { mFlags = flags; }
   277     inline int32_t getKeyCode() const { return mKeyCode; }
   279     inline int32_t getScanCode() const { return mScanCode; }
   281     inline int32_t getMetaState() const { return mMetaState; }
   283     inline int32_t getRepeatCount() const { return mRepeatCount; }
   285     inline nsecs_t getDownTime() const { return mDownTime; }
   287     inline nsecs_t getEventTime() const { return mEventTime; }
   289     // Return true if this event may have a default action implementation.
   290     static bool hasDefaultAction(int32_t keyCode);
   291     bool hasDefaultAction() const;
   293     // Return true if this event represents a system key.
   294     static bool isSystemKey(int32_t keyCode);
   295     bool isSystemKey() const;
   297     void initialize(
   298             int32_t deviceId,
   299             int32_t source,
   300             int32_t action,
   301             int32_t flags,
   302             int32_t keyCode,
   303             int32_t scanCode,
   304             int32_t metaState,
   305             int32_t repeatCount,
   306             nsecs_t downTime,
   307             nsecs_t eventTime);
   308     void initialize(const KeyEvent& from);
   310 protected:
   311     int32_t mAction;
   312     int32_t mFlags;
   313     int32_t mKeyCode;
   314     int32_t mScanCode;
   315     int32_t mMetaState;
   316     int32_t mRepeatCount;
   317     nsecs_t mDownTime;
   318     nsecs_t mEventTime;
   319 };
   321 /*
   322  * Motion events.
   323  */
   324 class MotionEvent : public InputEvent {
   325 public:
   326     virtual ~MotionEvent() { }
   328     virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
   330     inline int32_t getAction() const { return mAction; }
   332     inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
   334     inline int32_t getActionIndex() const {
   335         return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
   336                 >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
   337     }
   339     inline void setAction(int32_t action) { mAction = action; }
   341     inline int32_t getFlags() const { return mFlags; }
   343     inline void setFlags(int32_t flags) { mFlags = flags; }
   345     inline int32_t getEdgeFlags() const { return mEdgeFlags; }
   347     inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
   349     inline int32_t getMetaState() const { return mMetaState; }
   351     inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
   353     inline int32_t getButtonState() const { return mButtonState; }
   355     inline float getXOffset() const { return mXOffset; }
   357     inline float getYOffset() const { return mYOffset; }
   359     inline float getXPrecision() const { return mXPrecision; }
   361     inline float getYPrecision() const { return mYPrecision; }
   363     inline nsecs_t getDownTime() const { return mDownTime; }
   365     inline void setDownTime(nsecs_t downTime) { mDownTime = downTime; }
   367     inline size_t getPointerCount() const { return mPointerProperties.size(); }
   369     inline const PointerProperties* getPointerProperties(size_t pointerIndex) const {
   370         return &mPointerProperties[pointerIndex];
   371     }
   373     inline int32_t getPointerId(size_t pointerIndex) const {
   374         return mPointerProperties[pointerIndex].id;
   375     }
   377     inline int32_t getToolType(size_t pointerIndex) const {
   378         return mPointerProperties[pointerIndex].toolType;
   379     }
   381     inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
   383     const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
   385     float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
   387     inline float getRawX(size_t pointerIndex) const {
   388         return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
   389     }
   391     inline float getRawY(size_t pointerIndex) const {
   392         return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
   393     }
   395     float getAxisValue(int32_t axis, size_t pointerIndex) const;
   397     inline float getX(size_t pointerIndex) const {
   398         return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
   399     }
   401     inline float getY(size_t pointerIndex) const {
   402         return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
   403     }
   405     inline float getPressure(size_t pointerIndex) const {
   406         return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex);
   407     }
   409     inline float getSize(size_t pointerIndex) const {
   410         return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex);
   411     }
   413     inline float getTouchMajor(size_t pointerIndex) const {
   414         return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex);
   415     }
   417     inline float getTouchMinor(size_t pointerIndex) const {
   418         return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex);
   419     }
   421     inline float getToolMajor(size_t pointerIndex) const {
   422         return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex);
   423     }
   425     inline float getToolMinor(size_t pointerIndex) const {
   426         return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex);
   427     }
   429     inline float getOrientation(size_t pointerIndex) const {
   430         return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex);
   431     }
   433     inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
   435     inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
   436         return mSampleEventTimes[historicalIndex];
   437     }
   439     const PointerCoords* getHistoricalRawPointerCoords(
   440             size_t pointerIndex, size_t historicalIndex) const;
   442     float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
   443             size_t historicalIndex) const;
   445     inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
   446         return getHistoricalRawAxisValue(
   447                 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
   448     }
   450     inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
   451         return getHistoricalRawAxisValue(
   452                 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
   453     }
   455     float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
   457     inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
   458         return getHistoricalAxisValue(
   459                 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
   460     }
   462     inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
   463         return getHistoricalAxisValue(
   464                 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
   465     }
   467     inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
   468         return getHistoricalAxisValue(
   469                 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
   470     }
   472     inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
   473         return getHistoricalAxisValue(
   474                 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
   475     }
   477     inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
   478         return getHistoricalAxisValue(
   479                 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
   480     }
   482     inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
   483         return getHistoricalAxisValue(
   484                 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
   485     }
   487     inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
   488         return getHistoricalAxisValue(
   489                 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
   490     }
   492     inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
   493         return getHistoricalAxisValue(
   494                 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
   495     }
   497     inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
   498         return getHistoricalAxisValue(
   499                 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex);
   500     }
   502     ssize_t findPointerIndex(int32_t pointerId) const;
   504     void initialize(
   505             int32_t deviceId,
   506             int32_t source,
   507             int32_t action,
   508             int32_t flags,
   509             int32_t edgeFlags,
   510             int32_t metaState,
   511             int32_t buttonState,
   512             float xOffset,
   513             float yOffset,
   514             float xPrecision,
   515             float yPrecision,
   516             nsecs_t downTime,
   517             nsecs_t eventTime,
   518             size_t pointerCount,
   519             const PointerProperties* pointerProperties,
   520             const PointerCoords* pointerCoords);
   522     void copyFrom(const MotionEvent* other, bool keepHistory);
   524     void addSample(
   525             nsecs_t eventTime,
   526             const PointerCoords* pointerCoords);
   528     void offsetLocation(float xOffset, float yOffset);
   530     void scale(float scaleFactor);
   532 #ifdef HAVE_ANDROID_OS
   533     void transform(const SkMatrix* matrix);
   535     status_t readFromParcel(Parcel* parcel);
   536     status_t writeToParcel(Parcel* parcel) const;
   537 #endif
   539     static bool isTouchEvent(int32_t source, int32_t action);
   540     inline bool isTouchEvent() const {
   541         return isTouchEvent(mSource, mAction);
   542     }
   544     // Low-level accessors.
   545     inline const PointerProperties* getPointerProperties() const {
   546         return mPointerProperties.array();
   547     }
   548     inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }
   549     inline const PointerCoords* getSamplePointerCoords() const {
   550             return mSamplePointerCoords.array();
   551     }
   553 protected:
   554     int32_t mAction;
   555     int32_t mFlags;
   556     int32_t mEdgeFlags;
   557     int32_t mMetaState;
   558     int32_t mButtonState;
   559     float mXOffset;
   560     float mYOffset;
   561     float mXPrecision;
   562     float mYPrecision;
   563     nsecs_t mDownTime;
   564     Vector<PointerProperties> mPointerProperties;
   565     Vector<nsecs_t> mSampleEventTimes;
   566     Vector<PointerCoords> mSamplePointerCoords;
   567 };
   569 /*
   570  * Input event factory.
   571  */
   572 class InputEventFactoryInterface {
   573 protected:
   574     virtual ~InputEventFactoryInterface() { }
   576 public:
   577     InputEventFactoryInterface() { }
   579     virtual KeyEvent* createKeyEvent() = 0;
   580     virtual MotionEvent* createMotionEvent() = 0;
   581 };
   583 /*
   584  * A simple input event factory implementation that uses a single preallocated instance
   585  * of each type of input event that are reused for each request.
   586  */
   587 class PreallocatedInputEventFactory : public InputEventFactoryInterface {
   588 public:
   589     PreallocatedInputEventFactory() { }
   590     virtual ~PreallocatedInputEventFactory() { }
   592     virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
   593     virtual MotionEvent* createMotionEvent() { return & mMotionEvent; }
   595 private:
   596     KeyEvent mKeyEvent;
   597     MotionEvent mMotionEvent;
   598 };
   600 /*
   601  * An input event factory implementation that maintains a pool of input events.
   602  */
   603 class PooledInputEventFactory : public InputEventFactoryInterface {
   604 public:
   605     PooledInputEventFactory(size_t maxPoolSize = 20);
   606     virtual ~PooledInputEventFactory();
   608     virtual KeyEvent* createKeyEvent();
   609     virtual MotionEvent* createMotionEvent();
   611     void recycle(InputEvent* event);
   613 private:
   614     const size_t mMaxPoolSize;
   616     Vector<KeyEvent*> mKeyEventPool;
   617     Vector<MotionEvent*> mMotionEventPool;
   618 };
   620 } // namespace android
   622 #endif // _ANDROIDFW_INPUT_H

mercurial