diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-12-11 01:21:22 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-01-23 15:08:12 +0200 |
commit | daad4aed62bfa471421f960179f0ac0fd78e8040 (patch) | |
tree | 86b7f69d180f253c51c4b567139d68850f9e365d /platform/linuxbsd/detect.py | |
parent | 9937915ad77059b63582ffd4e324afb26f467b76 (diff) | |
download | redot-engine-daad4aed62bfa471421f960179f0ac0fd78e8040.tar.gz |
Cleanup and unify keyboard input.
- Unify keycode values (secondary label printed on a key), remove unused hardcoded Latin-1 codes.
- Unify IME behaviour, add inline composition string display on Windows and X11.
- Add key_label (localized label printed on a key) value to the key events, and allow mapping actions to the unshifted Unicode events.
- Add support for physical keyboard (Bluetooth or Sidecar) handling on iOS.
- Add support for media key handling on macOS.
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 7bed1a3447..e2d29a14d3 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -192,6 +192,7 @@ def configure(env: "Environment"): env.ParseConfig("pkg-config xrandr --cflags") env.ParseConfig("pkg-config xrender --cflags") env.ParseConfig("pkg-config xi --cflags") + env.ParseConfig("pkg-config xkbcommon --cflags") if env["touch"]: env.Append(CPPDEFINES=["TOUCH_ENABLED"]) |