diff options
author | 2023-03-30 13:34:54 +0800 | |
---|---|---|
committer | 2023-03-31 08:45:11 +0800 | |
commit | aadf8d5cc088c6dbe063de5da651a83466992512 (patch) | |
tree | d33cdb1974f3d1053f62d91f5e413ddb2beb2e4f /include/input/KeyLayoutMap.h | |
parent | c4a353c0ad052e95bfce5958f2de25307fa32106 (diff) |
hasKeycodeLocked() also checks usage codes
Key map can use both scan code and usage code.
Adding usage code check to avoid misjudgment.
Bug: 275526611
Test:
In Android TV, pairing a BT RCU with keylayout which
has usage page/id for DPAD. In PlayStore app search
box, make sure user can move focus to search result
by pressing dpad DOWN key.
Change-Id: I70687d308899537e457192458176b1553c350f14
Diffstat (limited to 'include/input/KeyLayoutMap.h')
-rw-r--r-- | include/input/KeyLayoutMap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/input/KeyLayoutMap.h b/include/input/KeyLayoutMap.h index 1da78aa0c1..d36d28cac9 100644 --- a/include/input/KeyLayoutMap.h +++ b/include/input/KeyLayoutMap.h @@ -73,6 +73,7 @@ public: int32_t* outKeyCode, uint32_t* outFlags) const; std::vector<int32_t> findScanCodesForKey(int32_t keyCode) const; std::optional<int32_t> findScanCodeForLed(int32_t ledCode) const; + std::vector<int32_t> findUsageCodesForKey(int32_t keyCode) const; std::optional<int32_t> findUsageCodeForLed(int32_t ledCode) const; std::optional<AxisInfo> mapAxis(int32_t scanCode) const; |