From daad4aed62bfa471421f960179f0ac0fd78e8040 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Sun, 11 Dec 2022 01:21:22 +0200 Subject: 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 --- platform/linuxbsd/detect.py | 1 + 1 file changed, 1 insertion(+) (limited to 'platform/linuxbsd/detect.py') 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"]) -- cgit v1.2.3