From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49462) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WJO5e-0001cZ-KI for qemu-devel@nongnu.org; Fri, 28 Feb 2014 09:07:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WJO5X-0003dm-Qk for qemu-devel@nongnu.org; Fri, 28 Feb 2014 09:07:02 -0500 Received: from mx1.redhat.com ([209.132.183.28]:60765) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WJO5X-0003dL-J2 for qemu-devel@nongnu.org; Fri, 28 Feb 2014 09:06:55 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s1SE6sur016473 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 28 Feb 2014 09:06:54 -0500 From: Gerd Hoffmann Date: Fri, 28 Feb 2014 15:06:15 +0100 Message-Id: <1393596409-28934-5-git-send-email-kraxel@redhat.com> In-Reply-To: <1393596409-28934-1-git-send-email-kraxel@redhat.com> References: <1393596409-28934-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 04/38] input: qapi: add unmapped key List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Markus Armbruster , Gerd Hoffmann , Luiz Capitulino Simplifies building something -> QkeyCode mapping tables. Uninitialized entries can easily identified then. Signed-off-by: Gerd Hoffmann Reviewed-by: Eric Blake --- qapi-schema.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qapi-schema.json b/qapi-schema.json index 0c6090e..f044f05 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3508,9 +3508,12 @@ # This is used by the send-key command. # # Since: 1.3.0 +# +# 'unmapped' since 2.0 ## { 'enum': 'QKeyCode', - 'data': [ 'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl', + 'data': [ 'unmapped', + 'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl', 'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right', -- 1.8.3.1