From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LWfPc-0002hT-Qp for qemu-devel@nongnu.org; Mon, 09 Feb 2009 18:19:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LWfPa-0002h1-Uc for qemu-devel@nongnu.org; Mon, 09 Feb 2009 18:19:35 -0500 Received: from [199.232.76.173] (port=43193 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LWfPa-0002gy-Kp for qemu-devel@nongnu.org; Mon, 09 Feb 2009 18:19:34 -0500 Received: from savannah.gnu.org ([199.232.41.3]:43579 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LWfPa-0000XW-Eg for qemu-devel@nongnu.org; Mon, 09 Feb 2009 18:19:34 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1LWfPZ-0002q4-Ue for qemu-devel@nongnu.org; Mon, 09 Feb 2009 23:19:34 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1LWfPZ-0002py-Id for qemu-devel@nongnu.org; Mon, 09 Feb 2009 23:19:33 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Mon, 09 Feb 2009 23:19:33 +0000 Subject: [Qemu-devel] [6586] Fix AltGr and dead keys with VNC Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 6586 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6586 Author: aurel32 Date: 2009-02-09 23:19:32 +0000 (Mon, 09 Feb 2009) Log Message: ----------- Fix AltGr and dead keys with VNC (Marcel Zumstein) Modified Paths: -------------- trunk/keymaps/modifiers trunk/vnc_keysym.h Modified: trunk/keymaps/modifiers =================================================================== --- trunk/keymaps/modifiers 2009-02-09 20:43:53 UTC (rev 6585) +++ trunk/keymaps/modifiers 2009-02-09 23:19:32 UTC (rev 6586) @@ -3,6 +3,7 @@ Alt_R 0xb8 Mode_switch 0xb8 +ISO_Level3_Shift 0xb8 Alt_L 0x38 Control_R 0x9d Modified: trunk/vnc_keysym.h =================================================================== --- trunk/vnc_keysym.h 2009-02-09 20:43:53 UTC (rev 6585) +++ trunk/vnc_keysym.h 2009-02-09 23:19:32 UTC (rev 6586) @@ -204,6 +204,7 @@ {"EuroSign", 0x20ac}, /* XK_EuroSign */ /* modifiers */ +{"ISO_Level3_Shift", 0xfe03}, /* XK_ISO_Level3_Shift */ {"Control_L", 0xffe3}, /* XK_Control_L */ {"Control_R", 0xffe4}, /* XK_Control_R */ {"Alt_L", 0xffe9}, /* XK_Alt_L */ @@ -286,6 +287,28 @@ {"Pause", 0xff13}, /* XK_Pause */ {"Escape", 0xff1b}, /* XK_Escape */ +/* dead keys */ +{"dead_grave", 0xfe50}, /* XK_dead_grave */ +{"dead_acute", 0xfe51}, /* XK_dead_acute */ +{"dead_circumflex", 0xfe52}, /* XK_dead_circumflex */ +{"dead_tilde", 0xfe53}, /* XK_dead_tilde */ +{"dead_macron", 0xfe54}, /* XK_dead_macron */ +{"dead_breve", 0xfe55}, /* XK_dead_breve */ +{"dead_abovedot", 0xfe56}, /* XK_dead_abovedot */ +{"dead_diaeresis", 0xfe57}, /* XK_dead_diaeresis */ +{"dead_abovering", 0xfe58}, /* XK_dead_abovering */ +{"dead_doubleacute", 0xfe59}, /* XK_dead_doubleacute */ +{"dead_caron", 0xfe5a}, /* XK_dead_caron */ +{"dead_cedilla", 0xfe5b}, /* XK_dead_cedilla */ +{"dead_ogonek", 0xfe5c}, /* XK_dead_ogonek */ +{"dead_iota", 0xfe5d}, /* XK_dead_iota */ +{"dead_voiced_sound", 0xfe5e}, /* XK_dead_voiced_sound */ +{"dead_semivoiced_sound", 0xfe5f}, /* XK_dead_semivoiced_sound */ +{"dead_belowdot", 0xfe60}, /* XK_dead_belowdot */ +{"dead_hook", 0xfe61}, /* XK_dead_hook */ +{"dead_horn", 0xfe62}, /* XK_dead_horn */ + + /* localized keys */ {"BackApostrophe", 0xff21}, {"Muhenkan", 0xff22},