diff options
author | Peter Maydell | 2017-07-27 16:27:06 +0200 |
---|---|---|
committer | Peter Maydell | 2017-07-27 16:27:06 +0200 |
commit | e01151de165070c25a1b202e9e2392950bd7c8da (patch) | |
tree | ed0caa6f429d5b388e9c9bacf23fd84b928291e5 /include/ui | |
parent | Merge remote-tracking branch 'remotes/awilliam/tags/vfio-fixes-20170726.0' in... (diff) | |
parent | ps2: fix sending of PAUSE/BREAK scancodes (diff) | |
download | qemu-e01151de165070c25a1b202e9e2392950bd7c8da.tar.gz qemu-e01151de165070c25a1b202e9e2392950bd7c8da.tar.xz qemu-e01151de165070c25a1b202e9e2392950bd7c8da.zip |
Merge remote-tracking branch 'remotes/kraxel/tags/ui-20170727-pull-request' into staging
ui: keymap fixes for 2.10
# gpg: Signature made Thu 27 Jul 2017 15:00:06 BST
# gpg: using RSA key 0x4CB6D8EED3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
# gpg: aka "Gerd Hoffmann <gerd@kraxel.org>"
# gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
# Primary key fingerprint: A032 8CFF B93A 17A7 9901 FE7D 4CB6 D8EE D3E8 7138
* remotes/kraxel/tags/ui-20170727-pull-request:
ps2: fix sending of PAUSE/BREAK scancodes
ui: drop altgr and altgr_r QKeyCodes
ps2: enable multimedia keys
ui: add multimedia keys
ui: update keymaps
ui: move qemu_input_linux_to_qcode()
ui: add next and prior keysyms
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/input.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ui/input.h b/include/ui/input.h index 3cfd0f3363..c488585def 100644 --- a/include/ui/input.h +++ b/include/ui/input.h @@ -48,6 +48,7 @@ int qemu_input_key_value_to_number(const KeyValue *value); int qemu_input_key_value_to_qcode(const KeyValue *value); int qemu_input_key_value_to_scancode(const KeyValue *value, bool down, int *codes); +int qemu_input_linux_to_qcode(unsigned int lnx); InputEvent *qemu_input_event_new_btn(InputButton btn, bool down); void qemu_input_queue_btn(QemuConsole *src, InputButton btn, bool down); |