Delete all Trailing spaces in code.
[reactos.git] / reactos / dll / keyboard / kbdsk / kbdsk.c
1 /*
2 * ReactOS Slovak ASCII Keyboard layout
3 * Copyright (C) 2005 ReactOS
4 * License: LGPL, see: LGPL.txt
5 *
6 * Created by Malin (malin23@atlas.sk)
7 * Thanks to creators of others kbdxx.dll
8 */
9
10 #include <windows.h>
11 #include <internal/kbd.h>
12
13 #ifdef _M_IA64
14 #define ROSDATA static __declspec(allocate(".data"))
15 #else
16 #ifdef _MSC_VER
17 #pragma data_seg(".data")
18 #define ROSDATA static
19 #else
20 #define ROSDATA static __attribute__((section(".data")))
21 #endif
22 #endif
23
24 #define VK_EMPTY 0xff /* The non-existent VK */
25 #define KSHIFT 0x001 /* Shift modifier */
26 #define KCTRL 0x002 /* Ctrl modifier */
27 #define KALT 0x004 /* Alt modifier */
28 #define KEXT 0x100 /* Extended key code */
29 #define KMULTI 0x200 /* Multi-key */
30 #define KSPEC 0x400 /* Special key */
31 #define KNUMP 0x800 /* Number-pad */
32 #define KNUMS 0xc00 /* Special + number pad */
33 #define KMEXT 0x300 /* Multi + ext */
34
35 ROSDATA USHORT scancode_to_vk[] = {
36 /* Numbers Row */
37 /* - 00 - */
38 /* 1 ... 2 ... 3 ... 4 ... */
39 VK_EMPTY, VK_ESCAPE, '1', '2',
40 '3', '4', '5', '6',
41 '7', '8', '9', '0',
42 VK_OEM_MINUS, VK_OEM_PLUS, VK_BACK,
43 /* - 0f - */
44 /* First Letters Row */
45 VK_TAB, 'Q', 'W', 'E',
46 'R', 'T', 'Y', 'U',
47 'I', 'O', 'P',
48 VK_OEM_4, VK_OEM_6, VK_RETURN,
49 /* - 1d - */
50 /* Second Letters Row */
51 VK_LCONTROL,
52 'A', 'S', 'D', 'F',
53 'G', 'H', 'J', 'K',
54 'L', VK_OEM_1, VK_OEM_3, VK_OEM_8,
55 VK_LSHIFT, VK_OEM_7,
56 /* - 2c - */
57 /* Third letters row */
58 'Z', 'X', 'C', 'V',
59 'B', 'N', 'M', VK_OEM_COMMA,
60 VK_OEM_PERIOD,VK_OEM_2, VK_RSHIFT|KEXT,
61 /* - 37 - */
62 /* Bottom Row */
63 VK_MULTIPLY, VK_MENU, VK_SPACE, VK_CAPITAL,
64
65 /* - 3b - */
66 /* F-Keys */
67 VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
68 VK_F7, VK_F8, VK_F9, VK_F10,
69 /* - 45 - */
70 /* Locks */
71 VK_NUMLOCK | KMEXT,
72 VK_SCROLL | KMULTI,
73 /* - 47 - */
74 /* Number-Pad */
75 VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT,
76 VK_LEFT | KNUMS, VK_CLEAR | KNUMS, VK_RIGHT | KNUMS, VK_ADD,
77 VK_END | KNUMS, VK_DOWN | KNUMS, VK_NEXT | KNUMS,
78 VK_INSERT | KNUMS, VK_DELETE | KNUMS,
79 /* - 54 - */
80 /* Presumably PrtSc */
81 VK_SNAPSHOT,
82 /* - 55 - */
83 /* Oddities, and the remaining standard F-Keys */
84 VK_EMPTY, VK_OEM_5, VK_F11, VK_F12,
85 /* - 59 - */
86 VK_CLEAR, VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, /* EREOF */
87 VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, /* ZOOM */
88 VK_HELP,
89 /* - 64 - */
90 /* Even more F-Keys (for example, NCR keyboards from the early 90's) */
91 VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20,
92 VK_F21, VK_F22, VK_F23,
93 /* - 6f - */
94 /* Not sure who uses these codes */
95 VK_EMPTY, VK_EMPTY, VK_EMPTY,
96 /* - 72 - */
97 VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
98 /* - 76 - */
99 /* One more f-key */
100 VK_F24,
101 /* - 77 - */
102 VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
103 VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, /* PA1 */
104 VK_EMPTY,
105 /* - 80 - */
106 0
107 };
108
109 ROSDATA VSC_VK extcode0_to_vk[] = {
110 {0x1c, VK_RETURN|KEXT}, //Keypad return
111 {0x1d, VK_RCONTROL|KEXT},//Right control key
112 {0x35, VK_DIVIDE|KEXT}, // Numpad div
113 {0x38, VK_RMENU|KEXT}, //AltGr?
114 {0, 0},
115 };
116
117 ROSDATA VSC_VK extcode1_to_vk[] = {
118 { 0, 0 },
119 };
120
121 ROSDATA VK_TO_BIT modifier_keys[] = {
122 { VK_SHIFT, KSHIFT },
123 { VK_CONTROL, KCTRL },
124 { VK_MENU, KALT },
125 { 0, 0 }
126 };
127
128 ROSDATA MODIFIERS modifier_bits = {
129 modifier_keys,
130 7,
131 { 0, 1, 2, 3 ,0, 0,4,5} /* Modifier bit order, NONE, SHIFT, CTRL, SHIFT+CTRL,ALT(not used),SHIFT-ALT (not used), CTR+ALT, SHIFT-CTRL-ALT*/
132 };
133
134 #define NOCAPS 0
135 #define CAPS KSHIFT /* Caps -> shift */
136
137 ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
138 /* Normal vs Shifted */
139 /* The numbers */
140 { '1', NOCAPS, {'+', '1'} },
141 { '2', NOCAPS, {0x013e, '2'} }, // l with caron
142 { '3', NOCAPS, {0x0161, '3'} }, // s with caron
143 { '4', NOCAPS, {0x010d, '4'} }, // c with caron
144 { '5', NOCAPS, {0x0165, '5'} }, // t with caron
145 { '6', NOCAPS, {0x017e, '6'} }, // z with caron
146 { '7', NOCAPS, {0x00fd, '7'} }, // y with acute
147 { '8', NOCAPS, {0x00e1, '8'} }, // a with acute
148 { '9', NOCAPS, {0x00ed, '9'} }, // i with acute
149 { '0', NOCAPS, {0x00e9, '0'} }, // e with acute
150 { VK_OEM_PLUS, NOCAPS, {WCH_DEAD, WCH_DEAD} }, // dead letters - acute, caron
151 { VK_EMPTY, 0, {0x00b4, 0x02c7} }, // VK_OEM_PLUS death
152 { VK_OEM_MINUS, NOCAPS, {'=', '%'} },
153 { VK_OEM_1, NOCAPS, {0x00f4, '\"'} }, // o with circumflex
154 { VK_OEM_2, NOCAPS, {'-', '_'} },
155 { VK_OEM_3, NOCAPS, {0x00a7, '!'} }, // section sign
156 { VK_OEM_4, NOCAPS, {0x00fa, '/'} }, // u with acute
157 { VK_OEM_5, NOCAPS, {'&', '*'} },
158 { VK_OEM_6, NOCAPS, {0x00E4, '('} }, // a with diaeresis
159 { VK_OEM_7, NOCAPS, {0x0148, ')'} }, // n with caron
160 { VK_OEM_8, NOCAPS, {';', WCH_DEAD} }, // degree sign
161 { VK_EMPTY, 0, {WCH_NONE, 0x00b0} }, // VK_OEM_8 death
162 { VK_OEM_COMMA, NOCAPS, {',', '?'} },
163 { VK_OEM_PERIOD, NOCAPS, {'.', ':'} },
164
165 /* Keys that do not have shift states */
166 { VK_TAB, NOCAPS, {'\t','\t'} },
167 { VK_ADD, NOCAPS, {'+', '+'} },
168 { VK_SUBTRACT, NOCAPS, {'-', '-'} },
169 { VK_MULTIPLY, NOCAPS, {'*', '*'} },
170 { VK_DIVIDE, NOCAPS, {'/', '/'} },
171 { VK_ESCAPE, NOCAPS, {'\x1b','\x1b'} },
172 { VK_SPACE, NOCAPS, {' ', ' '} },
173 { 0, 0 }
174 };
175
176 ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
177 /* Normal, Shifted, Ctrl */
178 /* Legacy (telnet-style) ascii escapes */
179 { VK_RETURN, 0, {'\r', '\r', '\n'} },
180 { 0, 0 }
181 };
182
183 ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
184 /* Normal, Shifted, Ctrl, C-Shift */
185
186 /* The alphabet */
187 { 'A', CAPS, {'a', 'A', 0x01, 0x01} },
188 { 'B', CAPS, {'b', 'B', 0x02, 0x02} },
189 { 'C', CAPS, {'c', 'C', 0x03, 0x03} },
190 { 'D', CAPS, {'d', 'D', 0x04, 0x04} },
191 { 'E', CAPS, {'e', 'E', 0x05, 0x05} },
192 { 'F', CAPS, {'f', 'F', 0x06, 0x06} },
193 { 'G', CAPS, {'g', 'G', 0x07, 0x07} },
194 { 'H', CAPS, {'h', 'H', 0x08, 0x08} },
195 { 'I', CAPS, {'i', 'I', 0x09, 0x09} },
196 { 'J', CAPS, {'j', 'J', 0x0a, 0x0a} },
197 { 'K', CAPS, {'k', 'K', 0x0b, 0x0b} },
198 { 'L', CAPS, {'l', 'L', 0x0c, 0x0c} },
199 { 'M', CAPS, {'m', 'M', 0x0d, 0x0d} },
200 { 'N', CAPS, {'n', 'N', 0x0e, 0x0e} },
201 { 'O', CAPS, {'o', 'O', 0x0f, 0x0f} },
202 { 'P', CAPS, {'p', 'P', 0x10, 0x10} },
203 { 'Q', CAPS, {'q', 'Q', 0x11, 0x11} },
204 { 'R', CAPS, {'r', 'R', 0x12, 0x12} },
205 { 'S', CAPS, {'s', 'S', 0x13, 0x13} },
206 { 'T', CAPS, {'t', 'T', 0x14, 0x14} },
207 { 'U', CAPS, {'u', 'U', 0x15, 0x15} },
208 { 'V', CAPS, {'v', 'V', 0x16, 0x16} },
209 { 'W', CAPS, {'w', 'W', 0x17, 0x17} },
210 { 'X', CAPS, {'x', 'X', 0x18, 0x18} },
211 { 'Y', CAPS, {'z', 'Z', 0x1a, 0x1a} }, // qwertZ
212 { 'Z', CAPS, {'y', 'Y', 0x19, 0x19} },
213 { 0, 0 }
214 };
215
216 ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
217 { VK_DECIMAL, 0, {','} },
218 { VK_NUMPAD0, 0, {'0'} },
219 { VK_NUMPAD1, 0, {'1'} },
220 { VK_NUMPAD2, 0, {'2'} },
221 { VK_NUMPAD3, 0, {'3'} },
222 { VK_NUMPAD4, 0, {'4'} },
223 { VK_NUMPAD5, 0, {'5'} },
224 { VK_NUMPAD6, 0, {'6'} },
225 { VK_NUMPAD7, 0, {'7'} },
226 { VK_NUMPAD8, 0, {'8'} },
227 { VK_NUMPAD9, 0, {'9'} },
228 { VK_BACK, 0, {'\010'} },
229 { 0, 0 }
230 };
231
232 #define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
233
234 ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[] = {
235 vk_master(1,keypad_numbers),
236 vk_master(2,key_to_chars_2mod),
237 vk_master(3,key_to_chars_3mod),
238 vk_master(4,key_to_chars_4mod),
239 { 0,0,0 }
240 };
241
242 ROSDATA VSC_LPWSTR key_names[] = {
243 { 0x00, L"" },
244 { 0x01, L"Esc" },
245 { 0x0e, L"Backspace" },
246 { 0x0f, L"Tab" },
247 { 0x1c, L"Enter" },
248 { 0x1d, L"Ctrl" },
249 { 0x2a, L"Shift" },
250 { 0x36, L"Right Shift" },
251 { 0x37, L"Num *" },
252 { 0x38, L"Alt" },
253 { 0x39, L"Space" },
254 { 0x3a, L"Caps Lock" },
255 { 0x3b, L"F1" },
256 { 0x3c, L"F2" },
257 { 0x3d, L"F3" },
258 { 0x3e, L"F4" },
259 { 0x3f, L"F5" },
260 { 0x40, L"F6" },
261 { 0x41, L"F7" },
262 { 0x42, L"F8" },
263 { 0x43, L"F9" },
264 { 0x44, L"F10" },
265 { 0x45, L"Pause" },
266 { 0x46, L"Scroll Lock" },
267 { 0x47, L"Num 7" },
268 { 0x48, L"Num 8" },
269 { 0x49, L"Num 9" },
270 { 0x4a, L"Num -" },
271 { 0x4b, L"Num 4" },
272 { 0x4c, L"Num 5" },
273 { 0x4d, L"Num 6" },
274 { 0x4e, L"Num +" },
275 { 0x4f, L"Num 1" },
276 { 0x50, L"Num 2" },
277 { 0x51, L"Num 3" },
278 { 0x52, L"Num 0" },
279 { 0x53, L"Num Del" },
280 { 0x54, L"Sys Req" },
281 { 0x57, L"F11" },
282 { 0x58, L"F12" },
283 { 0x7c, L"F13" },
284 { 0x7d, L"F14" },
285 { 0x7e, L"F15" },
286 { 0x7f, L"F16" },
287 { 0x80, L"F17" },
288 { 0x81, L"F18" },
289 { 0x82, L"F19" },
290 { 0x83, L"F20" },
291 { 0x84, L"F21" },
292 { 0x85, L"F22" },
293 { 0x86, L"F23" },
294 { 0x87, L"F24" },
295 { 0, NULL },
296 };
297
298 ROSDATA VSC_LPWSTR extended_key_names[] = {
299 { 0x1c, L"Num Enter" },
300 { 0x1d, L"Right Ctrl" },
301 { 0x35, L"Num /" },
302 { 0x37, L"Prnt Scrn" },
303 { 0x38, L"Right Alt" },
304 { 0x45, L"Num Lock" },
305 { 0x46, L"Break" },
306 { 0x47, L"Home" },
307 { 0x48, L"Up" },
308 { 0x49, L"Page Up" },
309 { 0x4a, L"Left" },
310 { 0x4c, L"Center" },
311 { 0x4d, L"Right" },
312 { 0x4f, L"End" },
313 { 0x50, L"Down" },
314 { 0x51, L"Page Down" },
315 { 0x52, L"Insert" },
316 { 0x53, L"Delete" },
317 { 0x54, L"<ReactOS>" },
318 { 0x55, L"Help" },
319 { 0x56, L"Left Windows" },
320 { 0x5b, L"Right Windows" },
321 { 0, NULL },
322 };
323
324 #define DEADTRANS(ch, accent, comp, flags) MAKELONG(ch, accent), comp, flags
325
326 ROSDATA DEADKEY dead_key[] = {
327 { DEADTRANS(0x0043, 0x02c7, 0x010c, 0x0000) }, // C with caron
328 { DEADTRANS(0x0063, 0x02c7, 0x010d, 0x0000) }, // c with caron
329 { DEADTRANS(0x0044, 0x02c7, 0x010e, 0x0000) }, // D with caron
330 { DEADTRANS(0x0064, 0x02c7, 0x010f, 0x0000) }, // d with caron
331 { DEADTRANS(0x004c, 0x02c7, 0x013d, 0x0000) }, // L with caron
332 { DEADTRANS(0x006c, 0x02c7, 0x013e, 0x0000) }, // l with caron
333 { DEADTRANS(0x004e, 0x02c7, 0x0147, 0x0000) }, // N with caron
334 { DEADTRANS(0x006e, 0x02c7, 0x0148, 0x0000) }, // n with caron
335 { DEADTRANS(0x0053, 0x02c7, 0x0160, 0x0000) }, // S with caron
336 { DEADTRANS(0x0073, 0x02c7, 0x0161, 0x0000) }, // s with caron
337 { DEADTRANS(0x0054, 0x02c7, 0x0164, 0x0000) }, // T with caron
338 { DEADTRANS(0x0074, 0x02c7, 0x0165, 0x0000) }, // t with caron
339 { DEADTRANS(0x005a, 0x02c7, 0x017d, 0x0000) }, // Z with caron
340 { DEADTRANS(0x007a, 0x02c7, 0x017e, 0x0000) }, // z with caron
341 { DEADTRANS(0x0020, 0x02c7, 0x02c7, 0x0000) }, // space > caron
342
343 { DEADTRANS(0x0041, 0x00b4, 0x00c1, 0x0000) }, // A with acute
344 { DEADTRANS(0x0061, 0x00b4, 0x00e1, 0x0000) }, // a with acute
345 { DEADTRANS(0x0045, 0x00b4, 0x00c9, 0x0000) }, // E with acute
346 { DEADTRANS(0x0065, 0x00b4, 0x00e9, 0x0000) }, // e with acute
347 { DEADTRANS(0x0049, 0x00b4, 0x00cd, 0x0000) }, // I with acute
348 { DEADTRANS(0x0069, 0x00b4, 0x00ed, 0x0000) }, // i with acute
349 { DEADTRANS(0x004c, 0x00b4, 0x0139, 0x0000) }, // L with acute
350 { DEADTRANS(0x006c, 0x00b4, 0x013a, 0x0000) }, // l with acute
351 { DEADTRANS(0x004f, 0x00b4, 0x00d3, 0x0000) }, // O with acute
352 { DEADTRANS(0x006f, 0x00b4, 0x00f3, 0x0000) }, // o with acute
353 { DEADTRANS(0x0052, 0x00b4, 0x0154, 0x0000) }, // R with acute
354 { DEADTRANS(0x0072, 0x00b4, 0x0155, 0x0000) }, // r with acute
355 { DEADTRANS(0x0055, 0x00b4, 0x00da, 0x0000) }, // U with acute
356 { DEADTRANS(0x0075, 0x00b4, 0x00fa, 0x0000) }, // u with acute
357 { DEADTRANS(0x0059, 0x00b4, 0x00dd, 0x0000) }, // Y with acute
358 { DEADTRANS(0x0079, 0x00b4, 0x00fd, 0x0000) }, // y with acute
359 { DEADTRANS(0x0020, 0x00b4, 0x00b4, 0x0000) }, // space > acute
360
361 { DEADTRANS(0x004f, 0x02c6, 0x00d4, 0x0000) }, // O with circumflex
362 { DEADTRANS(0x006f, 0x02c6, 0x00f4, 0x0000) }, // o with circumflex
363 { DEADTRANS(0x0020, 0x02c6, 0x02c6, 0x0000) }, // space > circumflex
364
365 { DEADTRANS(0x0055, 0x00b0, 0x016e, 0x0000) }, // U >
366 { DEADTRANS(0x0075, 0x00b0, 0x016f, 0x0000) }, // u >
367 { DEADTRANS(0x0020, 0x00b0, 0x00b0, 0x0000) }, // space > degree
368 { 0, 0, 0 },
369 };
370
371 ROSDATA DEADKEY_LPWSTR dead_key_names[] = {
372 L"\x00a1" L"\x004D\x00E4\x006B\x010D\x0065\x0148", // caron
373 L"\x00b4" L"\x0044\x013A\x017E\x0065\x0148", // acute
374 L"\x005e" L"\x0056\x006F\x006B\x00E1\x0148", // circumflex
375 NULL
376 };
377
378 /* Finally, the master table */
379 ROSDATA KBDTABLES keyboard_layout_table = {
380 /* modifier assignments */
381 &modifier_bits,
382
383 /* character from vk tables */
384 vk_to_wchar_master_table,
385
386 /* diacritical marks -- */
387 dead_key,
388
389 /* Key names */
390 (VSC_LPWSTR *)key_names,
391 (VSC_LPWSTR *)extended_key_names,
392 dead_key_names, /* Dead key names */
393
394 /* scan code to virtual key maps */
395 scancode_to_vk,
396 sizeof(scancode_to_vk) / sizeof(scancode_to_vk[0]),
397 extcode0_to_vk,
398 extcode1_to_vk,
399
400
401 MAKELONG(0,1), /* Version 1.0 */
402
403 /* Ligatures -- Slovak doesn't have any */
404 0,
405 0,
406 NULL
407 };
408
409 PKBDTABLES STDCALL KbdLayerDescriptor(VOID) {
410 return &keyboard_layout_table;
411 }
412