diff options
author | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2016-12-28 04:55:51 +0900 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-01-10 08:14:20 +0100 |
commit | e934644126f214a99bb3b3201f73fe7f0c579ef7 (patch) | |
tree | 0d522d9cb167bee480accc28277401602c724336 /qapi-schema.json | |
parent | f27ff81070b0cc4f5906361964563cc680febe2d (diff) | |
download | qemu-e934644126f214a99bb3b3201f73fe7f0c579ef7.zip qemu-e934644126f214a99bb3b3201f73fe7f0c579ef7.tar.gz qemu-e934644126f214a99bb3b3201f73fe7f0c579ef7.tar.bz2 |
ps2: Fix lost scancodes by recent changes
With "ps2: use QEMU qcodes instead of scancodes", key handling was
changed to qcode base. But all scancodes are not converted to new one.
This adds some missing qcodes/scancodes what I found in using.
[set1 and set3 are from <hpoussin@reactos.org>]
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Reviewed-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index a0d3b5d..eab8d4a 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3618,6 +3618,9 @@ # @kp_comma: since 2.4 # @kp_equals: since 2.6 # @power: since 2.6 +# @hiragana: since 2.9 +# @henkan: since 2.9 +# @yen: since 2.9 # # An enumeration of key name. # @@ -3642,7 +3645,8 @@ 'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end', 'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again', 'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut', - 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro', + 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', + 'ro', 'hiragana', 'henkan', 'yen', 'kp_comma', 'kp_equals', 'power' ] } ## |