From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aavjx-0003r2-PE for qemu-devel@nongnu.org; Tue, 01 Mar 2016 20:38:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aavjt-0004XY-Lj for qemu-devel@nongnu.org; Tue, 01 Mar 2016 20:38:13 -0500 Received: from mail-io0-x243.google.com ([2607:f8b0:4001:c06::243]:34202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aavjt-0004X9-DG for qemu-devel@nongnu.org; Tue, 01 Mar 2016 20:38:09 -0500 Received: by mail-io0-x243.google.com with SMTP id l127so18034937iof.1 for ; Tue, 01 Mar 2016 17:38:09 -0800 (PST) From: Programmingkid Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Tue, 1 Mar 2016 20:38:07 -0500 Message-Id: <1ECB8C5E-820E-47DA-AFA5-FB72735B53DE@gmail.com> Mime-Version: 1.0 (Apple Message framework v1084) Subject: [Qemu-devel] [PATCH v2] qapi-schema.json: Add kp_equals and power keys List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , Eric Blake , Gerd Hoffmann Cc: qemu-devel qemu-devel Add kp_equals and power keys support to the QKeyCode enum of keys. Signed-off-by: John Arbuckle --- Added comment about kp_equals and power keys. qapi-schema.json | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 8d04897..5cf34bf 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3026,6 +3026,7 @@ # # 'unmapped' and 'pause' since 2.0 # 'ro' and 'kp_comma' since 2.4 +# 'kp_equals' and 'power' since 2.6 ## { 'enum': 'QKeyCode', 'data': [ 'unmapped', @@ -3044,7 +3045,7 @@ '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', - 'kp_comma' ] } + 'kp_comma', 'kp_equals', 'power' ] } =20 ## # @KeyValue --=20 1.7.5.4