summaryrefslogtreecommitdiffstats
path: root/qapi-schema.json
diff options
context:
space:
mode:
authorPeter Maydell2014-10-02 16:01:48 +0200
committerPeter Maydell2014-10-02 16:01:48 +0200
commitb00a0ddb31a393b8386d30a9bef4d9bbb249e7ec (patch)
treee08da05998e93519c178cdfe5ae01b319c0be14d /qapi-schema.json
parentMerge remote-tracking branch 'remotes/kraxel/tags/pull-console-20141002-1' in... (diff)
parentadd input-send-event command (diff)
downloadqemu-b00a0ddb31a393b8386d30a9bef4d9bbb249e7ec.tar.gz
qemu-b00a0ddb31a393b8386d30a9bef4d9bbb249e7ec.tar.xz
qemu-b00a0ddb31a393b8386d30a9bef4d9bbb249e7ec.zip
Merge remote-tracking branch 'remotes/kraxel/tags/pull-input-20141002-1' into staging
input monitor patches: fix send-key release ordering and new input-send-event command # gpg: Signature made Thu 02 Oct 2014 09:10:44 BST using RSA key ID D3E87138 # 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>" * remotes/kraxel/tags/pull-input-20141002-1: add input-send-event command input: fix send-key monitor command release event ordering Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r--qapi-schema.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json
index 4bfaf20ebe..2e9e261e0c 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3233,6 +3233,23 @@
'abs' : 'InputMoveEvent' } }
##
+# @input-send-event
+#
+# Send input event(s) to guest.
+#
+# @console: Which console to send event(s) to.
+#
+# @events: List of InputEvent union.
+#
+# Returns: Nothing on success.
+#
+# Since: 2.2
+#
+##
+{ 'command': 'input-send-event',
+ 'data': { 'console':'int', 'events': [ 'InputEvent' ] } }
+
+##
# @NumaOptions
#
# A discriminated record of NUMA options. (for OptsVisitor)