user32: Retrieve the key state for GetAsyncKeyState from the server.
[wine] / dlls / winex11.drv / keyboard.c
1 /*
2  * X11 keyboard driver
3  *
4  * Copyright 1993 Bob Amstadt
5  * Copyright 1996 Albrecht Kleine
6  * Copyright 1997 David Faure
7  * Copyright 1998 Morten Welinder
8  * Copyright 1998 Ulrich Weigand
9  * Copyright 1999 Ove Kåven
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with this library; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24  */
25
26 #include "config.h"
27
28 #include <X11/Xatom.h>
29 #include <X11/keysym.h>
30 #include <X11/Xlib.h>
31 #include <X11/Xresource.h>
32 #include <X11/Xutil.h>
33 #ifdef HAVE_X11_XKBLIB_H
34 #include <X11/XKBlib.h>
35 #endif
36
37 #include <ctype.h>
38 #include <stdarg.h>
39 #include <string.h>
40
41 #define NONAMELESSUNION
42 #define NONAMELESSSTRUCT
43 #include "windef.h"
44 #include "winbase.h"
45 #include "wingdi.h"
46 #include "winuser.h"
47 #include "winreg.h"
48 #include "winnls.h"
49 #include "x11drv.h"
50 #include "wine/server.h"
51 #include "wine/unicode.h"
52 #include "wine/debug.h"
53
54 /* log format (add 0-padding as appropriate):
55     keycode  %u  as in output from xev
56     keysym   %lx as in X11/keysymdef.h
57     vkey     %X  as in winuser.h
58     scancode %x
59 */
60 WINE_DEFAULT_DEBUG_CHANNEL(keyboard);
61 WINE_DECLARE_DEBUG_CHANNEL(key);
62
63 /* key state table bits:
64   0x80 -> key is pressed
65   0x40 -> key got pressed since last time
66   0x01 -> key is toggled
67 */
68 static BYTE key_state_table[256];
69
70 static BYTE TrackSysKey = 0; /* determine whether ALT key up will cause a WM_SYSKEYUP
71                                 or a WM_KEYUP message */
72
73 static int min_keycode, max_keycode, keysyms_per_keycode;
74 static WORD keyc2vkey[256], keyc2scan[256];
75
76 static int NumLockMask, ScrollLockMask, AltGrMask; /* mask in the XKeyEvent state */
77
78 static char KEYBOARD_MapDeadKeysym(KeySym keysym);
79
80 /* Keyboard translation tables */
81 #define MAIN_LEN 49
82 static const WORD main_key_scan_qwerty[MAIN_LEN] =
83 {
84 /* this is my (102-key) keyboard layout, sorry if it doesn't quite match yours */
85  /* `    1    2    3    4    5    6    7    8    9    0    -    = */
86    0x29,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,
87  /* q    w    e    r    t    y    u    i    o    p    [    ] */
88    0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1A,0x1B,
89  /* a    s    d    f    g    h    j    k    l    ;    '    \ */
90    0x1E,0x1F,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x2B,
91  /* z    x    c    v    b    n    m    ,    .    / */
92    0x2C,0x2D,0x2E,0x2F,0x30,0x31,0x32,0x33,0x34,0x35,
93    0x56 /* the 102nd key (actually to the right of l-shift) */
94 };
95
96 static const WORD main_key_scan_abnt_qwerty[MAIN_LEN] =
97 {
98  /* `    1    2    3    4    5    6    7    8    9    0    -    = */
99    0x29,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,
100  /* q    w    e    r    t    y    u    i    o    p    [    ] */
101    0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1A,0x1B,
102  /* a    s    d    f    g    h    j    k    l    ;    '    \ */
103    0x1E,0x1F,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x2B,
104  /* \      z    x    c    v    b    n    m    ,    .    / */
105    0x5e,0x2C,0x2D,0x2E,0x2F,0x30,0x31,0x32,0x33,0x34,0x35,
106    0x56, /* the 102nd key (actually to the right of l-shift) */
107 };
108
109 static const WORD main_key_scan_dvorak[MAIN_LEN] =
110 {
111  /* `    1    2    3    4    5    6    7    8    9    0    [    ] */
112    0x29,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x1A,0x1B,
113  /* '    ,    .    p    y    f    g    c    r    l    /    = */
114    0x28,0x33,0x34,0x19,0x15,0x21,0x22,0x2E,0x13,0x26,0x35,0x0D,
115  /* a    o    e    u    i    d    h    t    n    s    -    \ */
116    0x1E,0x18,0x12,0x16,0x17,0x20,0x23,0x14,0x31,0x1F,0x0C,0x2B,
117  /* ;    q    j    k    x    b    m    w    v    z */
118    0x27,0x10,0x24,0x25,0x2D,0x30,0x32,0x11,0x2F,0x2C,
119    0x56 /* the 102nd key (actually to the right of l-shift) */
120 };
121
122 static const WORD main_key_scan_qwerty_jp106[MAIN_LEN] =
123 {
124   /* this is my (106-key) keyboard layout, sorry if it doesn't quite match yours */
125  /* 1    2    3    4    5    6    7    8    9    0    -    ^    \ */
126    0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x29,
127  /* q    w    e    r    t    y    u    i    o    p    @    [ */
128    0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1A,0x1B,
129  /* a    s    d    f    g    h    j    k    l    ;    :    ] */
130    0x1E,0x1F,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x2B,
131  /* z    x    c    v    b    n    m    ,    .    / */
132    0x2C,0x2D,0x2E,0x2F,0x30,0x31,0x32,0x33,0x34,0x35,
133    0x56 /* the 102nd key (actually to the right of l-shift) */
134 };
135
136 static const WORD main_key_scan_qwerty_macjp[MAIN_LEN] =
137 {
138  /* 1    2    3    4    5    6    7    8    9    0    -    ^    \ */
139    0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x7d,
140  /* q    w    e    r    t    y    u    i    o    p    @    [ */
141    0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1A,0x1B,
142  /* a    s    d    f    g    h    j    k    l    ;    :    ] */
143    0x1E,0x1F,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x2B,
144  /* z    x    c    v    b    n    m    ,    .    / */
145    0x2C,0x2D,0x2E,0x2F,0x30,0x31,0x32,0x33,0x34,0x35,
146    0x73 /* the 102nd key (actually to the right of l-shift) */
147 };
148
149
150 static const WORD main_key_vkey_qwerty[MAIN_LEN] =
151 {
152 /* NOTE: this layout must concur with the scan codes layout above */
153    VK_OEM_3,'1','2','3','4','5','6','7','8','9','0',VK_OEM_MINUS,VK_OEM_PLUS,
154    'Q','W','E','R','T','Y','U','I','O','P',VK_OEM_4,VK_OEM_6,
155    'A','S','D','F','G','H','J','K','L',VK_OEM_1,VK_OEM_7,VK_OEM_5,
156    'Z','X','C','V','B','N','M',VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_2,
157    VK_OEM_102 /* the 102nd key (actually to the right of l-shift) */
158 };
159
160 static const WORD main_key_vkey_qwerty_jp106[MAIN_LEN] =
161 {
162 /* NOTE: this layout must concur with the scan codes layout above */
163    '1','2','3','4','5','6','7','8','9','0',VK_OEM_MINUS,VK_OEM_PLUS,VK_OEM_3,
164    'Q','W','E','R','T','Y','U','I','O','P',VK_OEM_4,VK_OEM_6,
165    'A','S','D','F','G','H','J','K','L',VK_OEM_1,VK_OEM_7,VK_OEM_5,
166    'Z','X','C','V','B','N','M',VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_2,
167    VK_OEM_102 /* the 102nd key (actually to the right of l-shift) */
168 };
169
170 static const WORD main_key_vkey_qwerty_macjp[MAIN_LEN] =
171 {
172 /* NOTE: this layout must concur with the scan codes layout above */
173    '1','2','3','4','5','6','7','8','9','0',VK_OEM_MINUS,VK_OEM_7,VK_OEM_5,
174    'Q','W','E','R','T','Y','U','I','O','P',VK_OEM_3,VK_OEM_4,
175    'A','S','D','F','G','H','J','K','L',VK_OEM_PLUS,VK_OEM_1,VK_OEM_6,
176    'Z','X','C','V','B','N','M',VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_2,
177    VK_OEM_102 /* the 102nd key (actually to the right of l-shift) */
178 };
179
180 static const WORD main_key_vkey_qwerty_v2[MAIN_LEN] =
181 {
182 /* NOTE: this layout must concur with the scan codes layout above */
183    VK_OEM_5,'1','2','3','4','5','6','7','8','9','0',VK_OEM_PLUS,VK_OEM_4,
184    'Q','W','E','R','T','Y','U','I','O','P',VK_OEM_6,VK_OEM_1,
185    'A','S','D','F','G','H','J','K','L',VK_OEM_3,VK_OEM_7,VK_OEM_2,
186    'Z','X','C','V','B','N','M',VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_MINUS,
187    VK_OEM_102 /* the 102nd key (actually to the right of l-shift) */
188 };
189
190 static const WORD main_key_vkey_qwertz[MAIN_LEN] =
191 {
192 /* NOTE: this layout must concur with the scan codes layout above */
193    VK_OEM_3,'1','2','3','4','5','6','7','8','9','0',VK_OEM_MINUS,VK_OEM_PLUS,
194    'Q','W','E','R','T','Z','U','I','O','P',VK_OEM_4,VK_OEM_6,
195    'A','S','D','F','G','H','J','K','L',VK_OEM_1,VK_OEM_7,VK_OEM_5,
196    'Y','X','C','V','B','N','M',VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_2,
197    VK_OEM_102 /* the 102nd key (actually to the right of l-shift) */
198 };
199
200 static const WORD main_key_vkey_abnt_qwerty[MAIN_LEN] =
201 {
202 /* NOTE: this layout must concur with the scan codes layout above */
203    VK_OEM_3,'1','2','3','4','5','6','7','8','9','0',VK_OEM_MINUS,VK_OEM_PLUS,
204    'Q','W','E','R','T','Y','U','I','O','P',VK_OEM_4,VK_OEM_6,
205    'A','S','D','F','G','H','J','K','L',VK_OEM_1,VK_OEM_8,VK_OEM_5,
206    VK_OEM_7,'Z','X','C','V','B','N','M',VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_2,
207    VK_OEM_102, /* the 102nd key (actually to the right of l-shift) */
208 };
209
210 static const WORD main_key_vkey_azerty[MAIN_LEN] =
211 {
212 /* NOTE: this layout must concur with the scan codes layout above */
213    VK_OEM_7,'1','2','3','4','5','6','7','8','9','0',VK_OEM_4,VK_OEM_PLUS,
214    'A','Z','E','R','T','Y','U','I','O','P',VK_OEM_6,VK_OEM_1,
215    'Q','S','D','F','G','H','J','K','L','M',VK_OEM_3,VK_OEM_5,
216    'W','X','C','V','B','N',VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_2,VK_OEM_8,
217    VK_OEM_102 /* the 102nd key (actually to the right of l-shift) */
218 };
219
220 static const WORD main_key_vkey_dvorak[MAIN_LEN] =
221 {
222 /* NOTE: this layout must concur with the scan codes layout above */
223    VK_OEM_3,'1','2','3','4','5','6','7','8','9','0',VK_OEM_4,VK_OEM_6,
224    VK_OEM_7,VK_OEM_COMMA,VK_OEM_PERIOD,'P','Y','F','G','C','R','L',VK_OEM_2,VK_OEM_PLUS,
225    'A','O','E','U','I','D','H','T','N','S',VK_OEM_MINUS,VK_OEM_5,
226    VK_OEM_1,'Q','J','K','X','B','M','W','V','Z',
227    VK_OEM_102 /* the 102nd key (actually to the right of l-shift) */
228 };
229
230 /*** DEFINE YOUR NEW LANGUAGE-SPECIFIC MAPPINGS BELOW, SEE EXISTING TABLES */
231
232 /* the VK mappings for the main keyboard will be auto-assigned as before,
233    so what we have here is just the character tables */
234 /* order: Normal, Shift, AltGr, Shift-AltGr */
235 /* We recommend you write just what is guaranteed to be correct (i.e. what's
236    written on the keycaps), not the bunch of special characters behind AltGr
237    and Shift-AltGr if it can vary among different X servers */
238 /* These tables serve to guess the keyboard type and scancode mapping.
239    Complete modeling is not important, identification/discrimination is. */
240 /* Remember that your 102nd key (to the right of l-shift) should be on a
241    separate line, see existing tables */
242 /* If Wine fails to match your new table, use WINEDEBUG=+key to find out why */
243 /* Remember to also add your new table to the layout index table far below! */
244
245 /*** United States keyboard layout (mostly contributed by Uwe Bonnes) */
246 static const char main_key_US[MAIN_LEN][4] =
247 {
248  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
249  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
250  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
251  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?"
252 };
253
254 /*** United States keyboard layout (phantom key version) */
255 /* (XFree86 reports the <> key even if it's not physically there) */
256 static const char main_key_US_phantom[MAIN_LEN][4] =
257 {
258  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
259  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
260  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
261  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?",
262  "<>" /* the phantom key */
263 };
264
265 /*** United States keyboard layout (dvorak version) */
266 static const char main_key_US_dvorak[MAIN_LEN][4] =
267 {
268  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","[{","]}",
269  "'\"",",<",".>","pP","yY","fF","gG","cC","rR","lL","/?","=+",
270  "aA","oO","eE","uU","iI","dD","hH","tT","nN","sS","-_","\\|",
271  ";:","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ"
272 };
273
274 /*** British keyboard layout */
275 static const char main_key_UK[MAIN_LEN][4] =
276 {
277  "`","1!","2\"","3£","4$","5%","6^","7&","8*","9(","0)","-_","=+",
278  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
279  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'@","#~",
280  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?",
281  "\\|"
282 };
283
284 /*** French keyboard layout (setxkbmap fr) */
285 static const char main_key_FR[MAIN_LEN][4] =
286 {
287  "²","&1","é2","\"3","'4","(5","-6","è7","_8","ç9","à0",")°","=+",
288  "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","^¨","$£",
289  "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","ù%","*µ",
290  "wW","xX","cC","vV","bB","nN",",?",";.",":/","!§",
291  "<>"
292 };
293
294 /*** Icelandic keyboard layout (setxkbmap is) */
295 static const char main_key_IS[MAIN_LEN][4] =
296 {
297  "°","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","öÖ","-_",
298  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","ðÐ","'?",
299  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","æÆ","´Ä","+*",
300  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","þÞ",
301  "<>"
302 };
303
304 /* All german keyb layout tables have the acute/apostrophe symbol next to
305  * the BACKSPACE key removed (replaced with NULL which is ignored by the
306  * detection code).
307  * This was done because the mapping of the acute (and apostrophe) is done
308  * differently in various xkb-data/xkeyboard-config versions. Some replace
309  * the acute with a normal apostrophe, so that the apostrophe is found twice
310  * on the keyboard (one next to BACKSPACE and one next to ENTER).
311  * Others put the acute and grave accents on the key left of BACKSPACE.
312  * More information on the fd.o bugtracker:
313  * https://bugs.freedesktop.org/show_bug.cgi?id=11514
314  * Keys reachable via AltGr (@, [], ~, \, |, {}) differ completely
315  * among PC and Mac keyboards, so these are not listed.
316  */
317
318 /*** German keyboard layout (setxkbmap de [-variant nodeadkeys|deadacute etc.]) */
319 static const char main_key_DE[MAIN_LEN][4] =
320 {
321  "^°","1!","2\"","3§","4$","5%","6&","7/","8(","9)","0=","ß?","",
322  "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","üÜ","+*",
323  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","öÖ","äÄ","#'",
324  "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_",
325  "<>"
326 };
327
328 /*** Swiss German keyboard layout (setxkbmap ch -variant de) */
329 static const char main_key_SG[MAIN_LEN][4] =
330 {
331  "§°","1+","2\"","3*","4ç","5%","6&","7/","8(","9)","0=","'?","^`",
332  "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","üè","¨!",
333  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","öé","äà","$£",
334  "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_",
335  "<>"
336 };
337
338 /*** Swiss French keyboard layout (setxkbmap ch -variant fr) */
339 static const char main_key_SF[MAIN_LEN][4] =
340 {
341  "§°","1+","2\"","3*","4ç","5%","6&","7/","8(","9)","0=","'?","^`",
342  "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","èü","¨!",
343  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","éö","àä","$£",
344  "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_",
345  "<>"
346 };
347
348 /*** Norwegian keyboard layout (contributed by Ove Kåven) */
349 static const char main_key_NO[MAIN_LEN][4] =
350 {
351  "|§","1!","2\"@","3#£","4¤$","5%","6&","7/{","8([","9)]","0=}","+?","\\`´",
352  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","åÅ","¨^~",
353  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","øØ","æÆ","'*",
354  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
355  "<>"
356 };
357
358 /*** Danish keyboard layout (setxkbmap dk) */
359 static const char main_key_DA[MAIN_LEN][4] =
360 {
361  "½§","1!","2\"","3#","4¤","5%","6&","7/","8(","9)","0=","+?","´`",
362  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","åÅ","¨^",
363  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","æÆ","øØ","'*",
364  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
365  "<>"
366 };
367
368 /*** Swedish keyboard layout (setxkbmap se) */
369 static const char main_key_SE[MAIN_LEN][4] =
370 {
371  "§½","1!","2\"","3#","4¤","5%","6&","7/","8(","9)","0=","+?","´`",
372  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","åÅ","¨^",
373  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","öÖ","äÄ","'*",
374  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
375  "<>"
376 };
377
378 /*** Estonian keyboard layout (setxkbmap ee) */
379 static const char main_key_ET[MAIN_LEN][4] =
380 {
381  "·~","1!","2\"","3#","4¤","5%","6&","7/","8(","9)","0=","+?","´`",
382  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","üÜ","õÕ",
383  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","öÖ","äÄ","'*",
384  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
385  "<>"
386 };
387
388 /*** Canadian French keyboard layout (setxkbmap ca_enhanced) */
389 static const char main_key_CF[MAIN_LEN][4] =
390 {
391  "#|\\","1!±","2\"@","3/£","4$¢","5%¤","6?¬","7&¦","8*²","9(³","0)¼","-_½","=+¾",
392  "qQ","wW","eE","rR","tT","yY","uU","iI","oO§","pP¶","^^[","¸¨]",
393  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:~","``{","<>}",
394  "zZ","xX","cC","vV","bB","nN","mM",",'-",".","éÉ",
395  "«»°"
396 };
397
398 /*** Canadian French keyboard layout (setxkbmap ca -variant fr) */
399 static const char main_key_CA_fr[MAIN_LEN][4] =
400 {
401  "#|","1!","2\"","3/","4$","5%","6?","7&","8*","9(","0)","-_","=+",
402  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","^^","¸¨",
403  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","``","<>",
404  "zZ","xX","cC","vV","bB","nN","mM",",'",".","éÉ",
405  "«»"
406 };
407
408 /*** Canadian keyboard layout (setxkbmap ca) */
409 static const char main_key_CA[MAIN_LEN][4] =
410 {
411  "/\\","1!¹¡","2@²","3#³£","4$¼¤","5%½","6?¾","7&","8*","9(","0)","-_","=+",
412  "qQ","wW","eE","rR","tT","yY","uU","iI","oOøØ","pPþÞ","^¨¨","çÇ~",
413  "aAæÆ","sSߧ","dDðÐ","fF","gG","hH","jJ","kK","lL",";:´","èÈ","àÀ",
414  "zZ","xX","cC¢©","vV","bB","nN","mMµº",",'",".\"·÷","éÉ",
415  "ùÙ"
416 };
417
418 /*** Portuguese keyboard layout (setxkbmap pt) */
419 static const char main_key_PT[MAIN_LEN][4] =
420 {
421  "\\|","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","«»",
422  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","+*","´`",
423  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","çÇ","ºª","~^",
424  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
425  "<>"
426 };
427
428 /*** Italian keyboard layout (setxkbmap it) */
429 static const char main_key_IT[MAIN_LEN][4] =
430 {
431  "\\|","1!","2\"","3£","4$","5%","6&","7/","8(","9)","0=","'?","ì^",
432  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","èé","+*",
433  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","òç","à°","ù§",
434  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
435  "<>"
436 };
437
438 /*** Finnish keyboard layout (setxkbmap fi) */
439 static const char main_key_FI[MAIN_LEN][4] =
440 {
441  "§½","1!","2\"","3#","4¤","5%","6&","7/","8(","9)","0=","+?","´`",
442  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","åÅ","¨^",
443  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","öÖ","äÄ","'*",
444  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
445  "<>"
446 };
447
448 /*** Bulgarian bds keyboard layout */
449 static const char main_key_BG_bds[MAIN_LEN][4] =
450 {
451  "`~()","1!","2@2?","3#3+","4$4\"","5%","6^6=","7&7:","8*8/","9(","0)","-_-I","=+.V",
452  "qQ,û","wWóÓ","eEåÅ","rRèÈ","tTøØ","yYùÙ","uUêÊ","iIñÑ","oOäÄ","pPçÇ","[{öÖ","]};",
453  "aAüÜ","sSÿß","dDàÀ","fFîÎ","gGæÆ","hHãÃ","jJòÒ","kKíÍ","lLâÂ",";:ìÌ","'\"÷×","\\|'Û",
454  "zZþÞ","xXéÉ","cCúÚ","vVýÝ","bBôÔ","nNõÕ","mMïÏ",",<ðÐ",".>ëË","/?áÁ",
455  "<>" /* the phantom key */
456 };
457
458 /*** Bulgarian phonetic keyboard layout */
459 static const char main_key_BG_phonetic[MAIN_LEN][4] =
460 {
461  "`~÷×","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
462  "qQÿß","wWâÂ","eEåÅ","rRðÐ","tTòÒ","yYúÚ","uUóÓ","iIèÈ","oOîÎ","pPïÏ","[{øØ","]}ùÙ",
463  "aAàÀ","sSñÑ","dDäÄ","fFôÔ","gGãÃ","hHõÕ","jJéÉ","kKêÊ","lLëË",";:","'\"","\\|þÞ",
464  "zZçÇ","xXüÜ","cCöÖ","vVæÆ","bBáÁ","nNíÍ","mMìÌ",",<",".>","/?",
465  "<>" /* the phantom key */
466 };
467
468 /*** Belarusian standard keyboard layout (contributed by Hleb Valoska) */
469 /*** It matches belarusian layout for XKB from Alexander Mikhailian    */
470 static const char main_key_BY[MAIN_LEN][4] =
471 {
472  "`~£³","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
473  "qQÊê","wWÃã","eEÕõ","rRËë","tTÅå","yYÎî","uUÇç","iIÛû","oO®¾","pPÚú","[{Èè","]}''",
474  "aAÆæ","sSÙù","dD×÷","fFÁá","gGÐð","hHÒò","jJÏï","kKÌì","lLÄä",";:Öö","'\"Üü","\\|/|",
475  "zZÑñ","xXÞþ","cCÓó","vVÍí","bB¦¶","nNÔô","mMØø",",<Ââ",".>Àà","/?.,", "<>|¦",
476 };
477
478
479 /*** Russian keyboard layout (contributed by Pavel Roskin) */
480 static const char main_key_RU[MAIN_LEN][4] =
481 {
482  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
483  "qQÊê","wWÃã","eEÕõ","rRËë","tTÅå","yYÎî","uUÇç","iIÛû","oOÝý","pPÚú","[{Èè","]}ßÿ",
484  "aAÆæ","sSÙù","dD×÷","fFÁá","gGÐð","hHÒò","jJÏï","kKÌì","lLÄä",";:Öö","'\"Üü","\\|",
485  "zZÑñ","xXÞþ","cCÓó","vVÍí","bBÉé","nNÔô","mMØø",",<Ââ",".>Àà","/?"
486 };
487
488 /*** Russian keyboard layout (phantom key version) */
489 static const char main_key_RU_phantom[MAIN_LEN][4] =
490 {
491  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
492  "qQÊê","wWÃã","eEÕõ","rRËë","tTÅå","yYÎî","uUÇç","iIÛû","oOÝý","pPÚú","[{Èè","]}ßÿ",
493  "aAÆæ","sSÙù","dD×÷","fFÁá","gGÐð","hHÒò","jJÏï","kKÌì","lLÄä",";:Öö","'\"Üü","\\|",
494  "zZÑñ","xXÞþ","cCÓó","vVÍí","bBÉé","nNÔô","mMØø",",<Ââ",".>Àà","/?",
495  "<>" /* the phantom key */
496 };
497
498 /*** Russian keyboard layout KOI8-R */
499 static const char main_key_RU_koi8r[MAIN_LEN][4] =
500 {
501  "()","1!","2\"","3/","4$","5:","6,","7.","8;","9?","0%","-_","=+",
502  "Êê","Ãã","Õõ","Ëë","Åå","Îî","Çç","Ûû","Ýý","Úú","Èè","ßÿ",
503  "Ææ","Ùù","×÷","Áá","Ðð","Òò","Ïï","Ìì","Ää","Öö","Üü","\\|",
504  "Ññ","Þþ","Óó","Íí","Éé","Ôô","Øø","Ââ","Àà","/?",
505  "<>" /* the phantom key */
506 };
507
508 /*** Russian keyboard layout cp1251 */
509 static const char main_key_RU_cp1251[MAIN_LEN][4] =
510 {
511  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
512  "qQéÉ","wWöÖ","eEóÓ","rRêÊ","tTåÅ","yYíÍ","uUãÃ","iIøØ","oOùÙ","pPçÇ","[{õÕ","]}úÚ",
513  "aAôÔ","sSûÛ","dDâÂ","fFàÀ","gGïÏ","hHðÐ","jJîÎ","kKëË","lLäÄ",";:æÆ","'\"ýÝ","\\|",
514  "zZÿß","xX÷×","cCñÑ","vVìÌ","bBèÈ","nNòÒ","mMüÜ",",<áÁ",".>þÞ","/?",
515  "<>" /* the phantom key */
516 };
517
518 /*** Russian phonetic keyboard layout */
519 static const char main_key_RU_phonetic[MAIN_LEN][4] =
520 {
521  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
522  "qQÑñ","wW×÷","eEÅå","rRÒò","tTÔô","yYÙù","uUÕõ","iIÉé","oOÏï","pPÐð","[{Ûû","]}Ýý",
523  "aAÁá","sSÓó","dDÄä","fFÆæ","gGÇç","hHÈè","jJÊê","kKËë","lLÌì",";:","'\"","\\|",
524  "zZÚú","xXØø","cCÃã","vVÖö","bBÂâ","nNÎî","mMÍí",",<",".>","/?",
525  "<>" /* the phantom key */
526 };
527
528 /*** Ukrainian keyboard layout KOI8-U */
529 static const char main_key_UA[MAIN_LEN][4] =
530 {
531  "`~­½","1!1!","2@2\"","3#3'","4$4*","5%5:","6^6,","7&7.","8*8;","9(9(","0)0)","-_-_","=+=+",
532  "qQÊê","wWÃã","eEÕõ","rRËë","tTÅå","yYÎî","uUÇç","iIÛû","oOÝý","pPÚú","[{Èè","]}§·",
533  "aAÆæ","sS¦¶","dD×÷","fFÁá","gGÐð","hHÒò","jJÏï","kKÌì","lLÄä",";:Öö","'\"¤´","\\|\\|",
534  "zZÑñ","xXÞþ","cCÓó","vVÍí","bBÉé","nNÔô","mMØø",",<Ââ",".>Àà","/?/?",
535  "<>" /* the phantom key */
536 };
537
538 /*** Ukrainian keyboard layout KOI8-U by O. Nykyforchyn */
539 /***  (as it appears on most of keyboards sold today)   */
540 static const char main_key_UA_std[MAIN_LEN][4] =
541 {
542  "­½","1!","2\"","3'","4;","5%","6:","7?","8*","9(","0)","-_","=+",
543  "Êê","Ãã","Õõ","Ëë","Åå","Îî","Çç","Ûû","Ýý","Úú","Èè","§·",
544  "Ææ","¦¶","×÷","Áá","Ðð","Òò","Ïï","Ìì","Ää","Öö","¤´","\\/",
545  "Ññ","Þþ","Óó","Íí","Éé","Ôô","Øø","Ââ","Àà",".,",
546  "<>" /* the phantom key */
547 };
548
549 /*** Russian keyboard layout KOI8-R (pair to the previous) */
550 static const char main_key_RU_std[MAIN_LEN][4] =
551 {
552  "£³","1!","2\"","3'","4;","5%","6:","7?","8*","9(","0)","-_","=+",
553  "Êê","Ãã","Õõ","Ëë","Åå","Îî","Çç","Ûû","Ýý","Úú","Èè","ßÿ",
554  "Ææ","Ùù","×÷","Áá","Ðð","Òò","Ïï","Ìì","Ää","Öö","Üü","\\/",
555  "Ññ","Þþ","Óó","Íí","Éé","Ôô","Øø","Ââ","Àà",".,",
556  "<>" /* the phantom key */
557 };
558
559 /*** Spanish keyboard layout (setxkbmap es) */
560 static const char main_key_ES[MAIN_LEN][4] =
561 {
562  "ºª","1!","2\"","3·","4$","5%","6&","7/","8(","9)","0=","'?","¡¿",
563  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","`^","+*",
564  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","ñÑ","´¨","çÇ",
565  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
566  "<>"
567 };
568
569 /*** Belgian keyboard layout ***/
570 static const char main_key_BE[MAIN_LEN][4] =
571 {
572  "","&1|","é2@","\"3#","'4","(5","§6^","è7","!8","ç9{","à0}",")°","-_",
573  "aA","zZ","eE¤","rR","tT","yY","uU","iI","oO","pP","^¨[","$*]",
574  "qQ","sSß","dD","fF","gG","hH","jJ","kK","lL","mM","ù%´","µ£`",
575  "wW","xX","cC","vV","bB","nN",",?",";.",":/","=+~",
576  "<>\\"
577 };
578
579 /*** Hungarian keyboard layout (setxkbmap hu) */
580 static const char main_key_HU[MAIN_LEN][4] =
581 {
582  "0§","1'","2\"","3+","4!","5%","6/","7=","8(","9)","öÖ","üÜ","óÓ",
583  "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","õÕ","úÚ",
584  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","éÉ","áÁ","ûÛ",
585  "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_",
586  "íÍ"
587 };
588
589 /*** Polish (programmer's) keyboard layout ***/
590 static const char main_key_PL[MAIN_LEN][4] =
591 {
592  "`~","1!","2@","3#","4$","5%","6^","7&§","8*","9(","0)","-_","=+",
593  "qQ","wW","eEêÊ","rR","tT","yY","uU","iI","oOóÓ","pP","[{","]}",
594  "aA±¡","sS¶¦","dD","fF","gG","hH","jJ","kK","lL³£",";:","'\"","\\|",
595  "zZ¿¯","xX¼¬","cCæÆ","vV","bB","nNñÑ","mM",",<",".>","/?",
596  "<>|"
597 };
598
599 /*** Slovenian keyboard layout (setxkbmap si) ***/
600 static const char main_key_SI[MAIN_LEN][4] =
601 {
602  "¸¨","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
603  "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","¹©","ðÐ",
604  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","èÈ","æÆ","¾®",
605  "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_",
606  "<>"
607 };
608
609 /*** Serbian keyboard layout (setxkbmap sr) ***/
610 static const char main_key_SR[MAIN_LEN][4] =
611 {
612  "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
613  "©¹","ªº","Åå","Òò","Ôô","Úú","Õõ","Éé","Ïï","Ðð","Ûû","[]",
614  "Áá","Óó","Ää","Ææ","Çç","Èè","¨¸","Ëë","Ìì","Þþ","«»","-_",
615  "¡±","¯¿","Ãã","×÷","Ââ","Îî","Íí",",;",".:","Öö",
616  "<>" /* the phantom key */
617 };
618
619 /*** Serbian keyboard layout (setxkbmap us,sr) ***/
620 static const char main_key_US_SR[MAIN_LEN][4] =
621 {
622  "`~","1!","2@2\"","3#","4$","5%","6^6&","7&7/","8*8(","9(9)","0)0=","-_'?","=++*",
623  "qQ©¹","wWªº","eEÅå","rRÒò","tTÔô","yYÚú","uUÕõ","iIÉé","oOÏï","pPÐð","[{Ûû","]}[]",
624  "aAÁá","sSÓó","dDÄä","fFÆæ","gGÇç","hHÈè","jJ¨¸","kKËë","lLÌì",";:Þþ","'\"«»","\\|-_",
625  "zZ¡±","xX¯¿","cCÃã","vV×÷","bBÂâ","nNÎî","mMÍí",",<,;",".>.:","/?Öö",
626  "<>" /* the phantom key */
627 };
628
629 /*** Croatian keyboard layout specific for me <jelly@srk.fer.hr> ***/
630 static const char main_key_HR_jelly[MAIN_LEN][4] =
631 {
632  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
633  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{¹©","]}ðÐ",
634  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:èÈ","'\"æÆ","\\|¾®",
635  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?",
636  "<>|"
637 };
638
639 /*** Croatian keyboard layout (setxkbmap hr) ***/
640 static const char main_key_HR[MAIN_LEN][4] =
641 {
642  "¸¨","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
643  "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","¹©","ðÐ",
644  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","èÈ","æÆ","¾®",
645  "yY","xX","cC","vV","bB","nN","mM",",;",".:","/?",
646  "<>"
647 };
648
649 /*** Japanese 106 keyboard layout ***/
650 static const char main_key_JA_jp106[MAIN_LEN][4] =
651 {
652  "1!","2\"","3#","4$","5%","6&","7'","8(","9)","0~","-=","^~","\\|",
653  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","@`","[{",
654  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";+",":*","]}",
655  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?",
656  "\\_",
657 };
658
659 static const char main_key_JA_macjp[MAIN_LEN][4] =
660 {
661  "1!","2\"","3#","4$","5%","6&","7'","8(","9)","0","-=","^~","\\|",
662  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","@`","[{",
663  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";+",":*","]}",
664  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?",
665  "__",
666 };
667
668 /*** Japanese pc98x1 keyboard layout ***/
669 static const char main_key_JA_pc98x1[MAIN_LEN][4] =
670 {
671  "1!","2\"","3#","4$","5%","6&","7'","8(","9)","0","-=","^`","\\|",
672  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","@~","[{",
673  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";+",":*","]}",
674  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?",
675  "\\_",
676 };
677
678 /*** Brazilian ABNT-2 keyboard layout (contributed by Raul Gomes Fernandes) */
679 static const char main_key_PT_br[MAIN_LEN][4] =
680 {
681  "'\"","1!","2@","3#","4$","5%","6¨","7&","8*","9(","0)","-_","=+",
682  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","´`","[{",
683  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","çÇ","~^","]}",
684  "\\|","zZ","xX","cC","vV","bB","nN","mM",",<",".>",";:","/?",
685 };
686
687 /*** Brazilian ABNT-2 keyboard layout with <ALT GR> (contributed by Mauro Carvalho Chehab) */
688 static const char main_key_PT_br_alt_gr[MAIN_LEN][4] =
689 {
690  "'\"","1!9","2@2","3#3","4$#","5%\"","6(,","7&","8*","9(","0)","-_","=+'",
691  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","4`","[{*",
692  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","gG","~^","]}:",
693  "\\|","zZ","xX","cC","vV","bB","nN","mM",",<",".>",";:","/?0"
694 };
695
696 /*** US international keyboard layout (contributed by Gustavo Noronha (kov@debian.org)) */
697 static const char main_key_US_intl[MAIN_LEN][4] =
698 {
699   "`~", "1!", "2@", "3#", "4$", "5%", "6^", "7&", "8*", "9(", "0)", "-_", "=+", "\\|",
700   "qQ", "wW", "eE", "rR", "tT", "yY", "uU", "iI", "oO", "pP", "[{", "]}",
701   "aA", "sS", "dD", "fF", "gG", "hH", "jJ", "kK", "lL", ";:", "'\"",
702   "zZ", "xX", "cC", "vV", "bB", "nN", "mM", ",<", ".>", "/?"
703 };
704
705 /*** Slovak keyboard layout (see cssk_ibm(sk_qwerty) in xkbsel)
706   - dead_abovering replaced with degree - no symbol in iso8859-2
707   - brokenbar replaced with bar                                 */
708 static const char main_key_SK[MAIN_LEN][4] =
709 {
710  ";0","+1","µ2","¹3","è4","»5","¾6","ý7","á8","í9","é0","=%","'v",
711  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","ú/","ä(",
712  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","ô\"","§!","ò)",
713  "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_",
714  "<>"
715 };
716
717 /*** Czech keyboard layout (setxkbmap cz) */
718 static const char main_key_CZ[MAIN_LEN][4] =
719 {
720  ";","+1","ì2","¹3","è4","ø5","¾6","ý7","á8","í9","é0","=%","´·",
721  "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","ú/",")(",
722  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","ù\"","§!","¨'",
723  "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_",
724  "\\"
725 };
726
727 /*** Czech keyboard layout (setxkbmap cz_qwerty) */
728 static const char main_key_CZ_qwerty[MAIN_LEN][4] =
729 {
730  ";","+1","ì2","¹3","è4","ø5","¾6","ý7","á8","í9","é0","=%","´·",
731  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","ú/",")(",
732  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","ù\"","§!","¨'",
733  "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_",
734  "\\"
735 };
736
737 /*** Slovak and Czech (programmer's) keyboard layout (see cssk_dual(cs_sk_ucw)) */
738 static const char main_key_SK_prog[MAIN_LEN][4] =
739 {
740  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
741  "qQäÄ","wWìÌ","eEéÉ","rRøØ","tT»«","yYýÝ","uUùÙ","iIíÍ","oOóÓ","pPöÖ","[{","]}",
742  "aAáÁ","sS¹©","dDïÏ","fFëË","gGàÀ","hHúÚ","jJüÜ","kKôÔ","lLµ¥",";:","'\"","\\|",
743  "zZ¾®","xX¤","cCèÈ","vVçÇ","bB","nNòÒ","mMåÅ",",<",".>","/?",
744  "<>"
745 };
746
747 /*** Czech keyboard layout (see cssk_ibm(cs_qwerty) in xkbsel) */
748 static const char main_key_CS[MAIN_LEN][4] =
749 {
750  ";","+1","ì2","¹3","è4","ø5","¾6","ý7","á8","í9","é0½)","=%","",
751  "qQ\\","wW|","eE","rR","tT","yY","uU","iI","oO","pP","ú/[{",")(]}",
752  "aA","sSð","dDÐ","fF[","gG]","hH","jJ","kK³","lL£","ù\"$","§!ß","¨'",
753  "zZ>","xX#","cC&","vV@","bB{","nN}","mM",",?<",".:>","-_*",
754  "<>\\|"
755 };
756
757 /*** Latin American keyboard layout (contributed by Gabriel Orlando Garcia) */
758 static const char main_key_LA[MAIN_LEN][4] =
759 {
760  "|°","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","¿¡",
761  "qQ@","wW","eE","rR","tT","yY","uU","iI","oO","pP","´¨","+*",
762  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","ñÑ","{[^","}]",
763  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
764  "<>"
765 };
766
767 /*** Lithuanian keyboard layout (setxkbmap lt) */
768 static const char main_key_LT_B[MAIN_LEN][4] =
769 {
770  "`~","àÀ","èÈ","æÆ","ëË","áÁ","ðÐ","øØ","ûÛ","¥(","´)","-_","þÞ","\\|",
771  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
772  "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"",
773  "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?",
774  "ª¬"
775 };
776
777 /*** Turkish keyboard Layout */
778 static const char main_key_TK[MAIN_LEN][4] =
779 {
780 "\"é","1!","2'","3^#","4+$","5%","6&","7/{","8([","9)]","0=}","*?\\","-_",
781 "qQ@","wW","eE","rR","tT","yY","uU","ýIî","oO","pP","ðÐ","üÜ~",
782 "aAæ","sSß","dD","fF","gG","hH","jJ","kK","lL","þÞ","iÝ",",;`",
783 "zZ","xX","cC","vV","bB","nN","mM","öÖ","çÇ",".:"
784 };
785
786 /*** Turkish keyboard layout (setxkbmap tr) */
787 static const char main_key_TR[MAIN_LEN][4] =
788 {
789 "\"\\","1!","2'","3^","4+","5%","6&","7/","8(","9)","0=","*?","-_",
790 "qQ","wW","eE","rR","tT","yY","uU","\xb9I","oO","pP","\xbb\xab","üÜ",
791 "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xba\xaa","i\0",",;",
792 "zZ","xX","cC","vV","bB","nN","mM","öÖ","çÇ",".:",
793 "<>"
794 };
795
796 /*** Turkish F keyboard layout (setxkbmap trf) */
797 static const char main_key_TR_F[MAIN_LEN][4] =
798 {
799 "+*","1!","2\"","3^#","4$","5%","6&","7'","8(","9)","0=","/?","-_",
800 "fF","gG","\xbb\xab","\xb9I","oO","dD","rR","nN","hH","pP","qQ","wW",
801 "uU","i\0","eE","aA","üÜ","tT","kK","mM","lL","yY","\xba\xaa","xX",
802 "jJ","öÖ","vV","cC","çÇ","zZ","sS","bB",".:",",;",
803 "<>"
804 };
805
806 /*** Israelian keyboard layout (setxkbmap us,il) */
807 static const char main_key_IL[MAIN_LEN][4] =
808 {
809  "`~;","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
810  "qQ/","wW'","eE÷","rRø","tTà","yYè","uUå","iIï","oOí","pPô","[{","]}",
811  "aAù","sSã","dDâ","fFë","gGò","hHé","jJç","kKì","lLê",";:ó","\'\",","\\|",
812  "zZæ","xXñ","cCá","vVä","bBð","nNî","mMö",",<ú",".>õ","/?.",
813  "<>"
814 };
815
816 /*** Israelian phonetic keyboard layout (setxkbmap us,il_phonetic) */
817 static const char main_key_IL_phonetic[MAIN_LEN][4] =
818 {
819  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
820  "qQ÷","wWå","eEà","rRø","tTú","yYò","uUå","iIé","oOñ","pPô","[{","]}",
821  "aAà","sSù","dDã","fFô","gGâ","hHä","jJé","kKë","lLì",";:","'\"","\\|",
822  "zZæ","xXç","cCö","vVå","bBá","nNð","mMî",",<",".>","/?",
823  "<>"
824 };
825
826 /*** Israelian Saharon keyboard layout (setxkbmap -symbols "us(pc105)+il_saharon") */
827 static const char main_key_IL_saharon[MAIN_LEN][4] =
828 {
829  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
830  "qQ÷","wWñ","eE","rRø","tTè","yYã","uU","iI","oO","pPô","[{","]}",
831  "aAà","sSå","dDì","fFú","gGâ","hHä","jJù","kKë","lLé",";:","'\"","\\|",
832  "zZæ","xXç","cCö","vVò","bBá","nNð","mMî",",<",".>","/?",
833  "<>"
834 };
835
836 /*** Greek keyboard layout (contributed by Kriton Kyrimis <kyrimis@cti.gr>)
837   Greek characters for "wW" and "sS" are omitted to not produce a mismatch
838   message since they have different characters in gr and el XFree86 layouts. */
839 static const char main_key_EL[MAIN_LEN][4] =
840 {
841  "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
842  "qQ;:","wW","eEåÅ","rRñÑ","tTôÔ","yYõÕ","uUèÈ","iIéÉ","oOïÏ","pPðÐ","[{","]}",
843  "aAáÁ","sS","dDäÄ","fFöÖ","gGãÃ","hHçÇ","jJîÎ","kKêÊ","lLëË",";:´¨","'\"","\\|",
844  "zZæÆ","xX÷×","cCøØ","vVùÙ","bBâÂ","nNíÍ","mMìÌ",",<",".>","/?",
845  "<>"
846 };
847
848 /*** Thai (Kedmanee) keyboard layout by Supphachoke Suntiwichaya <mrchoke@opentle.org> */
849 static const char main_key_th[MAIN_LEN][4] =
850 {
851  "`~_%","1!å+","2@/ñ","3#-ò","4$Àó","5%¶ô","6^ØÙ","7&Öß","8*¤õ","9(µö","0)¨÷","-_¢ø","=+ªù",
852  "qQæð","wWä\"","eEÓ®","rR¾±","tTи","yYÑí","uUÕê","iIó","oO¹Ï","pP­","[{º°","]}Å,",
853  "aA¿Ä","sS˦","dD¡¯","fF´â","gGà¬","hHéç","jJèë","kKÒÉ","lLÊÈ",";:Ç«","\'\"§.","\\|£¥",
854  "zZ¼(","xX»)","cCá©","vVÍÎ","bBÚ","nN×ì","mM·?",",<Á²",".>ãÌ","/?½Æ"
855 }; 
856
857 /*** VNC keyboard layout */
858 static const WORD main_key_scan_vnc[MAIN_LEN] =
859 {
860    0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x1A,0x1B,0x27,0x28,0x29,0x33,0x34,0x35,0x2B,
861    0x1E,0x30,0x2E,0x20,0x12,0x21,0x22,0x23,0x17,0x24,0x25,0x26,0x32,0x31,0x18,0x19,0x10,0x13,0x1F,0x14,0x16,0x2F,0x11,0x2D,0x15,0x2C,
862    0x56
863 };
864
865 static const WORD main_key_vkey_vnc[MAIN_LEN] =
866 {
867    '1','2','3','4','5','6','7','8','9','0',VK_OEM_MINUS,VK_OEM_PLUS,VK_OEM_4,VK_OEM_6,VK_OEM_1,VK_OEM_7,VK_OEM_3,VK_OEM_COMMA,VK_OEM_PERIOD,VK_OEM_2,VK_OEM_5,
868    'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
869    VK_OEM_102
870 };
871
872 static const char main_key_vnc[MAIN_LEN][4] =
873 {
874  "1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+","[{","]}",";:","'\"","`~",",<",".>","/?","\\|",
875  "aA","bB","cC","dD","eE","fF","gG","hH","iI","jJ","kK","lL","mM","nN","oO","pP","qQ","rR","sS","tT","uU","vV","wW","xX","yY","zZ"
876 };
877
878 /*** Dutch keyboard layout (setxkbmap nl) ***/
879 static const char main_key_NL[MAIN_LEN][4] =
880 {
881  "@§","1!","2\"","3#","4$","5%","6&","7_","8(","9)","0'","/?","°~",
882  "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","¨~","*|",
883  "aA","sS","dD","fF","gG","hH","jJ","kK","lL","+±","'`","<>",
884  "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-=",
885  "[]"
886 };
887
888
889
890 /*** Layout table. Add your keyboard mappings to this list */
891 static const struct {
892     LCID lcid; /* input locale identifier, look for LOCALE_ILANGUAGE
893                  in the appropriate dlls/kernel/nls/.nls file */
894     const char *comment;
895     const char (*key)[MAIN_LEN][4];
896     const WORD (*scan)[MAIN_LEN]; /* scan codes mapping */
897     const WORD (*vkey)[MAIN_LEN]; /* virtual key codes mapping */
898 } main_key_tab[]={
899  {0x0409, "United States keyboard layout", &main_key_US, &main_key_scan_qwerty, &main_key_vkey_qwerty},
900  {0x0409, "United States keyboard layout (phantom key version)", &main_key_US_phantom, &main_key_scan_qwerty, &main_key_vkey_qwerty},
901  {0x0409, "United States keyboard layout (dvorak)", &main_key_US_dvorak, &main_key_scan_dvorak, &main_key_vkey_dvorak},
902  {0x0409, "United States International keyboard layout", &main_key_US_intl, &main_key_scan_qwerty, &main_key_vkey_qwerty},
903  {0x0809, "British keyboard layout", &main_key_UK, &main_key_scan_qwerty, &main_key_vkey_qwerty},
904  {0x0407, "German keyboard layout", &main_key_DE, &main_key_scan_qwerty, &main_key_vkey_qwertz},
905  {0x0807, "Swiss German keyboard layout", &main_key_SG, &main_key_scan_qwerty, &main_key_vkey_qwertz},
906  {0x100c, "Swiss French keyboard layout", &main_key_SF, &main_key_scan_qwerty, &main_key_vkey_qwertz},
907  {0x041d, "Swedish keyboard layout", &main_key_SE, &main_key_scan_qwerty, &main_key_vkey_qwerty_v2},
908  {0x0425, "Estonian keyboard layout", &main_key_ET, &main_key_scan_qwerty, &main_key_vkey_qwerty},
909  {0x0414, "Norwegian keyboard layout", &main_key_NO, &main_key_scan_qwerty, &main_key_vkey_qwerty},
910  {0x0406, "Danish keyboard layout", &main_key_DA, &main_key_scan_qwerty, &main_key_vkey_qwerty},
911  {0x040c, "French keyboard layout", &main_key_FR, &main_key_scan_qwerty, &main_key_vkey_azerty},
912  {0x0c0c, "Canadian French keyboard layout", &main_key_CF, &main_key_scan_qwerty, &main_key_vkey_qwerty},
913  {0x0c0c, "Canadian French keyboard layout (CA_fr)", &main_key_CA_fr, &main_key_scan_qwerty, &main_key_vkey_qwerty},
914  {0x0c0c, "Canadian keyboard layout", &main_key_CA, &main_key_scan_qwerty, &main_key_vkey_qwerty},
915  {0x080c, "Belgian keyboard layout", &main_key_BE, &main_key_scan_qwerty, &main_key_vkey_azerty},
916  {0x0816, "Portuguese keyboard layout", &main_key_PT, &main_key_scan_qwerty, &main_key_vkey_qwerty},
917  {0x0416, "Brazilian ABNT-2 keyboard layout", &main_key_PT_br, &main_key_scan_abnt_qwerty, &main_key_vkey_abnt_qwerty},
918  {0x0416, "Brazilian ABNT-2 keyboard layout ALT GR", &main_key_PT_br_alt_gr,&main_key_scan_abnt_qwerty, &main_key_vkey_abnt_qwerty},
919  {0x040b, "Finnish keyboard layout", &main_key_FI, &main_key_scan_qwerty, &main_key_vkey_qwerty},
920  {0x0402, "Bulgarian bds keyboard layout", &main_key_BG_bds, &main_key_scan_qwerty, &main_key_vkey_qwerty},
921  {0x0402, "Bulgarian phonetic keyboard layout", &main_key_BG_phonetic, &main_key_scan_qwerty, &main_key_vkey_qwerty},
922  {0x0423, "Belarusian keyboard layout", &main_key_BY, &main_key_scan_qwerty, &main_key_vkey_qwerty},
923  {0x0419, "Russian keyboard layout", &main_key_RU, &main_key_scan_qwerty, &main_key_vkey_qwerty},
924  {0x0419, "Russian keyboard layout (phantom key version)", &main_key_RU_phantom, &main_key_scan_qwerty, &main_key_vkey_qwerty},
925  {0x0419, "Russian keyboard layout KOI8-R", &main_key_RU_koi8r, &main_key_scan_qwerty, &main_key_vkey_qwerty},
926  {0x0419, "Russian keyboard layout cp1251", &main_key_RU_cp1251, &main_key_scan_qwerty, &main_key_vkey_qwerty},
927  {0x0419, "Russian phonetic keyboard layout", &main_key_RU_phonetic, &main_key_scan_qwerty, &main_key_vkey_qwerty},
928  {0x0422, "Ukrainian keyboard layout KOI8-U", &main_key_UA, &main_key_scan_qwerty, &main_key_vkey_qwerty},
929  {0x0422, "Ukrainian keyboard layout (standard)", &main_key_UA_std, &main_key_scan_qwerty, &main_key_vkey_qwerty},
930  {0x0419, "Russian keyboard layout (standard)", &main_key_RU_std, &main_key_scan_qwerty, &main_key_vkey_qwerty},
931  {0x040a, "Spanish keyboard layout", &main_key_ES, &main_key_scan_qwerty, &main_key_vkey_qwerty},
932  {0x0410, "Italian keyboard layout", &main_key_IT, &main_key_scan_qwerty, &main_key_vkey_qwerty},
933  {0x040f, "Icelandic keyboard layout", &main_key_IS, &main_key_scan_qwerty, &main_key_vkey_qwerty},
934  {0x040e, "Hungarian keyboard layout", &main_key_HU, &main_key_scan_qwerty, &main_key_vkey_qwertz},
935  {0x0415, "Polish (programmer's) keyboard layout", &main_key_PL, &main_key_scan_qwerty, &main_key_vkey_qwerty},
936  {0x0424, "Slovenian keyboard layout", &main_key_SI, &main_key_scan_qwerty, &main_key_vkey_qwertz},
937  {0x0c1a, "Serbian keyboard layout sr", &main_key_SR, &main_key_scan_qwerty, &main_key_vkey_qwerty}, /* LANG_SERBIAN,SUBLANG_SERBIAN_CYRILLIC */
938  {0x0c1a, "Serbian keyboard layout us,sr", &main_key_US_SR, &main_key_scan_qwerty, &main_key_vkey_qwerty}, /* LANG_SERBIAN,SUBLANG_SERBIAN_CYRILLIC */
939  {0x041a, "Croatian keyboard layout", &main_key_HR, &main_key_scan_qwerty, &main_key_vkey_qwertz},
940  {0x041a, "Croatian keyboard layout (specific)", &main_key_HR_jelly, &main_key_scan_qwerty, &main_key_vkey_qwerty},
941  {0x0411, "Japanese 106 keyboard layout", &main_key_JA_jp106, &main_key_scan_qwerty_jp106, &main_key_vkey_qwerty_jp106},
942  {0x0411, "Japanese Mac keyboard layout", &main_key_JA_macjp, &main_key_scan_qwerty_macjp, &main_key_vkey_qwerty_macjp},
943  {0x0411, "Japanese pc98x1 keyboard layout", &main_key_JA_pc98x1, &main_key_scan_qwerty, &main_key_vkey_qwerty},
944  {0x041b, "Slovak keyboard layout", &main_key_SK, &main_key_scan_qwerty, &main_key_vkey_qwerty},
945  {0x041b, "Slovak and Czech keyboard layout without dead keys", &main_key_SK_prog, &main_key_scan_qwerty, &main_key_vkey_qwerty},
946  {0x0405, "Czech keyboard layout", &main_key_CS, &main_key_scan_qwerty, &main_key_vkey_qwerty},
947  {0x0405, "Czech keyboard layout cz", &main_key_CZ, &main_key_scan_qwerty, &main_key_vkey_qwertz},
948  {0x0405, "Czech keyboard layout cz_qwerty", &main_key_CZ_qwerty, &main_key_scan_qwerty, &main_key_vkey_qwerty},
949  {0x040a, "Latin American keyboard layout", &main_key_LA, &main_key_scan_qwerty, &main_key_vkey_qwerty},
950  {0x0427, "Lithuanian (Baltic) keyboard layout", &main_key_LT_B, &main_key_scan_qwerty, &main_key_vkey_qwerty},
951  {0x041f, "Turkish keyboard layout", &main_key_TK, &main_key_scan_qwerty, &main_key_vkey_qwerty},
952  {0x041f, "Turkish keyboard layout tr", &main_key_TR, &main_key_scan_qwerty, &main_key_vkey_qwerty},
953  {0x041f, "Turkish keyboard layout trf", &main_key_TR_F, &main_key_scan_qwerty, &main_key_vkey_qwerty},
954  {0x040d, "Israelian keyboard layout", &main_key_IL, &main_key_scan_qwerty, &main_key_vkey_qwerty},
955  {0x040d, "Israelian phonetic keyboard layout", &main_key_IL_phonetic, &main_key_scan_qwerty, &main_key_vkey_qwerty},
956  {0x040d, "Israelian Saharon keyboard layout", &main_key_IL_saharon, &main_key_scan_qwerty, &main_key_vkey_qwerty},
957  {0x0409, "VNC keyboard layout", &main_key_vnc, &main_key_scan_vnc, &main_key_vkey_vnc},
958  {0x0408, "Greek keyboard layout", &main_key_EL, &main_key_scan_qwerty, &main_key_vkey_qwerty},
959  {0x041e, "Thai (Kedmanee)  keyboard layout", &main_key_th, &main_key_scan_qwerty, &main_key_vkey_qwerty},
960  {0x0413, "Dutch keyboard layout", &main_key_NL, &main_key_scan_qwerty, &main_key_vkey_qwerty},
961
962  {0, NULL, NULL, NULL, NULL} /* sentinel */
963 };
964 static unsigned kbd_layout=0; /* index into above table of layouts */
965
966 /* maybe more of these scancodes should be extended? */
967                 /* extended must be set for ALT_R, CTRL_R,
968                    INS, DEL, HOME, END, PAGE_UP, PAGE_DOWN, ARROW keys,
969                    keypad / and keypad ENTER (SDK 3.1 Vol.3 p 138) */
970                 /* FIXME should we set extended bit for NumLock ? My
971                  * Windows does ... DF */
972                 /* Yes, to distinguish based on scan codes, also
973                    for PrtScn key ... GA */
974
975 static const WORD nonchar_key_vkey[256] =
976 {
977     /* unused */
978     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF00 */
979     /* special keys */
980     VK_BACK, VK_TAB, 0, VK_CLEAR, 0, VK_RETURN, 0, 0,           /* FF08 */
981     0, 0, 0, VK_PAUSE, VK_SCROLL, 0, 0, 0,                      /* FF10 */
982     0, 0, 0, VK_ESCAPE, 0, 0, 0, 0,                             /* FF18 */
983     /* unused */
984     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF20 */
985     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF28 */
986     0, VK_HANGUL, 0, 0, VK_HANJA, 0, 0, 0,                      /* FF30 */
987     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF38 */
988     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF40 */
989     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF48 */
990     /* cursor keys */
991     VK_HOME, VK_LEFT, VK_UP, VK_RIGHT,                          /* FF50 */
992     VK_DOWN, VK_PRIOR, VK_NEXT, VK_END,
993     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF58 */
994     /* misc keys */
995     VK_SELECT, VK_SNAPSHOT, VK_EXECUTE, VK_INSERT, 0,0,0, VK_APPS, /* FF60 */
996     0, VK_CANCEL, VK_HELP, VK_CANCEL, 0, 0, 0, 0,               /* FF68 */
997     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF70 */
998     /* keypad keys */
999     0, 0, 0, 0, 0, 0, 0, VK_NUMLOCK,                            /* FF78 */
1000     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FF80 */
1001     0, 0, 0, 0, 0, VK_RETURN, 0, 0,                             /* FF88 */
1002     0, 0, 0, 0, 0, VK_HOME, VK_LEFT, VK_UP,                     /* FF90 */
1003     VK_RIGHT, VK_DOWN, VK_PRIOR, VK_NEXT,                       /* FF98 */
1004     VK_END, VK_CLEAR, VK_INSERT, VK_DELETE,
1005     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FFA0 */
1006     0, 0, VK_MULTIPLY, VK_ADD,                                  /* FFA8 */
1007     VK_SEPARATOR, VK_SUBTRACT, VK_DECIMAL, VK_DIVIDE,
1008     VK_NUMPAD0, VK_NUMPAD1, VK_NUMPAD2, VK_NUMPAD3,             /* FFB0 */
1009     VK_NUMPAD4, VK_NUMPAD5, VK_NUMPAD6, VK_NUMPAD7,
1010     VK_NUMPAD8, VK_NUMPAD9, 0, 0, 0, VK_OEM_NEC_EQUAL,          /* FFB8 */
1011     /* function keys */
1012     VK_F1, VK_F2,
1013     VK_F3, VK_F4, VK_F5, VK_F6, VK_F7, VK_F8, VK_F9, VK_F10,    /* FFC0 */
1014     VK_F11, VK_F12, VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, /* FFC8 */
1015     VK_F19, VK_F20, VK_F21, VK_F22, VK_F23, VK_F24, 0, 0,       /* FFD0 */
1016     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FFD8 */
1017     /* modifier keys */
1018     0, VK_LSHIFT, VK_RSHIFT, VK_LCONTROL,                       /* FFE0 */
1019     VK_RCONTROL, VK_CAPITAL, 0, VK_MENU,
1020     VK_MENU, VK_LMENU, VK_RMENU, VK_LWIN, VK_RWIN, 0, 0, 0,     /* FFE8 */
1021     0, 0, 0, 0, 0, 0, 0, 0,                                     /* FFF0 */
1022     0, 0, 0, 0, 0, 0, 0, VK_DELETE                              /* FFF8 */
1023 };
1024
1025 static const WORD nonchar_key_scan[256] =
1026 {
1027     /* unused */
1028     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF00 */
1029     /* special keys */
1030     0x0E, 0x0F, 0x00, /*?*/ 0, 0x00, 0x1C, 0x00, 0x00,           /* FF08 */
1031     0x00, 0x00, 0x00, 0x45, 0x46, 0x00, 0x00, 0x00,              /* FF10 */
1032     0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,              /* FF18 */
1033     /* unused */
1034     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF20 */
1035     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF28 */
1036     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF30 */
1037     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF38 */
1038     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF40 */
1039     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF48 */
1040     /* cursor keys */
1041     0x147, 0x14B, 0x148, 0x14D, 0x150, 0x149, 0x151, 0x14F,      /* FF50 */
1042     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF58 */
1043     /* misc keys */
1044     /*?*/ 0, 0x137, /*?*/ 0, 0x152, 0x00, 0x00, 0x00, 0x15D,     /* FF60 */
1045     /*?*/ 0, /*?*/ 0, 0x38, 0x146, 0x00, 0x00, 0x00, 0x00,       /* FF68 */
1046     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF70 */
1047     /* keypad keys */
1048     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x145,             /* FF78 */
1049     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FF80 */
1050     0x00, 0x00, 0x00, 0x00, 0x00, 0x11C, 0x00, 0x00,             /* FF88 */
1051     0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x4B, 0x48,              /* FF90 */
1052     0x4D, 0x50, 0x49, 0x51, 0x4F, 0x4C, 0x52, 0x53,              /* FF98 */
1053     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FFA0 */
1054     0x00, 0x00, 0x37, 0x4E, 0x53, 0x4A, 0x53, 0x135,             /* FFA8 */
1055     0x52, 0x4F, 0x50, 0x51, 0x4B, 0x4C, 0x4D, 0x47,              /* FFB0 */
1056     0x48, 0x49, 0x00, 0x00, 0x00, 0x00,                          /* FFB8 */
1057     /* function keys */
1058     0x3B, 0x3C,
1059     0x3D, 0x3E, 0x3F, 0x40, 0x41, 0x42, 0x43, 0x44,              /* FFC0 */
1060     0x57, 0x58, 0x5B, 0x5C, 0x5D, 0x00, 0x00, 0x00,              /* FFC8 */
1061     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FFD0 */
1062     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FFD8 */
1063     /* modifier keys */
1064     0x00, 0x2A, 0x136, 0x1D, 0x11D, 0x3A, 0x00, 0x38,            /* FFE0 */
1065     0x138, 0x38, 0x138, 0x15b, 0x15c, 0x00, 0x00, 0x00,          /* FFE8 */
1066     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,              /* FFF0 */
1067     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x153              /* FFF8 */
1068 };
1069
1070 static const WORD xfree86_vendor_key_vkey[256] =
1071 {
1072     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF00 */
1073     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF08 */
1074     0, VK_VOLUME_DOWN, VK_VOLUME_MUTE, VK_VOLUME_UP,            /* 1008FF10 */
1075     VK_MEDIA_PLAY_PAUSE, VK_MEDIA_STOP,
1076     VK_MEDIA_PREV_TRACK, VK_MEDIA_NEXT_TRACK,
1077     0, VK_LAUNCH_MAIL, 0, VK_BROWSER_SEARCH,                    /* 1008FF18 */
1078     0, 0, 0, VK_BROWSER_HOME,
1079     0, 0, 0, 0, 0, 0, VK_BROWSER_BACK, VK_BROWSER_FORWARD,      /* 1008FF20 */
1080     VK_BROWSER_STOP, VK_BROWSER_REFRESH, 0, 0, 0, 0, 0, 0,      /* 1008FF28 */
1081     VK_BROWSER_FAVORITES, 0, VK_LAUNCH_MEDIA_SELECT, 0,         /* 1008FF30 */
1082     0, 0, 0, 0,
1083     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF38 */
1084     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF40 */
1085     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF48 */
1086     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF50 */
1087     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF58 */
1088     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF60 */
1089     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF68 */
1090     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF70 */
1091     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF78 */
1092     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF80 */
1093     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF88 */
1094     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF90 */
1095     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FF98 */
1096     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFA0 */
1097     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFA8 */
1098     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFB0 */
1099     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFB8 */
1100     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFC0 */
1101     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFC8 */
1102     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFD0 */
1103     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFD8 */
1104     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFE0 */
1105     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFE8 */
1106     0, 0, 0, 0, 0, 0, 0, 0,                                     /* 1008FFF0 */
1107     0, 0, 0, 0, 0, 0, 0, 0                                      /* 1008FFF8 */
1108 };
1109
1110 static inline KeySym keycode_to_keysym( Display *display, KeyCode keycode, int index )
1111 {
1112 #ifdef HAVE_XKB
1113     if (use_xkb) return XkbKeycodeToKeysym(display, keycode, 0, index);
1114 #endif
1115     return XKeycodeToKeysym(display, keycode, index);
1116 }
1117
1118 /* Returns the Windows virtual key code associated with the X event <e> */
1119 /* x11 lock must be held */
1120 static WORD EVENT_event_to_vkey( XIC xic, XKeyEvent *e)
1121 {
1122     KeySym keysym = 0;
1123     Status status;
1124     char buf[24];
1125
1126     /* Clients should pass only KeyPress events to XmbLookupString */
1127     if (xic && e->type == KeyPress)
1128         XmbLookupString(xic, e, buf, sizeof(buf), &keysym, &status);
1129     else
1130         XLookupString(e, buf, sizeof(buf), &keysym, NULL);
1131
1132     if ((e->state & NumLockMask) &&
1133         (keysym == XK_KP_Separator || keysym == XK_KP_Decimal ||
1134          (keysym >= XK_KP_0 && keysym <= XK_KP_9)))
1135         /* Only the Keypad keys 0-9 and . send different keysyms
1136          * depending on the NumLock state */
1137         return nonchar_key_vkey[keysym & 0xFF];
1138
1139     /* Pressing the Pause/Break key alone produces VK_PAUSE vkey, while
1140      * pressing Ctrl+Pause/Break produces VK_CANCEL. */
1141     if ((e->state & ControlMask) && (keysym == XK_Break))
1142         return VK_CANCEL;
1143
1144     TRACE_(key)("e->keycode = %u\n", e->keycode);
1145
1146     return keyc2vkey[e->keycode];
1147 }
1148
1149
1150 /***********************************************************************
1151  *           X11DRV_send_keyboard_input
1152  */
1153 void X11DRV_send_keyboard_input( WORD wVk, WORD wScan, DWORD event_flags, DWORD time,
1154                                  DWORD dwExtraInfo, UINT injected_flags )
1155 {
1156     UINT message;
1157     KBDLLHOOKSTRUCT hook;
1158     WORD flags, wVkStripped, wVkL, wVkR, vk_hook = wVk;
1159     LPARAM lParam = 0;
1160
1161     if (!time) time = GetTickCount();
1162
1163     wVk = LOBYTE(wVk);
1164     flags = LOBYTE(wScan);
1165
1166     if (event_flags & KEYEVENTF_EXTENDEDKEY) flags |= KF_EXTENDED;
1167     /* FIXME: set KF_DLGMODE and KF_MENUMODE when needed */
1168
1169     /* strip left/right for menu, control, shift */
1170     switch (wVk)
1171     {
1172     case VK_MENU:
1173     case VK_LMENU:
1174     case VK_RMENU:
1175         wVk = (event_flags & KEYEVENTF_EXTENDEDKEY) ? VK_RMENU : VK_LMENU;
1176         wVkStripped = VK_MENU;
1177         wVkL = VK_LMENU;
1178         wVkR = VK_RMENU;
1179         break;
1180     case VK_CONTROL:
1181     case VK_LCONTROL:
1182     case VK_RCONTROL:
1183         wVk = (event_flags & KEYEVENTF_EXTENDEDKEY) ? VK_RCONTROL : VK_LCONTROL;
1184         wVkStripped = VK_CONTROL;
1185         wVkL = VK_LCONTROL;
1186         wVkR = VK_RCONTROL;
1187         break;
1188     case VK_SHIFT:
1189     case VK_LSHIFT:
1190     case VK_RSHIFT:
1191         wVk = (event_flags & KEYEVENTF_EXTENDEDKEY) ? VK_RSHIFT : VK_LSHIFT;
1192         wVkStripped = VK_SHIFT;
1193         wVkL = VK_LSHIFT;
1194         wVkR = VK_RSHIFT;
1195         break;
1196     default:
1197         wVkStripped = wVkL = wVkR = wVk;
1198     }
1199
1200     if (event_flags & KEYEVENTF_KEYUP)
1201     {
1202         message = WM_KEYUP;
1203         if (((key_state_table[VK_MENU] & 0x80) &&
1204              ((wVkStripped == VK_MENU) || (wVkStripped == VK_CONTROL)
1205               || !(key_state_table[VK_CONTROL] & 0x80)))
1206             || (wVkStripped == VK_F10))
1207         {
1208             if( TrackSysKey == VK_MENU || /* <ALT>-down/<ALT>-up sequence */
1209                 (wVkStripped != VK_MENU)) /* <ALT>-down...<something else>-up */
1210                 message = WM_SYSKEYUP;
1211             TrackSysKey = 0;
1212         }
1213         flags |= KF_REPEAT | KF_UP;
1214     }
1215     else
1216     {
1217         message = WM_KEYDOWN;
1218         if (((key_state_table[VK_MENU] & 0x80 || wVkStripped == VK_MENU) &&
1219              !(key_state_table[VK_CONTROL] & 0x80 || wVkStripped == VK_CONTROL)) ||
1220             (wVkStripped == VK_F10))
1221         {
1222             message = WM_SYSKEYDOWN;
1223             TrackSysKey = wVkStripped;
1224         }
1225         if (!(event_flags & KEYEVENTF_UNICODE) && key_state_table[wVk] & 0x80) flags |= KF_REPEAT;
1226     }
1227
1228     if (event_flags & KEYEVENTF_UNICODE)
1229     {
1230         vk_hook = wVk = VK_PACKET;
1231         lParam = MAKELPARAM(1 /* repeat count */, wScan);
1232         TRACE_(key)("message=0x%04x wParam=0x%04X lParam=0x%08lx\n",
1233                     message, wVk, lParam);
1234     }
1235
1236     /* Hook gets whatever key was sent. */
1237     hook.vkCode      = vk_hook;
1238     hook.scanCode    = wScan;
1239     hook.flags       = (flags >> 8) | injected_flags;
1240     hook.time        = time;
1241     hook.dwExtraInfo = dwExtraInfo;
1242     if (HOOK_CallHooks( WH_KEYBOARD_LL, HC_ACTION, message, (LPARAM)&hook, TRUE )) return;
1243
1244     if (!(event_flags & KEYEVENTF_UNICODE))
1245     {
1246         if (event_flags & KEYEVENTF_KEYUP)
1247         {
1248             key_state_table[wVk] &= ~0x80;
1249             key_state_table[wVkStripped] = key_state_table[wVkL] | key_state_table[wVkR];
1250         }
1251         else
1252         {
1253             if (!(key_state_table[wVk] & 0x80)) key_state_table[wVk] ^= 0x01;
1254             key_state_table[wVk] |= 0xc0;
1255             key_state_table[wVkStripped] = key_state_table[wVkL] | key_state_table[wVkR];
1256         }
1257
1258         if (key_state_table[VK_MENU] & 0x80) flags |= KF_ALTDOWN;
1259
1260         if (wVkStripped == VK_SHIFT) flags &= ~KF_EXTENDED;
1261
1262         lParam = MAKELPARAM(1 /* repeat count */, flags);
1263
1264         TRACE_(key)(" message=0x%04x wParam=0x%04X, lParam=0x%08lx, InputKeyState=0x%x\n",
1265                     message, wVk, lParam, key_state_table[wVk]);
1266     }
1267
1268     SERVER_START_REQ( send_hardware_message )
1269     {
1270         req->id       = (injected_flags & LLKHF_INJECTED) ? 0 : GetCurrentThreadId();
1271         req->win      = 0;
1272         req->msg      = message;
1273         req->wparam   = wVk;
1274         req->lparam   = lParam;
1275         req->x        = cursor_pos.x;
1276         req->y        = cursor_pos.y;
1277         req->time     = time;
1278         req->info     = dwExtraInfo;
1279         wine_server_call( req );
1280     }
1281     SERVER_END_REQ;
1282 }
1283
1284
1285 /***********************************************************************
1286  *           KEYBOARD_UpdateOneState
1287  *
1288  * Updates internal state for <vkey>, depending on key <state> under X
1289  *
1290  */
1291 static inline void KEYBOARD_UpdateOneState ( WORD vkey, WORD scan, int state, DWORD time )
1292 {
1293     /* Do something if internal table state != X state for keycode */
1294     if (((key_state_table[vkey & 0xff] & 0x80)!=0) != state)
1295     {
1296         DWORD flags = vkey & 0x100 ? KEYEVENTF_EXTENDEDKEY : 0;
1297
1298         if (!state) flags |= KEYEVENTF_KEYUP;
1299
1300         TRACE("Adjusting state for vkey %#.2x. State before %#.2x\n",
1301               vkey, key_state_table[vkey & 0xff]);
1302
1303         /* Fake key being pressed inside wine */
1304         X11DRV_send_keyboard_input( vkey & 0xff, scan & 0xff, flags, time, 0, 0 );
1305
1306         TRACE("State after %#.2x\n", key_state_table[vkey & 0xff]);
1307     }
1308 }
1309
1310 /***********************************************************************
1311  *           X11DRV_KeymapNotify
1312  *
1313  * Update modifiers state (Ctrl, Alt, Shift) when window is activated.
1314  *
1315  * This handles the case where one uses Ctrl+... Alt+... or Shift+.. to switch
1316  * from wine to another application and back.
1317  * Toggle keys are handled in HandleEvent.
1318  */
1319 void X11DRV_KeymapNotify( HWND hwnd, XEvent *event )
1320 {
1321     int i, j;
1322     DWORD time = GetCurrentTime();
1323
1324     /* the minimum keycode is always greater or equal to 8, so we can
1325      * skip the first 8 values, hence start at 1
1326      */
1327     for (i = 1; i < 32; i++)
1328     {
1329         for (j = 0; j < 8; j++)
1330         {
1331             WORD vkey = keyc2vkey[(i * 8) + j];
1332             WORD scan = keyc2scan[(i * 8) + j];
1333             int state = (event->xkeymap.key_vector[i] & (1<<j)) != 0;
1334
1335             switch(vkey & 0xff)
1336             {
1337             case VK_LMENU:
1338             case VK_RMENU:
1339             case VK_LCONTROL:
1340             case VK_RCONTROL:
1341             case VK_LSHIFT:
1342             case VK_RSHIFT:
1343                 KEYBOARD_UpdateOneState( vkey, scan, state, time );
1344                 break;
1345             }
1346         }
1347     }
1348 }
1349
1350 static void update_lock_state(BYTE vkey, WORD scan, DWORD time)
1351 {
1352     DWORD flags = vkey == VK_NUMLOCK ? KEYEVENTF_EXTENDEDKEY : 0;
1353
1354     if (key_state_table[vkey] & 0x80) flags ^= KEYEVENTF_KEYUP;
1355
1356     X11DRV_send_keyboard_input( vkey, scan, flags, time, 0, 0 );
1357     X11DRV_send_keyboard_input( vkey, scan, flags ^ KEYEVENTF_KEYUP, time, 0, 0 );
1358 }
1359
1360 /***********************************************************************
1361  *           X11DRV_KeyEvent
1362  *
1363  * Handle a X key event
1364  */
1365 void X11DRV_KeyEvent( HWND hwnd, XEvent *xev )
1366 {
1367     XKeyEvent *event = &xev->xkey;
1368     char buf[24];
1369     char *Str = buf;
1370     KeySym keysym = 0;
1371     WORD vkey = 0, bScan;
1372     DWORD dwFlags;
1373     int ascii_chars;
1374     XIC xic = X11DRV_get_ic( hwnd );
1375     DWORD event_time = EVENT_x11_time_to_win32_time(event->time);
1376     Status status = 0;
1377
1378     TRACE_(key)("type %d, window %lx, state 0x%04x, keycode %u\n",
1379                 event->type, event->window, event->state, event->keycode);
1380
1381     if (event->type == KeyPress) update_user_time( event->time );
1382
1383     wine_tsx11_lock();
1384     /* Clients should pass only KeyPress events to XmbLookupString */
1385     if (xic && event->type == KeyPress)
1386     {
1387         ascii_chars = XmbLookupString(xic, event, buf, sizeof(buf), &keysym, &status);
1388         TRACE("XmbLookupString needs %i byte(s)\n", ascii_chars);
1389         if (status == XBufferOverflow)
1390         {
1391             Str = HeapAlloc(GetProcessHeap(), 0, ascii_chars);
1392             if (Str == NULL)
1393             {
1394                 ERR("Failed to allocate memory!\n");
1395                 wine_tsx11_unlock();
1396                 return;
1397             }
1398             ascii_chars = XmbLookupString(xic, event, Str, ascii_chars, &keysym, &status);
1399         }
1400     }
1401     else
1402         ascii_chars = XLookupString(event, buf, sizeof(buf), &keysym, NULL);
1403     wine_tsx11_unlock();
1404
1405     TRACE_(key)("nbyte = %d, status %d\n", ascii_chars, status);
1406
1407     if (status == XLookupChars)
1408     {
1409         X11DRV_XIMLookupChars( Str, ascii_chars );
1410         if (buf != Str)
1411             HeapFree(GetProcessHeap(), 0, Str);
1412         return;
1413     }
1414
1415     /* If XKB extensions are used, the state mask for AltGr will use the group
1416        index instead of the modifier mask. The group index is set in bits
1417        13-14 of the state field in the XKeyEvent structure. So if AltGr is
1418        pressed, look if the group index is different than 0. From XKB
1419        extension documentation, the group index for AltGr should be 2
1420        (event->state = 0x2000). It's probably better to not assume a
1421        predefined group index and find it dynamically
1422
1423        Ref: X Keyboard Extension: Library specification (section 14.1.1 and 17.1.1) */
1424     /* Save also all possible modifier states. */
1425     AltGrMask = event->state & (0x6000 | Mod1Mask | Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask);
1426
1427     if (TRACE_ON(key)){
1428         const char *ksname;
1429
1430         wine_tsx11_lock();
1431         ksname = XKeysymToString(keysym);
1432         wine_tsx11_unlock();
1433         if (!ksname)
1434           ksname = "No Name";
1435         TRACE_(key)("%s : keysym=%lx (%s), # of chars=%d / %s\n",
1436                     (event->type == KeyPress) ? "KeyPress" : "KeyRelease",
1437                     keysym, ksname, ascii_chars, debugstr_an(Str, ascii_chars));
1438     }
1439     if (buf != Str)
1440         HeapFree(GetProcessHeap(), 0, Str);
1441
1442     wine_tsx11_lock();
1443     vkey = EVENT_event_to_vkey(xic,event);
1444     /* X returns keycode 0 for composed characters */
1445     if (!vkey && ascii_chars) vkey = VK_NONAME;
1446     wine_tsx11_unlock();
1447
1448     TRACE_(key)("keycode %u converted to vkey 0x%X\n",
1449                 event->keycode, vkey);
1450
1451     if (!vkey) return;
1452
1453     dwFlags = 0;
1454     if ( event->type == KeyRelease ) dwFlags |= KEYEVENTF_KEYUP;
1455     if ( vkey & 0x100 )              dwFlags |= KEYEVENTF_EXTENDEDKEY;
1456
1457
1458     /* Note: X sets the below states on key down and clears them on key up.
1459        Windows triggers them on key down. */
1460
1461     /* Adjust the CAPSLOCK state if it has been changed outside wine */
1462     if (!(key_state_table[VK_CAPITAL] & 0x01) != !(event->state & LockMask) &&
1463         vkey != VK_CAPITAL)
1464     {
1465         TRACE("Adjusting CapsLock state (%#.2x)\n", key_state_table[VK_CAPITAL]);
1466         update_lock_state(VK_CAPITAL, 0x3A, event_time);
1467     }
1468
1469     /* Adjust the NUMLOCK state if it has been changed outside wine */
1470     if (!(key_state_table[VK_NUMLOCK] & 0x01) != !(event->state & NumLockMask) &&
1471         (vkey & 0xff) != VK_NUMLOCK)
1472     {
1473         TRACE("Adjusting NumLock state (%#.2x)\n", key_state_table[VK_NUMLOCK]);
1474         update_lock_state(VK_NUMLOCK, 0x45, event_time);
1475     }
1476
1477     /* Adjust the SCROLLLOCK state if it has been changed outside wine */
1478     if (!(key_state_table[VK_SCROLL] & 0x01) != !(event->state & ScrollLockMask) &&
1479         vkey != VK_SCROLL)
1480     {
1481         TRACE("Adjusting ScrLock state (%#.2x)\n", key_state_table[VK_SCROLL]);
1482         update_lock_state(VK_SCROLL, 0x46, event_time);
1483     }
1484
1485     bScan = keyc2scan[event->keycode] & 0xFF;
1486     TRACE_(key)("bScan = 0x%02x.\n", bScan);
1487
1488     X11DRV_send_keyboard_input( vkey & 0xff, bScan, dwFlags, event_time, 0, 0 );
1489 }
1490
1491 /**********************************************************************
1492  *              X11DRV_KEYBOARD_DetectLayout
1493  *
1494  * Called from X11DRV_InitKeyboard
1495  *  This routine walks through the defined keyboard layouts and selects
1496  *  whichever matches most closely.
1497  * X11 lock must be held.
1498  */
1499 static void
1500 X11DRV_KEYBOARD_DetectLayout( Display *display )
1501 {
1502   unsigned current, match, mismatch, seq, i, syms;
1503   int score, keyc, key, pkey, ok;
1504   KeySym keysym = 0;
1505   const char (*lkey)[MAIN_LEN][4];
1506   unsigned max_seq = 0;
1507   int max_score = 0, ismatch = 0;
1508   char ckey[256][4];
1509
1510   syms = keysyms_per_keycode;
1511   if (syms > 4) {
1512     WARN("%d keysyms per keycode not supported, set to 4\n", syms);
1513     syms = 4;
1514   }
1515
1516   memset( ckey, 0, sizeof(ckey) );
1517   for (keyc = min_keycode; keyc <= max_keycode; keyc++) {
1518       /* get data for keycode from X server */
1519       for (i = 0; i < syms; i++) {
1520         if (!(keysym = keycode_to_keysym (display, keyc, i))) continue;
1521         /* Allow both one-byte and two-byte national keysyms */
1522         if ((keysym < 0x8000) && (keysym != ' '))
1523         {
1524 #ifdef HAVE_XKB
1525             if (!use_xkb || !XkbTranslateKeySym(display, &keysym, 0, &ckey[keyc][i], 1, NULL))
1526 #endif
1527             {
1528                 TRACE("XKB could not translate keysym %04lx\n", keysym);
1529                 /* FIXME: query what keysym is used as Mode_switch, fill XKeyEvent
1530                  * with appropriate ShiftMask and Mode_switch, use XLookupString
1531                  * to get character in the local encoding.
1532                  */
1533                 ckey[keyc][i] = keysym & 0xFF;
1534             }
1535         }
1536         else {
1537           ckey[keyc][i] = KEYBOARD_MapDeadKeysym(keysym);
1538         }
1539       }
1540   }
1541
1542   for (current = 0; main_key_tab[current].comment; current++) {
1543     TRACE("Attempting to match against \"%s\"\n", main_key_tab[current].comment);
1544     match = 0;
1545     mismatch = 0;
1546     score = 0;
1547     seq = 0;
1548     lkey = main_key_tab[current].key;
1549     pkey = -1;
1550     for (keyc = min_keycode; keyc <= max_keycode; keyc++) {
1551       if (ckey[keyc][0]) {
1552         /* search for a match in layout table */
1553         /* right now, we just find an absolute match for defined positions */
1554         /* (undefined positions are ignored, so if it's defined as "3#" in */
1555         /* the table, it's okay that the X server has "3#£", for example) */
1556         /* however, the score will be higher for longer matches */
1557         for (key = 0; key < MAIN_LEN; key++) {
1558           for (ok = 0, i = 0; (ok >= 0) && (i < syms); i++) {
1559             if ((*lkey)[key][i] && ((*lkey)[key][i] == ckey[keyc][i]))
1560               ok++;
1561             if ((*lkey)[key][i] && ((*lkey)[key][i] != ckey[keyc][i]))
1562               ok = -1;
1563           }
1564           if (ok > 0) {
1565             score += ok;
1566             break;
1567           }
1568         }
1569         /* count the matches and mismatches */
1570         if (ok > 0) {
1571           match++;
1572           /* and how much the keycode order matches */
1573           if (key > pkey) seq++;
1574           pkey = key;
1575         } else {
1576           /* print spaces instead of \0's */
1577           char str[5];
1578           for (i = 0; i < 4; i++) str[i] = ckey[keyc][i] ? ckey[keyc][i] : ' ';
1579           str[4] = 0;
1580           TRACE_(key)("mismatch for keycode %u, got %s\n", keyc, str);
1581           mismatch++;
1582           score -= syms;
1583         }
1584       }
1585     }
1586     TRACE("matches=%d, mismatches=%d, seq=%d, score=%d\n",
1587            match, mismatch, seq, score);
1588     if ((score > max_score) ||
1589         ((score == max_score) && (seq > max_seq))) {
1590       /* best match so far */
1591       kbd_layout = current;
1592       max_score = score;
1593       max_seq = seq;
1594       ismatch = !mismatch;
1595     }
1596   }
1597   /* we're done, report results if necessary */
1598   if (!ismatch)
1599     WARN("Using closest match (%s) for scan/virtual codes mapping.\n",
1600         main_key_tab[kbd_layout].comment);
1601
1602   TRACE("detected layout is \"%s\"\n", main_key_tab[kbd_layout].comment);
1603 }
1604
1605 static HKL get_locale_kbd_layout(void)
1606 {
1607     ULONG_PTR layout;
1608     LANGID langid;
1609
1610     /* FIXME:
1611      *
1612      * layout = main_key_tab[kbd_layout].lcid;
1613      *
1614      * Winword uses return value of GetKeyboardLayout as a codepage
1615      * to translate ANSI keyboard messages to unicode. But we have
1616      * a problem with it: for instance Polish keyboard layout is
1617      * identical to the US one, and therefore instead of the Polish
1618      * locale id we return the US one.
1619      */
1620
1621     layout = GetUserDefaultLCID();
1622
1623     /*
1624      * Microsoft Office expects this value to be something specific
1625      * for Japanese and Korean Windows with an IME the value is 0xe001
1626      * We should probably check to see if an IME exists and if so then
1627      * set this word properly.
1628      */
1629     langid = PRIMARYLANGID(LANGIDFROMLCID(layout));
1630     if (langid == LANG_CHINESE || langid == LANG_JAPANESE || langid == LANG_KOREAN)
1631         layout |= 0xe001 << 16; /* IME */
1632     else
1633         layout |= layout << 16;
1634
1635     return (HKL)layout;
1636 }
1637
1638 /***********************************************************************
1639  *     GetKeyboardLayoutName (X11DRV.@)
1640  */
1641 BOOL CDECL X11DRV_GetKeyboardLayoutName(LPWSTR name)
1642 {
1643     static const WCHAR formatW[] = {'%','0','8','x',0};
1644     DWORD layout;
1645
1646     layout = HandleToUlong( get_locale_kbd_layout() );
1647     if (HIWORD(layout) == LOWORD(layout)) layout = LOWORD(layout);
1648     sprintfW(name, formatW, layout);
1649     TRACE("returning %s\n", debugstr_w(name));
1650     return TRUE;
1651 }
1652
1653 static void set_kbd_layout_preload_key(void)
1654 {
1655     static const WCHAR preload[] =
1656         {'K','e','y','b','o','a','r','d',' ','L','a','y','o','u','t','\\','P','r','e','l','o','a','d',0};
1657     static const WCHAR one[] = {'1',0};
1658
1659     HKEY hkey;
1660     WCHAR layout[KL_NAMELENGTH];
1661
1662     if (RegCreateKeyExW(HKEY_CURRENT_USER, preload, 0, NULL, 0, KEY_ALL_ACCESS, NULL, &hkey, NULL))
1663         return;
1664
1665     if (!RegQueryValueExW(hkey, one, NULL, NULL, NULL, NULL))
1666     {
1667         RegCloseKey(hkey);
1668         return;
1669     }
1670     if (X11DRV_GetKeyboardLayoutName(layout))
1671         RegSetValueExW(hkey, one, 0, REG_SZ, (const BYTE *)layout, sizeof(layout));
1672
1673     RegCloseKey(hkey);
1674 }
1675
1676 /**********************************************************************
1677  *              X11DRV_InitKeyboard
1678  */
1679 void X11DRV_InitKeyboard( Display *display )
1680 {
1681     KeySym *ksp;
1682     XModifierKeymap *mmp;
1683     KeySym keysym;
1684     KeyCode *kcp;
1685     XKeyEvent e2;
1686     WORD scan, vkey;
1687     int keyc, i, keyn, syms;
1688     char ckey[4]={0,0,0,0};
1689     const char (*lkey)[MAIN_LEN][4];
1690     char vkey_used[256] = { 0 };
1691
1692     /* Ranges of OEM, function key, and character virtual key codes.
1693      * Don't include those handled specially in X11DRV_ToUnicodeEx and
1694      * X11DRV_MapVirtualKeyEx, like VK_NUMPAD0 - VK_DIVIDE. */
1695     static const struct {
1696         WORD first, last;
1697     } vkey_ranges[] = {
1698         { VK_OEM_1, VK_OEM_3 },
1699         { VK_OEM_4, VK_ICO_00 },
1700         { 0xe6, 0xe6 },
1701         { 0xe9, 0xf5 },
1702         { VK_OEM_NEC_EQUAL, VK_OEM_NEC_EQUAL },
1703         { VK_F1, VK_F24 },
1704         { 0x30, 0x39 }, /* VK_0 - VK_9 */
1705         { 0x41, 0x5a }, /* VK_A - VK_Z */
1706         { 0, 0 }
1707     };
1708     int vkey_range;
1709
1710     set_kbd_layout_preload_key();
1711
1712     wine_tsx11_lock();
1713     XDisplayKeycodes(display, &min_keycode, &max_keycode);
1714     ksp = XGetKeyboardMapping(display, min_keycode,
1715                               max_keycode + 1 - min_keycode, &keysyms_per_keycode);
1716     /* We are only interested in keysyms_per_keycode.
1717        There is no need to hold a local copy of the keysyms table */
1718     XFree(ksp);
1719
1720     mmp = XGetModifierMapping(display);
1721     kcp = mmp->modifiermap;
1722     for (i = 0; i < 8; i += 1) /* There are 8 modifier keys */
1723     {
1724         int j;
1725
1726         for (j = 0; j < mmp->max_keypermod; j += 1, kcp += 1)
1727             if (*kcp)
1728             {
1729                 int k;
1730
1731                 for (k = 0; k < keysyms_per_keycode; k += 1)
1732                     if (keycode_to_keysym(display, *kcp, k) == XK_Num_Lock)
1733                     {
1734                         NumLockMask = 1 << i;
1735                         TRACE_(key)("NumLockMask is %x\n", NumLockMask);
1736                     }
1737                     else if (keycode_to_keysym(display, *kcp, k) == XK_Scroll_Lock)
1738                     {
1739                         ScrollLockMask = 1 << i;
1740                         TRACE_(key)("ScrollLockMask is %x\n", ScrollLockMask);
1741                     }
1742             }
1743     }
1744     XFreeModifiermap(mmp);
1745
1746     /* Detect the keyboard layout */
1747     X11DRV_KEYBOARD_DetectLayout( display );
1748     lkey = main_key_tab[kbd_layout].key;
1749     syms = (keysyms_per_keycode > 4) ? 4 : keysyms_per_keycode;
1750
1751     /* Now build two conversion arrays :
1752      * keycode -> vkey + scancode + extended
1753      * vkey + extended -> keycode */
1754
1755     e2.display = display;
1756     e2.state = 0;
1757     e2.type = KeyPress;
1758
1759     memset(keyc2vkey, 0, sizeof(keyc2vkey));
1760     for (keyc = min_keycode; keyc <= max_keycode; keyc++)
1761     {
1762         char buf[30];
1763         int have_chars;
1764
1765         keysym = 0;
1766         e2.keycode = (KeyCode)keyc;
1767         have_chars = XLookupString(&e2, buf, sizeof(buf), &keysym, NULL);
1768         vkey = 0; scan = 0;
1769         if (keysym)  /* otherwise, keycode not used */
1770         {
1771             if ((keysym >> 8) == 0xFF)         /* non-character key */
1772             {
1773                 vkey = nonchar_key_vkey[keysym & 0xff];
1774                 scan = nonchar_key_scan[keysym & 0xff];
1775                 /* set extended bit when necessary */
1776                 if (scan & 0x100) vkey |= 0x100;
1777             } else if ((keysym >> 8) == 0x1008FF) { /* XFree86 vendor keys */
1778                 vkey = xfree86_vendor_key_vkey[keysym & 0xff];
1779                 /* All vendor keys are extended with a scan code of 0 per testing on WinXP */
1780                 scan = 0x100;
1781                 vkey |= 0x100;
1782             } else if (keysym == 0x20) {                 /* Spacebar */
1783                 vkey = VK_SPACE;
1784                 scan = 0x39;
1785             } else if (have_chars) {
1786               /* we seem to need to search the layout-dependent scancodes */
1787               int maxlen=0,maxval=-1,ok;
1788               for (i=0; i<syms; i++) {
1789                 keysym = keycode_to_keysym(display, keyc, i);
1790                 if ((keysym<0x8000) && (keysym!=' '))
1791                 {
1792 #ifdef HAVE_XKB
1793                     if (!use_xkb || !XkbTranslateKeySym(display, &keysym, 0, &ckey[i], 1, NULL))
1794 #endif
1795                     {
1796                         /* FIXME: query what keysym is used as Mode_switch, fill XKeyEvent
1797                          * with appropriate ShiftMask and Mode_switch, use XLookupString
1798                          * to get character in the local encoding.
1799                          */
1800                         ckey[i] = keysym & 0xFF;
1801                     }
1802                 } else {
1803                   ckey[i] = KEYBOARD_MapDeadKeysym(keysym);
1804                 }
1805               }
1806               /* find key with longest match streak */
1807               for (keyn=0; keyn<MAIN_LEN; keyn++) {
1808                 for (ok=(*lkey)[keyn][i=0]; ok&&(i<4); i++)
1809                   if ((*lkey)[keyn][i] && (*lkey)[keyn][i]!=ckey[i]) ok=0;
1810                 if (!ok) i--; /* we overshot */
1811                 if (ok||(i>maxlen)) {
1812                   maxlen=i; maxval=keyn;
1813                 }
1814                 if (ok) break;
1815               }
1816               if (maxval>=0) {
1817                 /* got it */
1818                 const WORD (*lscan)[MAIN_LEN] = main_key_tab[kbd_layout].scan;
1819                 const WORD (*lvkey)[MAIN_LEN] = main_key_tab[kbd_layout].vkey;
1820                 scan = (*lscan)[maxval];
1821                 vkey = (*lvkey)[maxval];
1822               }
1823             }
1824         }
1825         TRACE("keycode %u => vkey %04X\n", e2.keycode, vkey);
1826         keyc2vkey[e2.keycode] = vkey;
1827         keyc2scan[e2.keycode] = scan;
1828         if ((vkey & 0xff) && vkey_used[(vkey & 0xff)])
1829             WARN("vkey %04X is being used by more than one keycode\n", vkey);
1830         vkey_used[(vkey & 0xff)] = 1;
1831     } /* for */
1832
1833 #define VKEY_IF_NOT_USED(vkey) (vkey_used[(vkey)] ? 0 : (vkey_used[(vkey)] = 1, (vkey)))
1834     for (keyc = min_keycode; keyc <= max_keycode; keyc++)
1835     {
1836         vkey = keyc2vkey[keyc] & 0xff;
1837         if (vkey)
1838             continue;
1839
1840         e2.keycode = (KeyCode)keyc;
1841         keysym = XLookupKeysym(&e2, 0);
1842         if (!keysym)
1843            continue;
1844
1845         /* find a suitable layout-dependent VK code */
1846         /* (most Winelib apps ought to be able to work without layout tables!) */
1847         for (i = 0; (i < keysyms_per_keycode) && (!vkey); i++)
1848         {
1849             keysym = XLookupKeysym(&e2, i);
1850             if ((keysym >= XK_0 && keysym <= XK_9)
1851                 || (keysym >= XK_A && keysym <= XK_Z)) {
1852                 vkey = VKEY_IF_NOT_USED(keysym);
1853             }
1854         }
1855
1856         for (i = 0; (i < keysyms_per_keycode) && (!vkey); i++)
1857         {
1858             keysym = XLookupKeysym(&e2, i);
1859             switch (keysym)
1860             {
1861             case ';':             vkey = VKEY_IF_NOT_USED(VK_OEM_1); break;
1862             case '/':             vkey = VKEY_IF_NOT_USED(VK_OEM_2); break;
1863             case '`':             vkey = VKEY_IF_NOT_USED(VK_OEM_3); break;
1864             case '[':             vkey = VKEY_IF_NOT_USED(VK_OEM_4); break;
1865             case '\\':            vkey = VKEY_IF_NOT_USED(VK_OEM_5); break;
1866             case ']':             vkey = VKEY_IF_NOT_USED(VK_OEM_6); break;
1867             case '\'':            vkey = VKEY_IF_NOT_USED(VK_OEM_7); break;
1868             case ',':             vkey = VKEY_IF_NOT_USED(VK_OEM_COMMA); break;
1869             case '.':             vkey = VKEY_IF_NOT_USED(VK_OEM_PERIOD); break;
1870             case '-':             vkey = VKEY_IF_NOT_USED(VK_OEM_MINUS); break;
1871             case '+':             vkey = VKEY_IF_NOT_USED(VK_OEM_PLUS); break;
1872             }
1873         }
1874
1875         if (vkey)
1876         {
1877             TRACE("keycode %u => vkey %04X\n", e2.keycode, vkey);
1878             keyc2vkey[e2.keycode] = vkey;
1879         }
1880     } /* for */
1881
1882     /* For any keycodes which still don't have a vkey, assign any spare
1883      * character, function key, or OEM virtual key code. */
1884     vkey_range = 0;
1885     vkey = vkey_ranges[vkey_range].first;
1886     for (keyc = min_keycode; keyc <= max_keycode; keyc++)
1887     {
1888         if (keyc2vkey[keyc] & 0xff)
1889             continue;
1890
1891         e2.keycode = (KeyCode)keyc;
1892         keysym = XLookupKeysym(&e2, 0);
1893         if (!keysym)
1894            continue;
1895
1896         while (vkey && vkey_used[vkey])
1897         {
1898             if (vkey == vkey_ranges[vkey_range].last)
1899             {
1900                 vkey_range++;
1901                 vkey = vkey_ranges[vkey_range].first;
1902             }
1903             else
1904                 vkey++;
1905         }
1906
1907         if (!vkey)
1908         {
1909             WARN("No more vkeys available!\n");
1910             break;
1911         }
1912
1913         if (TRACE_ON(keyboard))
1914         {
1915             TRACE("spare virtual key %04X assigned to keycode %u:\n",
1916                              vkey, e2.keycode);
1917             TRACE("(");
1918             for (i = 0; i < keysyms_per_keycode; i += 1)
1919             {
1920                 const char *ksname;
1921
1922                 keysym = XLookupKeysym(&e2, i);
1923                 ksname = XKeysymToString(keysym);
1924                 if (!ksname)
1925                     ksname = "NoSymbol";
1926                 TRACE( "%lx (%s) ", keysym, ksname);
1927             }
1928             TRACE(")\n");
1929         }
1930
1931         TRACE("keycode %u => vkey %04X\n", e2.keycode, vkey);
1932         keyc2vkey[e2.keycode] = vkey;
1933         vkey_used[vkey] = 1;
1934     } /* for */
1935 #undef VKEY_IF_NOT_USED
1936
1937     /* If some keys still lack scancodes, assign some arbitrary ones to them now */
1938     for (scan = 0x60, keyc = min_keycode; keyc <= max_keycode; keyc++)
1939       if (keyc2vkey[keyc]&&!keyc2scan[keyc]) {
1940         const char *ksname;
1941         keysym = keycode_to_keysym(display, keyc, 0);
1942         ksname = XKeysymToString(keysym);
1943         if (!ksname) ksname = "NoSymbol";
1944
1945         /* should make sure the scancode is unassigned here, but >=0x60 currently always is */
1946
1947         TRACE_(key)("assigning scancode %02x to unidentified keycode %u (%s)\n",scan,keyc,ksname);
1948         keyc2scan[keyc]=scan++;
1949       }
1950
1951     wine_tsx11_unlock();
1952 }
1953
1954 static BOOL match_x11_keyboard_layout(HKL hkl)
1955 {
1956     const DWORD isIME = 0xE0000000;
1957     HKL xHkl = get_locale_kbd_layout();
1958
1959     /* if the layout is an IME, only match the low word (LCID) */
1960     if (((ULONG_PTR)hkl & isIME) == isIME)
1961         return (LOWORD(hkl) == LOWORD(xHkl));
1962     else
1963         return (hkl == xHkl);
1964 }
1965
1966 /**********************************************************************
1967  *              GetAsyncKeyState (X11DRV.@)
1968  */
1969 SHORT CDECL X11DRV_GetAsyncKeyState(INT key)
1970 {
1971     /* Photoshop livelocks unless mouse events are included here */
1972     X11DRV_MsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_KEY | QS_MOUSE, 0 );
1973     return -1;
1974 }
1975
1976
1977 /***********************************************************************
1978  *              GetKeyboardLayout (X11DRV.@)
1979  */
1980 HKL CDECL X11DRV_GetKeyboardLayout(DWORD dwThreadid)
1981 {
1982     if (!dwThreadid || dwThreadid == GetCurrentThreadId())
1983     {
1984         struct x11drv_thread_data *thread_data = x11drv_thread_data();
1985         if (thread_data && thread_data->kbd_layout) return thread_data->kbd_layout;
1986     }
1987     else
1988         FIXME("couldn't return keyboard layout for thread %04x\n", dwThreadid);
1989
1990     return get_locale_kbd_layout();
1991 }
1992
1993
1994 /***********************************************************************
1995  *              LoadKeyboardLayout (X11DRV.@)
1996  */
1997 HKL CDECL X11DRV_LoadKeyboardLayout(LPCWSTR name, UINT flags)
1998 {
1999     FIXME("%s, %04x: stub!\n", debugstr_w(name), flags);
2000     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2001     return 0;
2002 }
2003
2004
2005 /***********************************************************************
2006  *              UnloadKeyboardLayout (X11DRV.@)
2007  */
2008 BOOL CDECL X11DRV_UnloadKeyboardLayout(HKL hkl)
2009 {
2010     FIXME("%p: stub!\n", hkl);
2011     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2012     return FALSE;
2013 }
2014
2015
2016 /***********************************************************************
2017  *              ActivateKeyboardLayout (X11DRV.@)
2018  */
2019 HKL CDECL X11DRV_ActivateKeyboardLayout(HKL hkl, UINT flags)
2020 {
2021     HKL oldHkl = 0;
2022     struct x11drv_thread_data *thread_data = x11drv_init_thread_data();
2023
2024     FIXME("%p, %04x: semi-stub!\n", hkl, flags);
2025     if (flags & KLF_SETFORPROCESS)
2026     {
2027         SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2028         FIXME("KLF_SETFORPROCESS not supported\n");
2029         return 0;
2030     }
2031
2032     if (flags)
2033         FIXME("flags %x not supported\n",flags);
2034
2035     if (hkl == (HKL)HKL_NEXT || hkl == (HKL)HKL_PREV)
2036     {
2037         SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2038         FIXME("HKL_NEXT and HKL_PREV not supported\n");
2039         return 0;
2040     }
2041
2042     if (!match_x11_keyboard_layout(hkl))
2043     {
2044         SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2045         FIXME("setting keyboard of different locales not supported\n");
2046         return 0;
2047     }
2048
2049     oldHkl = thread_data->kbd_layout;
2050     if (!oldHkl) oldHkl = get_locale_kbd_layout();
2051
2052     thread_data->kbd_layout = hkl;
2053
2054     return oldHkl;
2055 }
2056
2057
2058 /***********************************************************************
2059  *           X11DRV_MappingNotify
2060  */
2061 void X11DRV_MappingNotify( HWND dummy, XEvent *event )
2062 {
2063     HWND hwnd;
2064
2065     wine_tsx11_lock();
2066     XRefreshKeyboardMapping(&event->xmapping);
2067     wine_tsx11_unlock();
2068     X11DRV_InitKeyboard( event->xmapping.display );
2069
2070     hwnd = GetFocus();
2071     if (!hwnd) hwnd = GetActiveWindow();
2072     PostMessageW(hwnd, WM_INPUTLANGCHANGEREQUEST,
2073                  0 /*FIXME*/, (LPARAM)X11DRV_GetKeyboardLayout(0));
2074 }
2075
2076
2077 /***********************************************************************
2078  *              VkKeyScanEx (X11DRV.@)
2079  *
2080  * Note: Windows ignores HKL parameter and uses current active layout instead
2081  */
2082 SHORT CDECL X11DRV_VkKeyScanEx(WCHAR wChar, HKL hkl)
2083 {
2084     Display *display = thread_init_display();
2085     KeyCode keycode;
2086     KeySym keysym;
2087     int i, index;
2088     CHAR cChar;
2089     SHORT ret;
2090
2091     /* FIXME: what happens if wChar is not a Latin1 character and CP_UNIXCP
2092      * is UTF-8 (multibyte encoding)?
2093      */
2094     if (!WideCharToMultiByte(CP_UNIXCP, 0, &wChar, 1, &cChar, 1, NULL, NULL))
2095     {
2096         WARN("no translation from unicode to CP_UNIXCP for 0x%02x\n", wChar);
2097         return -1;
2098     }
2099
2100     TRACE("wChar 0x%02x -> cChar '%c'\n", wChar, cChar);
2101
2102     /* char->keysym (same for ANSI chars) */
2103     keysym = (unsigned char)cChar; /* (!) cChar is signed */
2104     if (keysym <= 27) keysym += 0xFF00; /* special chars : return, backspace... */
2105
2106     wine_tsx11_lock();
2107     keycode = XKeysymToKeycode(display, keysym);  /* keysym -> keycode */
2108     if (!keycode)
2109     {
2110         if (keysym >= 0xFF00) /* Windows returns 0x0240 + cChar in this case */
2111         {
2112             ret = 0x0240 + cChar; /* 0x0200 indicates a control character */
2113             TRACE(" ... returning ctrl char %#.2x\n", ret);
2114             wine_tsx11_unlock();
2115             return ret;
2116         }
2117         /* It didn't work ... let's try with deadchar code. */
2118         TRACE("retrying with | 0xFE00\n");
2119         keycode = XKeysymToKeycode(display, keysym | 0xFE00);
2120     }
2121     wine_tsx11_unlock();
2122
2123     TRACE("'%c'(%lx): got keycode %u\n", cChar, keysym, keycode);
2124
2125     /* keycode -> (keyc2vkey) vkey */
2126     ret = keyc2vkey[keycode];
2127
2128     if (!keycode || !ret)
2129     {
2130         TRACE("keycode for '%c' not found, returning -1\n", cChar);
2131         return -1;
2132     }
2133
2134     index = -1;
2135     wine_tsx11_lock();
2136     for (i = 0; i < 4; i++) /* find shift state */
2137     {
2138         if (keycode_to_keysym(display, keycode, i) == keysym)
2139         {
2140             index = i;
2141             break;
2142         }
2143     }
2144     wine_tsx11_unlock();
2145
2146     switch (index)
2147     {
2148         default:
2149         case -1:
2150             WARN("Keysym %lx not found while parsing the keycode table\n", keysym);
2151             return -1;
2152
2153         case 0: break;
2154         case 1: ret += 0x0100; break;
2155         case 2: ret += 0x0600; break;
2156         case 3: ret += 0x0700; break;
2157     }
2158     /*
2159       index : 0     adds 0x0000
2160       index : 1     adds 0x0100 (shift)
2161       index : ?     adds 0x0200 (ctrl)
2162       index : 2     adds 0x0600 (ctrl+alt)
2163       index : 3     adds 0x0700 (ctrl+alt+shift)
2164      */
2165
2166     TRACE(" ... returning %#.2x\n", ret);
2167     return ret;
2168 }
2169
2170 /***********************************************************************
2171  *              MapVirtualKeyEx (X11DRV.@)
2172  */
2173 UINT CDECL X11DRV_MapVirtualKeyEx(UINT wCode, UINT wMapType, HKL hkl)
2174 {
2175     Display *display = thread_init_display();
2176
2177 #define returnMVK(value) do { TRACE("returning 0x%x.\n",value); return value; } while(0)
2178
2179     TRACE("wCode=0x%x, wMapType=%d, hkl %p\n", wCode, wMapType, hkl);
2180     if (!match_x11_keyboard_layout(hkl))
2181         FIXME("keyboard layout %p is not supported\n", hkl);
2182
2183     switch(wMapType)
2184     {
2185         case MAPVK_VK_TO_VSC: /* vkey-code to scan-code */
2186         case MAPVK_VK_TO_VSC_EX:
2187         {
2188             int keyc;
2189
2190             switch (wCode)
2191             {
2192                 case VK_SHIFT: wCode = VK_LSHIFT; break;
2193                 case VK_CONTROL: wCode = VK_LCONTROL; break;
2194                 case VK_MENU: wCode = VK_LMENU; break;
2195             }
2196
2197             /* let's do vkey -> keycode -> scan */
2198             for (keyc = min_keycode; keyc <= max_keycode; keyc++)
2199                 if ((keyc2vkey[keyc] & 0xFF) == wCode) break;
2200
2201             if (keyc > max_keycode)
2202             {
2203                 TRACE("returning no scan-code.\n");
2204                 return 0;
2205             }
2206             returnMVK (keyc2scan[keyc] & 0xFF);
2207         }
2208         case MAPVK_VSC_TO_VK: /* scan-code to vkey-code */
2209         case MAPVK_VSC_TO_VK_EX:
2210         {
2211             int keyc;
2212             UINT vkey = 0;
2213
2214             /* let's do scan -> keycode -> vkey */
2215             for (keyc = min_keycode; keyc <= max_keycode; keyc++)
2216                 if ((keyc2scan[keyc] & 0xFF) == (wCode & 0xFF))
2217                 {
2218                     vkey = keyc2vkey[keyc] & 0xFF;
2219                     /* Only stop if it's not a numpad vkey; otherwise keep
2220                        looking for a potential better vkey. */
2221                     if (vkey && (vkey < VK_NUMPAD0 || VK_DIVIDE < vkey))
2222                         break;
2223                 }
2224
2225             if (vkey == 0)
2226             {
2227                 TRACE("returning no vkey-code.\n");
2228                 return 0;
2229             }
2230
2231             if (wMapType == MAPVK_VSC_TO_VK)
2232                 switch (vkey)
2233                 {
2234                     case VK_LSHIFT:
2235                     case VK_RSHIFT:
2236                         vkey = VK_SHIFT; break;
2237                     case VK_LCONTROL:
2238                     case VK_RCONTROL:
2239                         vkey = VK_CONTROL; break;
2240                     case VK_LMENU:
2241                     case VK_RMENU:
2242                         vkey = VK_MENU; break;
2243                 }
2244
2245             returnMVK (vkey);
2246         }
2247                 case MAPVK_VK_TO_CHAR: /* vkey-code to unshifted ANSI code */
2248                 {
2249                         /* we still don't know what "unshifted" means. in windows VK_W (0x57)
2250                          * returns 0x57, which is upercase 'W'. So we have to return the uppercase
2251                          * key.. Looks like something is wrong with the MS docs?
2252                          * This is only true for letters, for example VK_0 returns '0' not ')'.
2253                          * - hence we use the lock mask to ensure this happens.
2254                          */
2255                         /* let's do vkey -> keycode -> (XLookupString) ansi char */
2256                         XKeyEvent e;
2257                         KeySym keysym;
2258                         int keyc, len;
2259                         char s[10];
2260
2261                         e.display = display;
2262                         e.state = 0;
2263                         e.keycode = 0;
2264                         e.type = KeyPress;
2265
2266                         wine_tsx11_lock();
2267
2268                         /* We exit on the first keycode found, to speed up the thing. */
2269                         for (keyc=min_keycode; (keyc<=max_keycode) && (!e.keycode) ; keyc++)
2270                         { /* Find a keycode that could have generated this virtual key */
2271                             if  ((keyc2vkey[keyc] & 0xFF) == wCode)
2272                             { /* We filter the extended bit, we don't know it */
2273                                 e.keycode = keyc; /* Store it temporarily */
2274                                 if ((EVENT_event_to_vkey(0,&e) & 0xFF) != wCode) {
2275                                     e.keycode = 0; /* Wrong one (ex: because of the NumLock
2276                                          state), so set it to 0, we'll find another one */
2277                                 }
2278                             }
2279                         }
2280
2281                         if ((wCode>=VK_NUMPAD0) && (wCode<=VK_NUMPAD9))
2282                           e.keycode = XKeysymToKeycode(e.display, wCode-VK_NUMPAD0+XK_KP_0);
2283
2284                         if (wCode==VK_DECIMAL)
2285                           e.keycode = XKeysymToKeycode(e.display, XK_KP_Decimal);
2286
2287                         if (!e.keycode)
2288                         {
2289                           WARN("Unknown virtual key %X !!!\n", wCode);
2290                           wine_tsx11_unlock();
2291                           return 0; /* whatever */
2292                         }
2293                         TRACE("Found keycode %u\n",e.keycode);
2294
2295                         len = XLookupString(&e, s, sizeof(s), &keysym, NULL);
2296                         wine_tsx11_unlock();
2297
2298                         if (len)
2299                         {
2300                             WCHAR wch;
2301                             if (MultiByteToWideChar(CP_UNIXCP, 0, s, len, &wch, 1))
2302                                 returnMVK(toupperW(wch));
2303                         }
2304                         TRACE("returning no ANSI.\n");
2305                         return 0;
2306                 }
2307                 default: /* reserved */
2308                         FIXME("Unknown wMapType %d !\n", wMapType);
2309                         return 0;
2310         }
2311         return 0;
2312 }
2313
2314 /***********************************************************************
2315  *              GetKeyNameText (X11DRV.@)
2316  */
2317 INT CDECL X11DRV_GetKeyNameText(LONG lParam, LPWSTR lpBuffer, INT nSize)
2318 {
2319   Display *display = thread_init_display();
2320   int vkey, ansi, scanCode;
2321   KeyCode keyc;
2322   int keyi;
2323   KeySym keys;
2324   char *name;
2325
2326   scanCode = lParam >> 16;
2327   scanCode &= 0x1ff;  /* keep "extended-key" flag with code */
2328
2329   vkey = X11DRV_MapVirtualKeyEx(scanCode, MAPVK_VSC_TO_VK_EX, X11DRV_GetKeyboardLayout(0));
2330
2331   /*  handle "don't care" bit (0x02000000) */
2332   if (!(lParam & 0x02000000)) {
2333     switch (vkey) {
2334          case VK_RSHIFT:
2335                           /* R-Shift is "special" - it is an extended key with separate scan code */
2336                           scanCode |= 0x100;
2337          case VK_LSHIFT:
2338                           vkey = VK_SHIFT;
2339                           break;
2340        case VK_LCONTROL:
2341        case VK_RCONTROL:
2342                           vkey = VK_CONTROL;
2343                           break;
2344           case VK_LMENU:
2345           case VK_RMENU:
2346                           vkey = VK_MENU;
2347                           break;
2348     }
2349   }
2350
2351   ansi = X11DRV_MapVirtualKeyEx(vkey, MAPVK_VK_TO_CHAR, X11DRV_GetKeyboardLayout(0));
2352   TRACE("scan 0x%04x, vkey 0x%04X, ANSI 0x%04x\n", scanCode, vkey, ansi);
2353
2354   /* first get the name of the "regular" keys which is the Upper case
2355      value of the keycap imprint.                                     */
2356   if ( ((ansi >= 0x21) && (ansi <= 0x7e)) &&
2357        (scanCode != 0x137) &&   /* PrtScn   */
2358        (scanCode != 0x135) &&   /* numpad / */
2359        (scanCode != 0x37 ) &&   /* numpad * */
2360        (scanCode != 0x4a ) &&   /* numpad - */
2361        (scanCode != 0x4e ) )    /* numpad + */
2362       {
2363         if ((nSize >= 2) && lpBuffer)
2364         {
2365           *lpBuffer = toupperW((WCHAR)ansi);
2366           *(lpBuffer+1) = 0;
2367           return 1;
2368         }
2369      else
2370         return 0;
2371   }
2372
2373   /* FIXME: horrible hack to fix function keys. Windows reports scancode
2374             without "extended-key" flag. However Wine generates scancode
2375             *with* "extended-key" flag. Seems to occur *only* for the
2376             function keys. Soooo.. We will leave the table alone and
2377             fudge the lookup here till the other part is found and fixed!!! */
2378
2379   if ( ((scanCode >= 0x13b) && (scanCode <= 0x144)) ||
2380        (scanCode == 0x157) || (scanCode == 0x158))
2381     scanCode &= 0xff;   /* remove "extended-key" flag for Fx keys */
2382
2383   /* let's do scancode -> keycode -> keysym -> String */
2384
2385   for (keyi=min_keycode; keyi<=max_keycode; keyi++)
2386       if ((keyc2scan[keyi]) == scanCode)
2387          break;
2388   if (keyi <= max_keycode)
2389   {
2390       wine_tsx11_lock();
2391       keyc = (KeyCode) keyi;
2392       keys = keycode_to_keysym(display, keyc, 0);
2393       name = XKeysymToString(keys);
2394       wine_tsx11_unlock();
2395       TRACE("found scan=%04x keyc=%u keysym=%04x string=%s\n",
2396             scanCode, keyc, (int)keys, name);
2397       if (lpBuffer && nSize && name)
2398           return MultiByteToWideChar(CP_UNIXCP, 0, name, -1, lpBuffer, nSize);
2399   }
2400
2401   /* Finally issue WARN for unknown keys   */
2402
2403   WARN("(%08x,%p,%d): unsupported key, vkey=%04X, ansi=%04x\n",lParam,lpBuffer,nSize,vkey,ansi);
2404   if (lpBuffer && nSize)
2405     *lpBuffer = 0;
2406   return 0;
2407 }
2408
2409 /***********************************************************************
2410  *              X11DRV_KEYBOARD_MapDeadKeysym
2411  */
2412 static char KEYBOARD_MapDeadKeysym(KeySym keysym)
2413 {
2414         switch (keysym)
2415             {
2416         /* symbolic ASCII is the same as defined in rfc1345 */
2417 #ifdef XK_dead_tilde
2418             case XK_dead_tilde :
2419 #endif
2420             case 0x1000FE7E : /* Xfree's XK_Dtilde */
2421                 return '~';     /* '? */
2422 #ifdef XK_dead_acute
2423             case XK_dead_acute :
2424 #endif
2425             case 0x1000FE27 : /* Xfree's XK_Dacute_accent */
2426                 return 0xb4;    /* '' */
2427 #ifdef XK_dead_circumflex
2428             case XK_dead_circumflex:
2429 #endif
2430             case 0x1000FE5E : /* Xfree's XK_Dcircumflex_accent */
2431                 return '^';     /* '> */
2432 #ifdef XK_dead_grave
2433             case XK_dead_grave :
2434 #endif
2435             case 0x1000FE60 : /* Xfree's XK_Dgrave_accent */
2436                 return '`';     /* '! */
2437 #ifdef XK_dead_diaeresis
2438             case XK_dead_diaeresis :
2439 #endif
2440             case 0x1000FE22 : /* Xfree's XK_Ddiaeresis */
2441                 return 0xa8;    /* ': */
2442 #ifdef XK_dead_cedilla
2443             case XK_dead_cedilla :
2444                 return 0xb8;    /* ', */
2445 #endif
2446 #ifdef XK_dead_macron
2447             case XK_dead_macron :
2448                 return '-';     /* 'm isn't defined on iso-8859-x */
2449 #endif
2450 #ifdef XK_dead_breve
2451             case XK_dead_breve :
2452                 return 0xa2;    /* '( */
2453 #endif
2454 #ifdef XK_dead_abovedot
2455             case XK_dead_abovedot :
2456                 return 0xff;    /* '. */
2457 #endif
2458 #ifdef XK_dead_abovering
2459             case XK_dead_abovering :
2460                 return '0';     /* '0 isn't defined on iso-8859-x */
2461 #endif
2462 #ifdef XK_dead_doubleacute
2463             case XK_dead_doubleacute :
2464                 return 0xbd;    /* '" */
2465 #endif
2466 #ifdef XK_dead_caron
2467             case XK_dead_caron :
2468                 return 0xb7;    /* '< */
2469 #endif
2470 #ifdef XK_dead_ogonek
2471             case XK_dead_ogonek :
2472                 return 0xb2;    /* '; */
2473 #endif
2474 /* FIXME: I don't know this three.
2475             case XK_dead_iota :
2476                 return 'i';
2477             case XK_dead_voiced_sound :
2478                 return 'v';
2479             case XK_dead_semivoiced_sound :
2480                 return 's';
2481 */
2482             }
2483         TRACE("no character for dead keysym 0x%08lx\n",keysym);
2484         return 0;
2485 }
2486
2487 /***********************************************************************
2488  *              ToUnicodeEx (X11DRV.@)
2489  *
2490  * The ToUnicode function translates the specified virtual-key code and keyboard
2491  * state to the corresponding Windows character or characters.
2492  *
2493  * If the specified key is a dead key, the return value is negative. Otherwise,
2494  * it is one of the following values:
2495  * Value        Meaning
2496  * 0    The specified virtual key has no translation for the current state of the keyboard.
2497  * 1    One Windows character was copied to the buffer.
2498  * 2    Two characters were copied to the buffer. This usually happens when a
2499  *      dead-key character (accent or diacritic) stored in the keyboard layout cannot
2500  *      be composed with the specified virtual key to form a single character.
2501  *
2502  * FIXME : should do the above (return 2 for non matching deadchar+char combinations)
2503  *
2504  */
2505 INT CDECL X11DRV_ToUnicodeEx(UINT virtKey, UINT scanCode, const BYTE *lpKeyState,
2506                              LPWSTR bufW, int bufW_size, UINT flags, HKL hkl)
2507 {
2508     Display *display = thread_init_display();
2509     XKeyEvent e;
2510     KeySym keysym = 0;
2511     INT ret;
2512     int keyc;
2513     char buf[10];
2514     char *lpChar = buf;
2515     HWND focus;
2516     XIC xic;
2517     Status status = 0;
2518
2519     if (scanCode & 0x8000)
2520     {
2521         TRACE("Key UP, doing nothing\n" );
2522         return 0;
2523     }
2524
2525     if (!match_x11_keyboard_layout(hkl))
2526         FIXME("keyboard layout %p is not supported\n", hkl);
2527
2528     if ((lpKeyState[VK_MENU] & 0x80) && (lpKeyState[VK_CONTROL] & 0x80))
2529     {
2530         TRACE("Ctrl+Alt+[key] won't generate a character\n");
2531         return 0;
2532     }
2533
2534     e.display = display;
2535     e.keycode = 0;
2536     e.state = 0;
2537     e.type = KeyPress;
2538
2539     focus = x11drv_thread_data()->last_xic_hwnd;
2540     if (!focus)
2541     {
2542         focus = GetFocus();
2543         if (focus) focus = GetAncestor( focus, GA_ROOT );
2544         if (!focus) focus = GetActiveWindow();
2545     }
2546     e.window = X11DRV_get_whole_window( focus );
2547     xic = X11DRV_get_ic( focus );
2548
2549     if (lpKeyState[VK_SHIFT] & 0x80)
2550     {
2551         TRACE("ShiftMask = %04x\n", ShiftMask);
2552         e.state |= ShiftMask;
2553     }
2554     if (lpKeyState[VK_CAPITAL] & 0x01)
2555     {
2556         TRACE("LockMask = %04x\n", LockMask);
2557         e.state |= LockMask;
2558     }
2559     if (lpKeyState[VK_CONTROL] & 0x80)
2560     {
2561         TRACE("ControlMask = %04x\n", ControlMask);
2562         e.state |= ControlMask;
2563     }
2564     if (lpKeyState[VK_NUMLOCK] & 0x01)
2565     {
2566         TRACE("NumLockMask = %04x\n", NumLockMask);
2567         e.state |= NumLockMask;
2568     }
2569
2570     /* Restore saved AltGr state */
2571     TRACE("AltGrMask = %04x\n", AltGrMask);
2572     e.state |= AltGrMask;
2573
2574     TRACE_(key)("(%04X, %04X) : faked state = 0x%04x\n",
2575                 virtKey, scanCode, e.state);
2576     wine_tsx11_lock();
2577     /* We exit on the first keycode found, to speed up the thing. */
2578     for (keyc=min_keycode; (keyc<=max_keycode) && (!e.keycode) ; keyc++)
2579       { /* Find a keycode that could have generated this virtual key */
2580           if  ((keyc2vkey[keyc] & 0xFF) == virtKey)
2581           { /* We filter the extended bit, we don't know it */
2582               e.keycode = keyc; /* Store it temporarily */
2583               if ((EVENT_event_to_vkey(xic,&e) & 0xFF) != virtKey) {
2584                   e.keycode = 0; /* Wrong one (ex: because of the NumLock
2585                          state), so set it to 0, we'll find another one */
2586               }
2587           }
2588       }
2589
2590     if (virtKey >= VK_LEFT && virtKey <= VK_DOWN)
2591         e.keycode = XKeysymToKeycode(e.display, virtKey - VK_LEFT + XK_Left);
2592
2593     if ((virtKey>=VK_NUMPAD0) && (virtKey<=VK_NUMPAD9))
2594         e.keycode = XKeysymToKeycode(e.display, virtKey-VK_NUMPAD0+XK_KP_0);
2595
2596     if (virtKey==VK_DECIMAL)
2597         e.keycode = XKeysymToKeycode(e.display, XK_KP_Decimal);
2598
2599     if (virtKey==VK_SEPARATOR)
2600         e.keycode = XKeysymToKeycode(e.display, XK_KP_Separator);
2601
2602     if (!e.keycode && virtKey != VK_NONAME)
2603       {
2604         WARN("Unknown virtual key %X !!!\n", virtKey);
2605         wine_tsx11_unlock();
2606         return 0;
2607       }
2608     else TRACE("Found keycode %u\n",e.keycode);
2609
2610     TRACE_(key)("type %d, window %lx, state 0x%04x, keycode %u\n",
2611                 e.type, e.window, e.state, e.keycode);
2612
2613     /* Clients should pass only KeyPress events to XmbLookupString,
2614      * e.type was set to KeyPress above.
2615      */
2616     if (xic)
2617     {
2618         ret = XmbLookupString(xic, &e, buf, sizeof(buf), &keysym, &status);
2619         TRACE("XmbLookupString needs %d byte(s)\n", ret);
2620         if (status == XBufferOverflow)
2621         {
2622             lpChar = HeapAlloc(GetProcessHeap(), 0, ret);
2623             if (lpChar == NULL)
2624             {
2625                 ERR("Failed to allocate memory!\n");
2626                 wine_tsx11_unlock();
2627                 return 0;
2628             }
2629             ret = XmbLookupString(xic, &e, lpChar, ret, &keysym, &status);
2630         }
2631     }
2632     else
2633         ret = XLookupString(&e, buf, sizeof(buf), &keysym, NULL);
2634     wine_tsx11_unlock();
2635
2636     TRACE_(key)("nbyte = %d, status 0x%x\n", ret, status);
2637
2638     if (TRACE_ON(key))
2639     {
2640         const char *ksname;
2641
2642         wine_tsx11_lock();
2643         ksname = XKeysymToString(keysym);
2644         wine_tsx11_unlock();
2645         if (!ksname) ksname = "No Name";
2646         TRACE_(key)("%s : keysym=%lx (%s), # of chars=%d / %s\n",
2647                     (e.type == KeyPress) ? "KeyPress" : "KeyRelease",
2648                     keysym, ksname, ret, debugstr_an(lpChar, ret));
2649     }
2650
2651     if (ret == 0)
2652     {
2653         char dead_char;
2654
2655 #ifdef XK_EuroSign
2656         /* An ugly hack for EuroSign: X can't translate it to a character
2657            for some locales. */
2658         if (keysym == XK_EuroSign)
2659         {
2660             bufW[0] = 0x20AC;
2661             ret = 1;
2662             goto found;
2663         }
2664 #endif
2665         /* Special case: X turns shift-tab into ISO_Left_Tab. */
2666         /* Here we change it back. */
2667         if (keysym == XK_ISO_Left_Tab && !(e.state & ControlMask))
2668         {
2669             bufW[0] = 0x09;
2670             ret = 1;
2671             goto found;
2672         }
2673
2674         dead_char = KEYBOARD_MapDeadKeysym(keysym);
2675         if (dead_char)
2676         {
2677             MultiByteToWideChar(CP_UNIXCP, 0, &dead_char, 1, bufW, bufW_size);
2678             ret = -1;
2679             goto found;
2680         }
2681
2682         if (keysym >= 0x01000100 && keysym <= 0x0100ffff)
2683         {
2684             /* Unicode direct mapping */
2685             bufW[0] = keysym & 0xffff;
2686             ret = 1;
2687             goto found;
2688         }
2689         else if ((keysym >> 8) == 0x1008FF) {
2690             bufW[0] = 0;
2691             ret = 0;
2692             goto found;
2693         }
2694         else
2695             {
2696             const char *ksname;
2697
2698             wine_tsx11_lock();
2699             ksname = XKeysymToString(keysym);
2700             wine_tsx11_unlock();
2701             if (!ksname)
2702                 ksname = "No Name";
2703             if ((keysym >> 8) != 0xff)
2704                 {
2705                 WARN("no char for keysym %04lx (%s) :\n",
2706                     keysym, ksname);
2707                 WARN("virtKey=%X, scanCode=%X, keycode=%u, state=%X\n",
2708                     virtKey, scanCode, e.keycode, e.state);
2709                 }
2710             }
2711         }
2712     else {  /* ret != 0 */
2713         /* We have a special case to handle : Shift + arrow, shift + home, ...
2714            X returns a char for it, but Windows doesn't. Let's eat it. */
2715         if (!(e.state & NumLockMask)  /* NumLock is off */
2716             && (e.state & ShiftMask) /* Shift is pressed */
2717             && (keysym>=XK_KP_0) && (keysym<=XK_KP_9))
2718         {
2719             lpChar[0] = 0;
2720             ret = 0;
2721         }
2722
2723         /* more areas where X returns characters but Windows does not
2724            CTRL + number or CTRL + symbol */
2725         if (e.state & ControlMask)
2726         {
2727             if (((keysym>=33) && (keysym < 'A')) ||
2728                 ((keysym > 'Z') && (keysym < 'a')) ||
2729                 (keysym == XK_Tab))
2730             {
2731                 lpChar[0] = 0;
2732                 ret = 0;
2733             }
2734         }
2735
2736         /* We have another special case for delete key (XK_Delete) on an
2737          extended keyboard. X returns a char for it, but Windows doesn't */
2738         if (keysym == XK_Delete)
2739         {
2740             lpChar[0] = 0;
2741             ret = 0;
2742         }
2743         else if((lpKeyState[VK_SHIFT] & 0x80) /* Shift is pressed */
2744                 && (keysym == XK_KP_Decimal))
2745         {
2746             lpChar[0] = 0;
2747             ret = 0;
2748         }
2749         else if((lpKeyState[VK_CONTROL] & 0x80) /* Control is pressed */
2750                 && (keysym == XK_Return || keysym == XK_KP_Enter))
2751         {
2752             lpChar[0] = '\n';
2753             ret = 1;
2754         }
2755
2756         /* Hack to detect an XLookupString hard-coded to Latin1 */
2757         if (ret == 1 && keysym >= 0x00a0 && keysym <= 0x00ff && (BYTE)lpChar[0] == keysym)
2758         {
2759             bufW[0] = (BYTE)lpChar[0];
2760             goto found;
2761         }
2762
2763         /* perform translation to unicode */
2764         if(ret)
2765         {
2766             TRACE_(key)("Translating char 0x%02x to unicode\n", *(BYTE *)lpChar);
2767             ret = MultiByteToWideChar(CP_UNIXCP, 0, lpChar, ret, bufW, bufW_size);
2768         }
2769     }
2770
2771 found:
2772     if (buf != lpChar)
2773         HeapFree(GetProcessHeap(), 0, lpChar);
2774     TRACE_(key)("returning %d with %s\n", ret, debugstr_wn(bufW, ret));
2775     return ret;
2776 }
2777
2778 /***********************************************************************
2779  *              Beep (X11DRV.@)
2780  */
2781 void CDECL X11DRV_Beep(void)
2782 {
2783     wine_tsx11_lock();
2784     XBell(gdi_display, 0);
2785     wine_tsx11_unlock();
2786 }