blob: 8b66f693cc2c067fc0817196cd88e81a467c28ad [file] [log] [blame]
Jeff Brown5912f952013-07-01 19:10:31 -07001/*
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 Wright872db4f2014-04-22 15:03:51 -070022#include <input/InputEventLabels.h>
Jeff Brown5912f952013-07-01 19:10:31 -070023#include <utils/Errors.h>
Jeff Brown5912f952013-07-01 19:10:31 -070024#include <utils/PropertyMap.h>
25
26namespace android {
27
28enum {
29 /* Device id of the built in keyboard. */
30 DEVICE_ID_BUILT_IN_KEYBOARD = 0,
31
32 /* Device id of a generic virtual keyboard with a full layout that can be used
33 * to synthesize key events. */
34 DEVICE_ID_VIRTUAL_KEYBOARD = -1,
35};
36
37class KeyLayoutMap;
38class KeyCharacterMap;
39
40/**
41 * Loads the key layout map and key character map for a keyboard device.
42 */
43class KeyMap {
44public:
Siarhei Vishniakouec8f7252018-07-06 11:19:32 +010045 std::string keyLayoutFile;
Jeff Brown5912f952013-07-01 19:10:31 -070046 sp<KeyLayoutMap> keyLayoutMap;
47
Siarhei Vishniakouec8f7252018-07-06 11:19:32 +010048 std::string keyCharacterMapFile;
Jeff Brown5912f952013-07-01 19:10:31 -070049 sp<KeyCharacterMap> keyCharacterMap;
50
51 KeyMap();
52 ~KeyMap();
53
54 status_t load(const InputDeviceIdentifier& deviceIdenfier,
55 const PropertyMap* deviceConfiguration);
56
57 inline bool haveKeyLayout() const {
Siarhei Vishniakouec8f7252018-07-06 11:19:32 +010058 return !keyLayoutFile.empty();
Jeff Brown5912f952013-07-01 19:10:31 -070059 }
60
61 inline bool haveKeyCharacterMap() const {
Siarhei Vishniakouec8f7252018-07-06 11:19:32 +010062 return !keyCharacterMapFile.empty();
Jeff Brown5912f952013-07-01 19:10:31 -070063 }
64
65 inline bool isComplete() const {
66 return haveKeyLayout() && haveKeyCharacterMap();
67 }
68
69private:
Siarhei Vishniakouec8f7252018-07-06 11:19:32 +010070 bool probeKeyMap(const InputDeviceIdentifier& deviceIdentifier, const std::string& name);
71 status_t loadKeyLayout(const InputDeviceIdentifier& deviceIdentifier, const std::string& name);
Jeff Brown5912f952013-07-01 19:10:31 -070072 status_t loadKeyCharacterMap(const InputDeviceIdentifier& deviceIdentifier,
Siarhei Vishniakouec8f7252018-07-06 11:19:32 +010073 const std::string& name);
74 std::string getPath(const InputDeviceIdentifier& deviceIdentifier,
75 const std::string& name, InputDeviceConfigurationFileType type);
Jeff Brown5912f952013-07-01 19:10:31 -070076};
77
78/**
79 * Returns true if the keyboard is eligible for use as a built-in keyboard.
80 */
81extern bool isEligibleBuiltInKeyboard(const InputDeviceIdentifier& deviceIdentifier,
82 const PropertyMap* deviceConfiguration, const KeyMap* keyMap);
83
84/**
Jeff Brown5912f952013-07-01 19:10:31 -070085 * Updates a meta state field when a key is pressed or released.
86 */
87extern int32_t updateMetaState(int32_t keyCode, bool down, int32_t oldMetaState);
88
89/**
Dmitry Torokhov115f93e2015-09-17 18:04:50 -070090 * Normalizes the meta state such that if either the left or right modifier
91 * meta state bits are set then the result will also include the universal
92 * bit for that modifier.
93 */
94extern int32_t normalizeMetaState(int32_t oldMetaState);
95
96/**
Jeff Brown5912f952013-07-01 19:10:31 -070097 * Returns true if a key is a meta key like ALT or CAPS_LOCK.
98 */
99extern bool isMetaKey(int32_t keyCode);
100
101} // namespace android
102
103#endif // _LIBINPUT_KEYBOARD_H