From patchwork Wed Oct 16 12:40:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Krupa X-Patchwork-Id: 283938 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 34A9F2C00C2 for ; Wed, 16 Oct 2013 23:42:14 +1100 (EST) Received: from localhost ([::1]:47067 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VWQQV-00025E-QU for incoming@patchwork.ozlabs.org; Wed, 16 Oct 2013 08:42:11 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35707) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VWQNl-0006w3-3D for qemu-devel@nongnu.org; Wed, 16 Oct 2013 08:39:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VWQNf-0002L7-4r for qemu-devel@nongnu.org; Wed, 16 Oct 2013 08:39:21 -0400 Received: from cantor2.suse.de ([195.135.220.15]:34046 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VWQNe-0002H9-Uq for qemu-devel@nongnu.org; Wed, 16 Oct 2013 08:39:15 -0400 Received: from relay1.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id C9FDCA598D; Wed, 16 Oct 2013 14:39:05 +0200 (CEST) From: Jan Krupa To: qemu-devel@nongnu.org Date: Wed, 16 Oct 2013 14:40:03 +0200 Message-Id: <3ad0fae079609a3ae01272ad5073708daec40c66.1381925918.git.JKrupa@suse.com> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: References: In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: , Jan Krupa , Anthony Liguori Subject: [Qemu-devel] [PATCH v2 1/4] qemu-char: add Czech characters to VNC keysyms X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This patch adds missing Czech characters to the VNC keysym table. Signed-off-by: Jan Krupa --- ui/vnc_keysym.h | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/ui/vnc_keysym.h b/ui/vnc_keysym.h index 6250bec..72c01d1 100644 --- a/ui/vnc_keysym.h +++ b/ui/vnc_keysym.h @@ -224,6 +224,14 @@ static const name2keysym_t name2keysym[]={ { "odoubleacute", 0x1f5}, { "udoubleacute", 0x1fb}, +/* Czech national characters */ +{ "ecaron", 0x1ec}, +{ "scaron", 0x1b9}, +{ "ccaron", 0x1e8}, +{ "rcaron", 0x1f8}, +{ "zcaron", 0x1be}, +{ "uring", 0x1f9}, + /* modifiers */ {"ISO_Level3_Shift", 0xfe03}, /* XK_ISO_Level3_Shift */ {"Control_L", 0xffe3}, /* XK_Control_L */