[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 8/9] keymap: record multiple keysym -> keycode mappin
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL 8/9] keymap: record multiple keysym -> keycode mappings |
Date: |
Thu, 22 Feb 2018 11:23:16 +0100 |
Sometimes the same keysym can be created using different key
combinations. Record them all in the reverse keymap, not only
the first one.
Signed-off-by: Gerd Hoffmann <address@hidden>
Reviewed-by: Daniel P. Berrangé <address@hidden>
Message-id: address@hidden
---
ui/keymaps.c | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/ui/keymaps.c b/ui/keymaps.c
index cbdd65c767..1eba6d7057 100644
--- a/ui/keymaps.c
+++ b/ui/keymaps.c
@@ -29,7 +29,8 @@
#include "qemu/error-report.h"
struct keysym2code {
- uint16_t keycode;
+ uint32_t count;
+ uint16_t keycodes[4];
};
struct kbd_layout_t {
@@ -62,11 +63,18 @@ static void add_keysym(char *line, int keysym, int keycode,
kbd_layout_t *k)
keysym2code = g_hash_table_lookup(k->hash, GINT_TO_POINTER(keysym));
if (keysym2code) {
+ if (keysym2code->count < ARRAY_SIZE(keysym2code->keycodes)) {
+ keysym2code->keycodes[keysym2code->count++] = keycode;
+ } else {
+ warn_report("more than %zd keycodes for keysym %d",
+ ARRAY_SIZE(keysym2code->keycodes), keysym);
+ }
return;
}
keysym2code = g_new0(struct keysym2code, 1);
- keysym2code->keycode = keycode;
+ keysym2code->keycodes[0] = keycode;
+ keysym2code->count = 1;
g_hash_table_replace(k->hash, GINT_TO_POINTER(keysym), keysym2code);
trace_keymap_add(keysym, keycode, line);
}
@@ -185,7 +193,7 @@ int keysym2scancode(kbd_layout_t *k, int keysym)
return 0;
}
- return keysym2code->keycode;
+ return keysym2code->keycodes[0];
}
int keycode_is_keypad(kbd_layout_t *k, int keycode)
--
2.9.3
- [Qemu-devel] [PULL 0/9] Ui 20180222 patches, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 7/9] keymap: numpad keysyms and keycodes are fixed, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 9/9] keymap: consider modifier state when picking a mapping, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 8/9] keymap: record multiple keysym -> keycode mappings,
Gerd Hoffmann <=
- [Qemu-devel] [PULL 2/9] console/opengl: split up dpy_gl_cursor ops, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 4/9] egl-helpers: add alpha channel to texture format, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 1/9] sdl2: fix hotkey keyup, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 3/9] egl-headless: cursor_dmabuf: handle NULL cursor, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 5/9] keymap: make struct kbd_layout_t private to ui/keymaps.c, Gerd Hoffmann, 2018/02/22
- [Qemu-devel] [PULL 6/9] keymap: use glib hash for kbd_layout_t, Gerd Hoffmann, 2018/02/22
- Re: [Qemu-devel] [PULL 0/9] Ui 20180222 patches, Peter Maydell, 2018/02/22
- Re: [Qemu-devel] [PULL 0/9] Ui 20180222 patches, no-reply, 2018/02/24