diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/input/InputDevice.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/input/InputDevice.h b/include/input/InputDevice.h index 4672ad4310..d8256c191f 100644 --- a/include/input/InputDevice.h +++ b/include/input/InputDevice.h @@ -101,6 +101,9 @@ public: inline void setVibrator(bool hasVibrator) { mHasVibrator = hasVibrator; } inline bool hasVibrator() const { return mHasVibrator; } + inline void setButtonUnderPad(bool hasButton) { mHasButtonUnderPad = hasButton; } + inline bool hasButtonUnderPad() const { return mHasButtonUnderPad; } + inline const Vector<MotionRange>& getMotionRanges() const { return mMotionRanges; } @@ -115,6 +118,7 @@ private: int32_t mKeyboardType; sp<KeyCharacterMap> mKeyCharacterMap; bool mHasVibrator; + bool mHasButtonUnderPad; Vector<MotionRange> mMotionRanges; }; |