blob: f4d7419c02c635cdf5e9c591a4e4aaf9e77f9111 [file] [log] [blame]
Patrick Williams213cb262021-08-07 19:21:33 -05001Upstream-Status: Submitted [https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/79]
2Signed-off-by: Ross Burton <ross.burton@arm.com>
3
4From e92efc63acd7b377faa9e534f4bf52aaa86be2a9 Mon Sep 17 00:00:00 2001
5From: Peter Hutterer <peter.hutterer@who-t.net>
6Date: Tue, 27 Jul 2021 11:46:19 +1000
7Subject: [PATCH] makekeys: handle the new _EVDEVK xorgproto symbols
8
9These keys are all defined through a macro in the form:
10 #define XF86XK_BrightnessAuto _EVDEVK(0x0F4)
11
12The _EVDEVK macro is simply an offset of 0x10081000.
13Let's parse these lines correctly so those keysyms end up in our
14hashtables.
15
16Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
17---
18 src/util/makekeys.c | 12 ++++++++++++
19 1 file changed, 12 insertions(+)
20
21diff --git a/src/util/makekeys.c b/src/util/makekeys.c
22index e847ef4c..4896cc53 100644
23--- a/src/util/makekeys.c
24+++ b/src/util/makekeys.c
25@@ -78,6 +78,18 @@ parse_line(const char *buf, char *key, KeySym *val, char *prefix)
26 return 1;
27 }
28
29+ /* See if we can parse one of the _EVDEVK symbols */
30+ i = sscanf(buf, "#define %127s _EVDEVK(0x%lx)", key, val);
31+ if (i == 2 && (tmp = strstr(key, "XK_"))) {
32+ memcpy(prefix, key, (size_t)(tmp - key));
33+ prefix[tmp - key] = '\0';
34+ tmp += 3;
35+ memmove(key, tmp, strlen(tmp) + 1);
36+
37+ *val += 0x10081000;
38+ return 1;
39+ }
40+
41 /* Now try to catch alias (XK_foo XK_bar) definitions, and resolve them
42 * immediately: if the target is in the form XF86XK_foo, we need to
43 * canonicalise this to XF86foo before we do the lookup. */
44--
45GitLab
46