Codebase list lwjgl / df5d7dc5-0523-4d8c-a353-48e15310f608/main src / java / org / lwjgl / opengl / WindowsKeycodes.java
df5d7dc5-0523-4d8c-a353-48e15310f608/main

Tree @df5d7dc5-0523-4d8c-a353-48e15310f608/main (Download .tar.gz)

WindowsKeycodes.java @df5d7dc5-0523-4d8c-a353-48e15310f608/mainraw · history · blame

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
/*
 * Copyright (c) 2002-2008 LWJGL Project
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 * * Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 *
 * * Redistributions in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in the
 *   documentation and/or other materials provided with the distribution.
 *
 * * Neither the name of 'LWJGL' nor the names of
 *   its contributors may be used to endorse or promote products derived
 *   from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.lwjgl.opengl;

/**
 * @author elias_naur
 */

import org.lwjgl.input.Keyboard;

final class WindowsKeycodes {
	public static final int VK_LBUTTON        = 0x01;
	public static final int VK_RBUTTON        = 0x02;
	public static final int VK_CANCEL         = 0x03;
	public static final int VK_MBUTTON        = 0x04;    /* NOT contiguous with L & RBUTTON */

	public static final int VK_XBUTTON1       = 0x05;    /* NOT contiguous with L & RBUTTON */
	public static final int VK_XBUTTON2       = 0x06;    /* NOT contiguous with L & RBUTTON */

/*
 * 0x07 : unassigned
 */

	public static final int VK_BACK           = 0x08;
	public static final int VK_TAB            = 0x09;

/*
 * 0x0A - 0x0B : reserved
 */

	public static final int VK_CLEAR          = 0x0C;
	public static final int VK_RETURN         = 0x0D;

	public static final int VK_SHIFT          = 0x10;
	public static final int VK_CONTROL        = 0x11;
	public static final int VK_MENU           = 0x12;
	public static final int VK_PAUSE          = 0x13;
	public static final int VK_CAPITAL        = 0x14;

	public static final int VK_KANA           = 0x15;
	public static final int VK_HANGEUL        = 0x15;  /* old name - should be here for compatibility */
	public static final int VK_HANGUL         = 0x15;
	public static final int VK_JUNJA          = 0x17;
	public static final int VK_FINAL          = 0x18;
	public static final int VK_HANJA          = 0x19;
	public static final int VK_KANJI          = 0x19;

	public static final int VK_ESCAPE         = 0x1B;

	public static final int VK_CONVERT        = 0x1C;
	public static final int VK_NONCONVERT     = 0x1D;
	public static final int VK_ACCEPT         = 0x1E;
	public static final int VK_MODECHANGE     = 0x1F;

	public static final int VK_SPACE          = 0x20;
	public static final int VK_PRIOR          = 0x21;
	public static final int VK_NEXT           = 0x22;
	public static final int VK_END            = 0x23;
	public static final int VK_HOME           = 0x24;
	public static final int VK_LEFT           = 0x25;
	public static final int VK_UP             = 0x26;
	public static final int VK_RIGHT          = 0x27;
	public static final int VK_DOWN           = 0x28;
	public static final int VK_SELECT         = 0x29;
	public static final int VK_PRINT          = 0x2A;
	public static final int VK_EXECUTE        = 0x2B;
	public static final int VK_SNAPSHOT       = 0x2C;
	public static final int VK_INSERT         = 0x2D;
	public static final int VK_DELETE         = 0x2E;
	public static final int VK_HELP           = 0x2F;
/*
 * VK_0 - VK_9 are the same as ASCII '0' - '9' (0x30 - 0x39)
 * 0x40 : unassigned
 * VK_A - VK_Z are the same as ASCII 'A' - 'Z' (0x41 - 0x5A)
 */
public static final int VK_0			  = 0x30;
	public static final int VK_1			  = 0x31;
	public static final int VK_2			  = 0x32;
	public static final int VK_3			  = 0x33;
	public static final int VK_4			  = 0x34;
	public static final int VK_5			  = 0x35;
	public static final int VK_6			  = 0x36;
	public static final int VK_7			  = 0x37;
	public static final int VK_8			  = 0x38;
	public static final int VK_9			  = 0x39;

	public static final int VK_A			  = 0x41;
	public static final int VK_B			  = 0x42;
	public static final int VK_C			  = 0x43;
	public static final int VK_D			  = 0x44;
	public static final int VK_E			  = 0x45;
	public static final int VK_F			  = 0x46;
	public static final int VK_G			  = 0x47;
	public static final int VK_H			  = 0x48;
	public static final int VK_I			  = 0x49;
	public static final int VK_J			  = 0x4A;
	public static final int VK_K			  = 0x4B;
	public static final int VK_L			  = 0x4C;
	public static final int VK_M			  = 0x4D;
	public static final int VK_N			  = 0x4E;
	public static final int VK_O			  = 0x4F;
	public static final int VK_P			  = 0x50;
	public static final int VK_Q			  = 0x51;
	public static final int VK_R			  = 0x52;
	public static final int VK_S			  = 0x53;
	public static final int VK_T			  = 0x54;
	public static final int VK_U			  = 0x55;
	public static final int VK_V			  = 0x56;
	public static final int VK_W			  = 0x57;
	public static final int VK_X			  = 0x58;
	public static final int VK_Y			  = 0x59;
	public static final int VK_Z			  = 0x5A;

	public static final int VK_LWIN           = 0x5B;
	public static final int VK_RWIN           = 0x5C;
	public static final int VK_APPS           = 0x5D;
/*
 * 0x5E : reserved;
 */

	public static final int VK_SLEEP          = 0x5F;

	public static final int VK_NUMPAD0        = 0x60;
	public static final int VK_NUMPAD1        = 0x61;
	public static final int VK_NUMPAD2        = 0x62;
	public static final int VK_NUMPAD3        = 0x63;
	public static final int VK_NUMPAD4        = 0x64;
	public static final int VK_NUMPAD5        = 0x65;
	public static final int VK_NUMPAD6        = 0x66;
	public static final int VK_NUMPAD7        = 0x67;
	public static final int VK_NUMPAD8        = 0x68;
	public static final int VK_NUMPAD9        = 0x69;
	public static final int VK_MULTIPLY       = 0x6A;
	public static final int VK_ADD            = 0x6B;
	public static final int VK_SEPARATOR      = 0x6C;
	public static final int VK_SUBTRACT       = 0x6D;
	public static final int VK_DECIMAL        = 0x6E;
	public static final int VK_DIVIDE         = 0x6F;
	public static final int VK_F1             = 0x70;
	public static final int VK_F2             = 0x71;
	public static final int VK_F3             = 0x72;
	public static final int VK_F4             = 0x73;
	public static final int VK_F5             = 0x74;
	public static final int VK_F6             = 0x75;
	public static final int VK_F7             = 0x76;
	public static final int VK_F8             = 0x77;
	public static final int VK_F9             = 0x78;
	public static final int VK_F10            = 0x79;
	public static final int VK_F11            = 0x7A;
	public static final int VK_F12            = 0x7B;
	public static final int VK_F13            = 0x7C;
	public static final int VK_F14            = 0x7D;
	public static final int VK_F15            = 0x7E;
	public static final int VK_F16            = 0x7F;
	public static final int VK_F17            = 0x80;
	public static final int VK_F18            = 0x81;
	public static final int VK_F19            = 0x82;
	public static final int VK_F20            = 0x83;
	public static final int VK_F21            = 0x84;
	public static final int VK_F22            = 0x85;
	public static final int VK_F23            = 0x86;
	public static final int VK_F24            = 0x87;

/*
 * 0x88 - 0x8F : unassigned;
 */

	public static final int VK_NUMLOCK        = 0x90;
	public static final int VK_SCROLL         = 0x91;

/*
 * NEC PC-9800 kbd definitions
 */
public static final int VK_OEM_NEC_EQUAL  = 0x92;   // '=' key on numpad
/*
 * Fujitsu/OASYS kbd definitions
 */
public static final int VK_OEM_FJ_JISHO   = 0x92;   // 'Dictionary' key
	public static final int VK_OEM_FJ_MASSHOU = 0x93;   // 'Unregister word' key
	public static final int VK_OEM_FJ_TOUROKU = 0x94;   // 'Register word' key
	public static final int VK_OEM_FJ_LOYA    = 0x95;   // 'Left OYAYUBI' key
	public static final int VK_OEM_FJ_ROYA    = 0x96;   // 'Right OYAYUBI' key

/*
 * 0x97 - 0x9F : unassigned
 */

/*
 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
 * Used only as parameters to GetAsyncKeyState() and GetKeyState().
 * No other API or message will distinguish left and right keys in this way.
 */
public static final int VK_LSHIFT         = 0xA0;
	public static final int VK_RSHIFT         = 0xA1;
	public static final int VK_LCONTROL       = 0xA2;
	public static final int VK_RCONTROL       = 0xA3;
	public static final int VK_LMENU          = 0xA4;
	public static final int VK_RMENU          = 0xA5;

	public static final int VK_BROWSER_BACK        = 0xA6;
	public static final int VK_BROWSER_FORWARD     = 0xA7;
	public static final int VK_BROWSER_REFRESH     = 0xA8;
	public static final int VK_BROWSER_STOP        = 0xA9;
	public static final int VK_BROWSER_SEARCH      = 0xAA;
	public static final int VK_BROWSER_FAVORITES   = 0xAB;
	public static final int VK_BROWSER_HOME        = 0xAC;

	public static final int VK_VOLUME_MUTE         = 0xAD;
	public static final int VK_VOLUME_DOWN         = 0xAE;
	public static final int VK_VOLUME_UP           = 0xAF;
	public static final int VK_MEDIA_NEXT_TRACK    = 0xB0;
	public static final int VK_MEDIA_PREV_TRACK    = 0xB1;
	public static final int VK_MEDIA_STOP          = 0xB2;
	public static final int VK_MEDIA_PLAY_PAUSE    = 0xB3;
	public static final int VK_LAUNCH_MAIL         = 0xB4;
	public static final int VK_LAUNCH_MEDIA_SELECT = 0xB5;
	public static final int VK_LAUNCH_APP1         = 0xB6;
	public static final int VK_LAUNCH_APP2         = 0xB7;

/*
 * 0xB8 - 0xB9 : reserved
 */

	public static final int VK_OEM_1          = 0xBA;   // ';:' for US
	public static final int VK_OEM_PLUS       = 0xBB;   // '+' any country
	public static final int VK_OEM_COMMA      = 0xBC;   // ',' any country
	public static final int VK_OEM_MINUS      = 0xBD;   // '-' any country
	public static final int VK_OEM_PERIOD     = 0xBE;   // '.' any country
	public static final int VK_OEM_2          = 0xBF;   // '/?' for US
	public static final int VK_OEM_3          = 0xC0;   // '`~' for US

/*
 * 0xC1 - 0xD7 : reserved
 */

/*
 * 0xD8 - 0xDA : unassigned
 */

	public static final int VK_OEM_4          = 0xDB;  //  '[{' for US
	public static final int VK_OEM_5          = 0xDC;  //  '\|' for US
	public static final int VK_OEM_6          = 0xDD;  //  ']}' for US
	public static final int VK_OEM_7          = 0xDE;  //  ''"' for US
	public static final int VK_OEM_8          = 0xDF;

/*
 * 0xE0 : reserved
 */

/*
 * Various extended or enhanced keyboards
 */
public static final int VK_OEM_AX         = 0xE1;  //  'AX' key on Japanese AX kbd
	public static final int VK_OEM_102        = 0xE2;  //  "<>" or "\|" on RT 102-key kbd.
	public static final int VK_ICO_HELP       = 0xE3;  //  Help key on ICO
	public static final int VK_ICO_00         = 0xE4;  //  00 key on ICO

	public static final int VK_PROCESSKEY     = 0xE5;

	public static final int VK_ICO_CLEAR      = 0xE6;


	public static final int VK_PACKET         = 0xE7;

/*
 * 0xE8 : unassigned
 */

/*
 * Nokia/Ericsson definitions
 */
public static final int VK_OEM_RESET      = 0xE9;
	public static final int VK_OEM_JUMP       = 0xEA;
	public static final int VK_OEM_PA1        = 0xEB;
	public static final int VK_OEM_PA2        = 0xEC;
	public static final int VK_OEM_PA3        = 0xED;
	public static final int VK_OEM_WSCTRL     = 0xEE;
	public static final int VK_OEM_CUSEL      = 0xEF;
	public static final int VK_OEM_ATTN       = 0xF0;
	public static final int VK_OEM_FINISH     = 0xF1;
	public static final int VK_OEM_COPY       = 0xF2;
	public static final int VK_OEM_AUTO       = 0xF3;
	public static final int VK_OEM_ENLW       = 0xF4;
	public static final int VK_OEM_BACKTAB    = 0xF5;

	public static final int VK_ATTN           = 0xF6;
	public static final int VK_CRSEL          = 0xF7;
	public static final int VK_EXSEL          = 0xF8;
	public static final int VK_EREOF          = 0xF9;
	public static final int VK_PLAY           = 0xFA;
	public static final int VK_ZOOM           = 0xFB;
	public static final int VK_NONAME         = 0xFC;
	public static final int VK_PA1            = 0xFD;
	public static final int VK_OEM_CLEAR      = 0xFE;

	public static int mapVirtualKeyToLWJGLCode(int virt_key) {
		switch (virt_key) {
			case VK_ESCAPE:
				return Keyboard.KEY_ESCAPE;
			case VK_1:
				return Keyboard.KEY_1;
			case VK_2:
				return Keyboard.KEY_2;
			case VK_3:
				return Keyboard.KEY_3;
			case VK_4:
				return Keyboard.KEY_4;
			case VK_5:
				return Keyboard.KEY_5;
			case VK_6:
				return Keyboard.KEY_6;
			case VK_7:
				return Keyboard.KEY_7;
			case VK_8:
				return Keyboard.KEY_8;
			case VK_9:
				return Keyboard.KEY_9;
			case VK_0:
				return Keyboard.KEY_0;
			case VK_OEM_MINUS:
				return Keyboard.KEY_MINUS;
			case VK_OEM_PLUS:
				return Keyboard.KEY_EQUALS;
			case VK_BACK:
				return Keyboard.KEY_BACK;
			case VK_TAB:
				return Keyboard.KEY_TAB;
			case VK_Q:
				return Keyboard.KEY_Q;
			case VK_W:
				return Keyboard.KEY_W;
			case VK_E:
				return Keyboard.KEY_E;
			case VK_R:
				return Keyboard.KEY_R;
			case VK_T:
				return Keyboard.KEY_T;
			case VK_Y:
				return Keyboard.KEY_Y;
			case VK_U:
				return Keyboard.KEY_U;
			case VK_I:
				return Keyboard.KEY_I;
			case VK_O:
				return Keyboard.KEY_O;
			case VK_P:
				return Keyboard.KEY_P;
			case VK_OEM_4:
				return Keyboard.KEY_LBRACKET;
			case VK_OEM_6:
				return Keyboard.KEY_RBRACKET;
			case VK_RETURN:
				return Keyboard.KEY_RETURN;
			case VK_LCONTROL:
				return Keyboard.KEY_LCONTROL;
			case VK_A:
				return Keyboard.KEY_A;
			case VK_S:
				return Keyboard.KEY_S;
			case VK_D:
				return Keyboard.KEY_D;
			case VK_F:
				return Keyboard.KEY_F;
			case VK_G:
				return Keyboard.KEY_G;
			case VK_H:
				return Keyboard.KEY_H;
			case VK_J:
				return Keyboard.KEY_J;
			case VK_K:
				return Keyboard.KEY_K;
			case VK_L:
				return Keyboard.KEY_L;
			case VK_OEM_1:
				return Keyboard.KEY_SEMICOLON;
			case VK_OEM_7:
				return Keyboard.KEY_APOSTROPHE;
			case VK_OEM_3:
			case VK_OEM_8:
				return Keyboard.KEY_GRAVE;
			case VK_LSHIFT:
				return Keyboard.KEY_LSHIFT;
			case VK_OEM_5:
				return Keyboard.KEY_BACKSLASH;
			case VK_Z:
				return Keyboard.KEY_Z;
			case VK_X:
				return Keyboard.KEY_X;
			case VK_C:
				return Keyboard.KEY_C;
			case VK_V:
				return Keyboard.KEY_V;
			case VK_B:
				return Keyboard.KEY_B;
			case VK_N:
				return Keyboard.KEY_N;
			case VK_M:
				return Keyboard.KEY_M;
			case VK_OEM_COMMA:
				return Keyboard.KEY_COMMA;
			case VK_OEM_PERIOD:
				return Keyboard.KEY_PERIOD;
			case VK_OEM_2:
				return Keyboard.KEY_SLASH;
			case VK_RSHIFT:
				return Keyboard.KEY_RSHIFT;
			case VK_MULTIPLY:
				return Keyboard.KEY_MULTIPLY;
			case VK_LMENU:
				return Keyboard.KEY_LMENU;
			case VK_SPACE:
				return Keyboard.KEY_SPACE;
			case VK_CAPITAL:
				return Keyboard.KEY_CAPITAL;
			case VK_F1:
				return Keyboard.KEY_F1;
			case VK_F2:
				return Keyboard.KEY_F2;
			case VK_F3:
				return Keyboard.KEY_F3;
			case VK_F4:
				return Keyboard.KEY_F4;
			case VK_F5:
				return Keyboard.KEY_F5;
			case VK_F6:
				return Keyboard.KEY_F6;
			case VK_F7:
				return Keyboard.KEY_F7;
			case VK_F8:
				return Keyboard.KEY_F8;
			case VK_F9:
				return Keyboard.KEY_F9;
			case VK_F10:
				return Keyboard.KEY_F10;
			case VK_NUMLOCK:
				return Keyboard.KEY_NUMLOCK;
			case VK_SCROLL:
				return Keyboard.KEY_SCROLL;
			case VK_NUMPAD7:
				return Keyboard.KEY_NUMPAD7;
			case VK_NUMPAD8:
				return Keyboard.KEY_NUMPAD8;
			case VK_NUMPAD9:
				return Keyboard.KEY_NUMPAD9;
			case VK_SUBTRACT:
				return Keyboard.KEY_SUBTRACT;
			case VK_NUMPAD4:
				return Keyboard.KEY_NUMPAD4;
			case VK_NUMPAD5:
				return Keyboard.KEY_NUMPAD5;
			case VK_NUMPAD6:
				return Keyboard.KEY_NUMPAD6;
			case VK_ADD:
				return Keyboard.KEY_ADD;
			case VK_NUMPAD1:
				return Keyboard.KEY_NUMPAD1;
			case VK_NUMPAD2:
				return Keyboard.KEY_NUMPAD2;
			case VK_NUMPAD3:
				return Keyboard.KEY_NUMPAD3;
			case VK_NUMPAD0:
				return Keyboard.KEY_NUMPAD0;
			case VK_DECIMAL:
				return Keyboard.KEY_DECIMAL;
			case VK_F11:
				return Keyboard.KEY_F11;
			case VK_F12:
				return Keyboard.KEY_F12;
			case VK_F13:
				return Keyboard.KEY_F13;
			case VK_F14:
				return Keyboard.KEY_F14;
			case VK_F15:
				return Keyboard.KEY_F15;
			case VK_KANA:
				return Keyboard.KEY_KANA;
			case VK_CONVERT:
				return Keyboard.KEY_CONVERT;
			case VK_NONCONVERT:
				return Keyboard.KEY_NOCONVERT;
/*			case VK_YEN:
				return Keyboard.KEY_YEN;
			case VK_NUMPADEQUALS:
				return Keyboard.KEY_NUMPADEQUALS;
			case VK_CIRCUMFLEX:
				return Keyboard.KEY_CIRCUMFLEX;
			case VK_AT:
				return Keyboard.KEY_AT;
			case VK_COLON:
				return Keyboard.KEY_COLON;
			case VK_UNDERLINE:
				return Keyboard.KEY_UNDERLINE;*/
			case VK_KANJI:
				return Keyboard.KEY_KANJI;
/*			case VK_STOP:
				return Keyboard.KEY_STOP;
			case VK_AX:
				return Keyboard.KEY_AX;
			case VK_UNLABELED:
				return Keyboard.KEY_UNLABELED;
			case VK_NUMPADENTER:
				return Keyboard.KEY_NUMPADENTER;*/
			case VK_RCONTROL:
				return Keyboard.KEY_RCONTROL;
			case VK_SEPARATOR:
				return Keyboard.KEY_NUMPADCOMMA;
			case VK_DIVIDE:
				return Keyboard.KEY_DIVIDE;
			case VK_SNAPSHOT:
				return Keyboard.KEY_SYSRQ;
			case VK_RMENU:
				return Keyboard.KEY_RMENU;
			case VK_PAUSE:
				return Keyboard.KEY_PAUSE;
			case VK_HOME:
				return Keyboard.KEY_HOME;
			case VK_UP:
				return Keyboard.KEY_UP;
			case VK_PRIOR:
				return Keyboard.KEY_PRIOR;
			case VK_LEFT:
				return Keyboard.KEY_LEFT;
			case VK_RIGHT:
				return Keyboard.KEY_RIGHT;
			case VK_END:
				return Keyboard.KEY_END;
			case VK_DOWN:
				return Keyboard.KEY_DOWN;
			case VK_NEXT:
				return Keyboard.KEY_NEXT;
			case VK_INSERT:
				return Keyboard.KEY_INSERT;
			case VK_DELETE:
				return Keyboard.KEY_DELETE;
			case VK_LWIN:
				return Keyboard.KEY_LMETA;
			case VK_RWIN:
				return Keyboard.KEY_RMETA;
			case VK_APPS:
				return Keyboard.KEY_APPS;
/*			case VK_POWER:
				return Keyboard.KEY_POWER;*/
			case VK_SLEEP:
				return Keyboard.KEY_SLEEP;
			default:
				return Keyboard.KEY_NONE;
		}
	}
}