Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 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 | */ |
| 16 | |
| 17 | #ifndef _LIBINPUT_KEYBOARD_H |
| 18 | #define _LIBINPUT_KEYBOARD_H |
| 19 | |
| 20 | #include <input/Input.h> |
| 21 | #include <input/InputDevice.h> |
Michael Wright | 872db4f | 2014-04-22 15:03:51 -0700 | [diff] [blame] | 22 | #include <input/InputEventLabels.h> |
Siarhei Vishniakou | 32f36ae | 2020-09-02 20:17:10 -0700 | [diff] [blame] | 23 | #include <input/PropertyMap.h> |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 24 | #include <utils/Errors.h> |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 25 | |
| 26 | namespace android { |
| 27 | |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 28 | class KeyLayoutMap; |
| 29 | class KeyCharacterMap; |
| 30 | |
| 31 | /** |
| 32 | * Loads the key layout map and key character map for a keyboard device. |
| 33 | */ |
| 34 | class KeyMap { |
| 35 | public: |
Siarhei Vishniakou | ec8f725 | 2018-07-06 11:19:32 +0100 | [diff] [blame] | 36 | std::string keyLayoutFile; |
Chris Ye | 1abffbd | 2020-08-18 12:50:12 -0700 | [diff] [blame] | 37 | std::shared_ptr<KeyLayoutMap> keyLayoutMap; |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 38 | |
Siarhei Vishniakou | ec8f725 | 2018-07-06 11:19:32 +0100 | [diff] [blame] | 39 | std::string keyCharacterMapFile; |
Chris Ye | 3a1e446 | 2020-08-12 10:13:15 -0700 | [diff] [blame] | 40 | std::shared_ptr<KeyCharacterMap> keyCharacterMap; |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 41 | |
| 42 | KeyMap(); |
| 43 | ~KeyMap(); |
| 44 | |
| 45 | status_t load(const InputDeviceIdentifier& deviceIdenfier, |
| 46 | const PropertyMap* deviceConfiguration); |
| 47 | |
| 48 | inline bool haveKeyLayout() const { |
Siarhei Vishniakou | ec8f725 | 2018-07-06 11:19:32 +0100 | [diff] [blame] | 49 | return !keyLayoutFile.empty(); |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | inline bool haveKeyCharacterMap() const { |
Siarhei Vishniakou | ec8f725 | 2018-07-06 11:19:32 +0100 | [diff] [blame] | 53 | return !keyCharacterMapFile.empty(); |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | inline bool isComplete() const { |
| 57 | return haveKeyLayout() && haveKeyCharacterMap(); |
| 58 | } |
| 59 | |
| 60 | private: |
Siarhei Vishniakou | ec8f725 | 2018-07-06 11:19:32 +0100 | [diff] [blame] | 61 | bool probeKeyMap(const InputDeviceIdentifier& deviceIdentifier, const std::string& name); |
| 62 | status_t loadKeyLayout(const InputDeviceIdentifier& deviceIdentifier, const std::string& name); |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 63 | status_t loadKeyCharacterMap(const InputDeviceIdentifier& deviceIdentifier, |
Siarhei Vishniakou | ec8f725 | 2018-07-06 11:19:32 +0100 | [diff] [blame] | 64 | const std::string& name); |
| 65 | std::string getPath(const InputDeviceIdentifier& deviceIdentifier, |
| 66 | const std::string& name, InputDeviceConfigurationFileType type); |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | /** |
| 70 | * Returns true if the keyboard is eligible for use as a built-in keyboard. |
| 71 | */ |
| 72 | extern bool isEligibleBuiltInKeyboard(const InputDeviceIdentifier& deviceIdentifier, |
| 73 | const PropertyMap* deviceConfiguration, const KeyMap* keyMap); |
| 74 | |
| 75 | /** |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 76 | * Updates a meta state field when a key is pressed or released. |
| 77 | */ |
| 78 | extern int32_t updateMetaState(int32_t keyCode, bool down, int32_t oldMetaState); |
| 79 | |
| 80 | /** |
Dmitry Torokhov | 115f93e | 2015-09-17 18:04:50 -0700 | [diff] [blame] | 81 | * Normalizes the meta state such that if either the left or right modifier |
| 82 | * meta state bits are set then the result will also include the universal |
| 83 | * bit for that modifier. |
| 84 | */ |
| 85 | extern int32_t normalizeMetaState(int32_t oldMetaState); |
| 86 | |
| 87 | /** |
Jeff Brown | 5912f95 | 2013-07-01 19:10:31 -0700 | [diff] [blame] | 88 | * Returns true if a key is a meta key like ALT or CAPS_LOCK. |
| 89 | */ |
| 90 | extern bool isMetaKey(int32_t keyCode); |
| 91 | |
| 92 | } // namespace android |
| 93 | |
| 94 | #endif // _LIBINPUT_KEYBOARD_H |