diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-11-27 11:38:47 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-03-05 09:50:17 +0100 |
commit | 6567147588fabd87c1b633cc35760d45b71b8d41 (patch) | |
tree | c0fc1a0404e6af79fda957e83dd1899eb79f77a7 /ui/input.c | |
parent | c8b405b6798e3731eb9a71fcd753745f224ce698 (diff) | |
download | qemu-6567147588fabd87c1b633cc35760d45b71b8d41.tar.gz qemu-6567147588fabd87c1b633cc35760d45b71b8d41.tar.bz2 qemu-6567147588fabd87c1b633cc35760d45b71b8d41.zip |
input: keyboard: add helper functions to core
A bunch of helper functions to manage keyboard events,
to make life simpler for the ui code when submitting
keyboard events.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/input.c')
-rw-r--r-- | ui/input.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ui/input.c b/ui/input.c index 23c84f7254..61c8089749 100644 --- a/ui/input.c +++ b/ui/input.c @@ -81,3 +81,38 @@ void qemu_input_event_sync(void) s->events = 0; } } + +InputEvent *qemu_input_event_new_key(KeyValue *key, bool down) +{ + InputEvent *evt = g_new0(InputEvent, 1); + evt->key = g_new0(InputKeyEvent, 1); + evt->kind = INPUT_EVENT_KIND_KEY; + evt->key->key = key; + evt->key->down = down; + return evt; +} + +void qemu_input_event_send_key(QemuConsole *src, KeyValue *key, bool down) +{ + InputEvent *evt; + evt = qemu_input_event_new_key(key, down); + qemu_input_event_send(src, evt); + qemu_input_event_sync(); + qapi_free_InputEvent(evt); +} + +void qemu_input_event_send_key_number(QemuConsole *src, int num, bool down) +{ + KeyValue *key = g_new0(KeyValue, 1); + key->kind = KEY_VALUE_KIND_NUMBER; + key->number = num; + qemu_input_event_send_key(src, key, down); +} + +void qemu_input_event_send_key_qcode(QemuConsole *src, QKeyCode q, bool down) +{ + KeyValue *key = g_new0(KeyValue, 1); + key->kind = KEY_VALUE_KIND_QCODE; + key->qcode = q; + qemu_input_event_send_key(src, key, down); +} |