Ultralight C++ API 1.3.0
Loading...
Searching...
No Matches
KeyCodes.h
Go to the documentation of this file.
1/******************************************************************************
2 * This file is a part of Ultralight, an ultra-portable web-browser engine. *
3 * *
4 * See <https://ultralig.ht> for licensing and more. *
5 * *
6 * (C) 2023 Ultralight, Inc. *
7 *****************************************************************************/
8#pragma once
9
10namespace ultralight {
11
12///
13/// Namespace containing all the key-code definitions for KeyboardEvent.
14/// Most of these correspond directly to the key-code values on Windows.
15///
16namespace KeyCodes {
17
18// GK_BACK (08) BACKSPACE key
19const int GK_BACK = 0x08;
20
21// GK_TAB (09) TAB key
22const int GK_TAB = 0x09;
23
24// GK_CLEAR (0C) CLEAR key
25const int GK_CLEAR = 0x0C;
26
27// GK_RETURN (0D)
28const int GK_RETURN = 0x0D;
29
30// GK_SHIFT (10) SHIFT key
31const int GK_SHIFT = 0x10;
32
33// GK_CONTROL (11) CTRL key
34const int GK_CONTROL = 0x11;
35
36// GK_MENU (12) ALT key
37const int GK_MENU = 0x12;
38
39// GK_PAUSE (13) PAUSE key
40const int GK_PAUSE = 0x13;
41
42// GK_CAPITAL (14) CAPS LOCK key
43const int GK_CAPITAL = 0x14;
44
45// GK_KANA (15) Input Method Editor (IME) Kana mode
46const int GK_KANA = 0x15;
47
48// GK_HANGUEL (15) IME Hanguel mode (maintained for compatibility; use GK_HANGUL)
49// GK_HANGUL (15) IME Hangul mode
50const int GK_HANGUL = 0x15;
51
52// GK_IME_ON (16) IME On
53const int GK_IME_ON = 0x16;
54
55// GK_JUNJA (17) IME Junja mode
56const int GK_JUNJA = 0x17;
57
58// GK_FINAL (18) IME final mode
59const int GK_FINAL = 0x18;
60
61// GK_HANJA (19) IME Hanja mode
62const int GK_HANJA = 0x19;
63
64// GK_KANJI (19) IME Kanji mode
65const int GK_KANJI = 0x19;
66
67// GK_IME_OFF (1A) IME Off
68const int GK_IME_OFF = 0x1A;
69
70// GK_ESCAPE (1B) ESC key
71const int GK_ESCAPE = 0x1B;
72
73// GK_CONVERT (1C) IME convert
74const int GK_CONVERT = 0x1C;
75
76// GK_NONCONVERT (1D) IME nonconvert
77const int GK_NONCONVERT = 0x1D;
78
79// GK_ACCEPT (1E) IME accept
80const int GK_ACCEPT = 0x1E;
81
82// GK_MODECHANGE (1F) IME mode change request
83const int GK_MODECHANGE = 0x1F;
84
85// GK_SPACE (20) SPACEBAR
86const int GK_SPACE = 0x20;
87
88// GK_PRIOR (21) PAGE UP key
89const int GK_PRIOR = 0x21;
90
91// GK_NEXT (22) PAGE DOWN key
92const int GK_NEXT = 0x22;
93
94// GK_END (23) END key
95const int GK_END = 0x23;
96
97// GK_HOME (24) HOME key
98const int GK_HOME = 0x24;
99
100// GK_LEFT (25) LEFT ARROW key
101const int GK_LEFT = 0x25;
102
103// GK_UP (26) UP ARROW key
104const int GK_UP = 0x26;
105
106// GK_RIGHT (27) RIGHT ARROW key
107const int GK_RIGHT = 0x27;
108
109// GK_DOWN (28) DOWN ARROW key
110const int GK_DOWN = 0x28;
111
112// GK_SELECT (29) SELECT key
113const int GK_SELECT = 0x29;
114
115// GK_PRINT (2A) PRINT key
116const int GK_PRINT = 0x2A;
117
118// GK_EXECUTE (2B) EXECUTE key
119const int GK_EXECUTE = 0x2B;
120
121// GK_SNAPSHOT (2C) PRINT SCREEN key
122const int GK_SNAPSHOT = 0x2C;
123
124// GK_INSERT (2D) INS key
125const int GK_INSERT = 0x2D;
126
127// GK_DELETE (2E) DEL key
128const int GK_DELETE = 0x2E;
129
130// GK_HELP (2F) HELP key
131const int GK_HELP = 0x2F;
132
133// (30) 0 key
134const int GK_0 = 0x30;
135
136// (31) 1 key
137const int GK_1 = 0x31;
138
139// (32) 2 key
140const int GK_2 = 0x32;
141
142// (33) 3 key
143const int GK_3 = 0x33;
144
145// (34) 4 key
146const int GK_4 = 0x34;
147
148// (35) 5 key;
149const int GK_5 = 0x35;
150
151// (36) 6 key
152const int GK_6 = 0x36;
153
154// (37) 7 key
155const int GK_7 = 0x37;
156
157// (38) 8 key
158const int GK_8 = 0x38;
159
160// (39) 9 key
161const int GK_9 = 0x39;
162
163// (41) A key
164const int GK_A = 0x41;
165
166// (42) B key
167const int GK_B = 0x42;
168
169// (43) C key
170const int GK_C = 0x43;
171
172// (44) D key
173const int GK_D = 0x44;
174
175// (45) E key
176const int GK_E = 0x45;
177
178// (46) F key
179const int GK_F = 0x46;
180
181// (47) G key
182const int GK_G = 0x47;
183
184// (48) H key
185const int GK_H = 0x48;
186
187// (49) I key
188const int GK_I = 0x49;
189
190// (4A) J key
191const int GK_J = 0x4A;
192
193// (4B) K key
194const int GK_K = 0x4B;
195
196// (4C) L key
197const int GK_L = 0x4C;
198
199// (4D) M key
200const int GK_M = 0x4D;
201
202// (4E) N key
203const int GK_N = 0x4E;
204
205// (4F) O key
206const int GK_O = 0x4F;
207
208// (50) P key
209const int GK_P = 0x50;
210
211// (51) Q key
212const int GK_Q = 0x51;
213
214// (52) R key
215const int GK_R = 0x52;
216
217// (53) S key
218const int GK_S = 0x53;
219
220// (54) T key
221const int GK_T = 0x54;
222
223// (55) U key
224const int GK_U = 0x55;
225
226// (56) V key
227const int GK_V = 0x56;
228
229// (57) W key
230const int GK_W = 0x57;
231
232// (58) X key
233const int GK_X = 0x58;
234
235// (59) Y key
236const int GK_Y = 0x59;
237
238// (5A) Z key
239const int GK_Z = 0x5A;
240
241// GK_LWIN (5B) Left Windows key (Microsoft Natural keyboard)
242const int GK_LWIN = 0x5B;
243
244// GK_RWIN (5C) Right Windows key (Natural keyboard)
245const int GK_RWIN = 0x5C;
246
247// GK_APPS (5D) Applications key (Natural keyboard)
248const int GK_APPS = 0x5D;
249
250// GK_SLEEP (5F) Computer Sleep key
251const int GK_SLEEP = 0x5F;
252
253// GK_NUMPAD0 (60) Numeric keypad 0 key
254const int GK_NUMPAD0 = 0x60;
255
256// GK_NUMPAD1 (61) Numeric keypad 1 key
257const int GK_NUMPAD1 = 0x61;
258
259// GK_NUMPAD2 (62) Numeric keypad 2 key
260const int GK_NUMPAD2 = 0x62;
261
262// GK_NUMPAD3 (63) Numeric keypad 3 key
263const int GK_NUMPAD3 = 0x63;
264
265// GK_NUMPAD4 (64) Numeric keypad 4 key
266const int GK_NUMPAD4 = 0x64;
267
268// GK_NUMPAD5 (65) Numeric keypad 5 key
269const int GK_NUMPAD5 = 0x65;
270
271// GK_NUMPAD6 (66) Numeric keypad 6 key
272const int GK_NUMPAD6 = 0x66;
273
274// GK_NUMPAD7 (67) Numeric keypad 7 key
275const int GK_NUMPAD7 = 0x67;
276
277// GK_NUMPAD8 (68) Numeric keypad 8 key
278const int GK_NUMPAD8 = 0x68;
279
280// GK_NUMPAD9 (69) Numeric keypad 9 key
281const int GK_NUMPAD9 = 0x69;
282
283// GK_MULTIPLY (6A) Multiply key
284const int GK_MULTIPLY = 0x6A;
285
286// GK_ADD (6B) Add key
287const int GK_ADD = 0x6B;
288
289// GK_SEPARATOR (6C) Separator key
290const int GK_SEPARATOR = 0x6C;
291
292// GK_SUBTRACT (6D) Subtract key
293const int GK_SUBTRACT = 0x6D;
294
295// GK_DECIMAL (6E) Decimal key
296const int GK_DECIMAL = 0x6E;
297
298// GK_DIVIDE (6F) Divide key
299const int GK_DIVIDE = 0x6F;
300
301// GK_F1 (70) F1 key
302const int GK_F1 = 0x70;
303
304// GK_F2 (71) F2 key
305const int GK_F2 = 0x71;
306
307// GK_F3 (72) F3 key
308const int GK_F3 = 0x72;
309
310// GK_F4 (73) F4 key
311const int GK_F4 = 0x73;
312
313// GK_F5 (74) F5 key
314const int GK_F5 = 0x74;
315
316// GK_F6 (75) F6 key
317const int GK_F6 = 0x75;
318
319// GK_F7 (76) F7 key
320const int GK_F7 = 0x76;
321
322// GK_F8 (77) F8 key
323const int GK_F8 = 0x77;
324
325// GK_F9 (78) F9 key
326const int GK_F9 = 0x78;
327
328// GK_F10 (79) F10 key
329const int GK_F10 = 0x79;
330
331// GK_F11 (7A) F11 key
332const int GK_F11 = 0x7A;
333
334// GK_F12 (7B) F12 key
335const int GK_F12 = 0x7B;
336
337// GK_F13 (7C) F13 key
338const int GK_F13 = 0x7C;
339
340// GK_F14 (7D) F14 key
341const int GK_F14 = 0x7D;
342
343// GK_F15 (7E) F15 key
344const int GK_F15 = 0x7E;
345
346// GK_F16 (7F) F16 key
347const int GK_F16 = 0x7F;
348
349// GK_F17 (80H) F17 key
350const int GK_F17 = 0x80;
351
352// GK_F18 (81H) F18 key
353const int GK_F18 = 0x81;
354
355// GK_F19 (82H) F19 key
356const int GK_F19 = 0x82;
357
358// GK_F20 (83H) F20 key
359const int GK_F20 = 0x83;
360
361// GK_F21 (84H) F21 key
362const int GK_F21 = 0x84;
363
364// GK_F22 (85H) F22 key
365const int GK_F22 = 0x85;
366
367// GK_F23 (86H) F23 key
368const int GK_F23 = 0x86;
369
370// GK_F24 (87H) F24 key
371const int GK_F24 = 0x87;
372
373// GK_NUMLOCK (90) NUM LOCK key
374const int GK_NUMLOCK = 0x90;
375
376// GK_SCROLL (91) SCROLL LOCK key
377const int GK_SCROLL = 0x91;
378
379// GK_LSHIFT (A0) Left SHIFT key
380const int GK_LSHIFT = 0xA0;
381
382// GK_RSHIFT (A1) Right SHIFT key
383const int GK_RSHIFT = 0xA1;
384
385// GK_LCONTROL (A2) Left CONTROL key
386const int GK_LCONTROL = 0xA2;
387
388// GK_RCONTROL (A3) Right CONTROL key
389const int GK_RCONTROL = 0xA3;
390
391// GK_LMENU (A4) Left MENU key
392const int GK_LMENU = 0xA4;
393
394// GK_RMENU (A5) Right MENU key
395const int GK_RMENU = 0xA5;
396
397// GK_BROWSER_BACK (A6) Windows 2000/XP: Browser Back key
398const int GK_BROWSER_BACK = 0xA6;
399
400// GK_BROWSER_FORWARD (A7) Windows 2000/XP: Browser Forward key
401const int GK_BROWSER_FORWARD = 0xA7;
402
403// GK_BROWSER_REFRESH (A8) Windows 2000/XP: Browser Refresh key
404const int GK_BROWSER_REFRESH = 0xA8;
405
406// GK_BROWSER_STOP (A9) Windows 2000/XP: Browser Stop key
407const int GK_BROWSER_STOP = 0xA9;
408
409// GK_BROWSER_SEARCH (AA) Windows 2000/XP: Browser Search key
410const int GK_BROWSER_SEARCH = 0xAA;
411
412// GK_BROWSER_FAVORITES (AB) Windows 2000/XP: Browser Favorites key
413const int GK_BROWSER_FAVORITES = 0xAB;
414
415// GK_BROWSER_HOME (AC) Windows 2000/XP: Browser Start and Home key
416const int GK_BROWSER_HOME = 0xAC;
417
418// GK_VOLUME_MUTE (AD) Windows 2000/XP: Volume Mute key
419const int GK_VOLUME_MUTE = 0xAD;
420
421// GK_VOLUME_DOWN (AE) Windows 2000/XP: Volume Down key
422const int GK_VOLUME_DOWN = 0xAE;
423
424// GK_VOLUME_UP (AF) Windows 2000/XP: Volume Up key
425const int GK_VOLUME_UP = 0xAF;
426
427// GK_MEDIA_NEXT_TRACK (B0) Windows 2000/XP: Next Track key
428const int GK_MEDIA_NEXT_TRACK = 0xB0;
429
430// GK_MEDIA_PREV_TRACK (B1) Windows 2000/XP: Previous Track key
431const int GK_MEDIA_PREV_TRACK = 0xB1;
432
433// GK_MEDIA_STOP (B2) Windows 2000/XP: Stop Media key
434const int GK_MEDIA_STOP = 0xB2;
435
436// GK_MEDIA_PLAY_PAUSE (B3) Windows 2000/XP: Play/Pause Media key
437const int GK_MEDIA_PLAY_PAUSE = 0xB3;
438
439// GK_LAUNCH_MAIL (B4) Windows 2000/XP: Start Mail key
440const int GK_MEDIA_LAUNCH_MAIL = 0xB4;
441
442// GK_LAUNCH_MEDIA_SELECT (B5) Windows 2000/XP: Select Media key
444
445// GK_LAUNCH_APP1 (B6) Windows 2000/XP: Start Application 1 key
446const int GK_MEDIA_LAUNCH_APP1 = 0xB6;
447
448// GK_LAUNCH_APP2 (B7) Windows 2000/XP: Start Application 2 key
449const int GK_MEDIA_LAUNCH_APP2 = 0xB7;
450
451// GK_OEM_1 (BA) ';:' for US
452const int GK_OEM_1 = 0xBA;
453
454// GK_OEM_PLUS (BB) '=+' any country
455const int GK_OEM_PLUS = 0xBB;
456
457// GK_OEM_COMMA (BC) ',<' any country
458const int GK_OEM_COMMA = 0xBC;
459
460// GK_OEM_MINUS (BD) '-_' any country
461const int GK_OEM_MINUS = 0xBD;
462
463// GK_OEM_PERIOD (BE) '.>' any country
464const int GK_OEM_PERIOD = 0xBE;
465
466// GK_OEM_2 (BF) '/?' for US
467const int GK_OEM_2 = 0xBF;
468
469// GK_OEM_3 (C0) '`~' for US
470const int GK_OEM_3 = 0xC0;
471
472// GK_OEM_4 (DB) '[{' for US
473const int GK_OEM_4 = 0xDB;
474
475// GK_OEM_5 (DC) '\|' for US
476const int GK_OEM_5 = 0xDC;
477
478// GK_OEM_6 (DD) ']}' for US
479const int GK_OEM_6 = 0xDD;
480
481// GK_OEM_7 (DE) ''"' for US
482const int GK_OEM_7 = 0xDE;
483
484// GK_OEM_8 (DF) Used for miscellaneous characters; it can vary by keyboard.
485const int GK_OEM_8 = 0xDF;
486
487// GK_OEM_102 (E2) Windows 2000/XP: Either the angle bracket key or the backslash key on the RT
488// 102-key keyboard
489const int GK_OEM_102 = 0xE2;
490
491// GK_PROCESSKEY (E5) Windows 95/98/Me, Windows NT 4.0, Windows 2000/XP: IME PROCESS key
492const int GK_PROCESSKEY = 0xE5;
493
494// GK_PACKET (E7) Windows 2000/XP: Used to pass Unicode characters as if they were keystrokes. The
495// GK_PACKET key is the low word of a 32-bit Virtual Key value used for non-keyboard input methods.
496// For more information, see Remark in KEYBDINPUT,SendInput, WM_KEYDOWN, and WM_KEYUP
497const int GK_PACKET = 0xE7;
498
499const int GK_OEM_ATTN = 0xF0;
500
501// GK_ATTN (F6) Attn key
502const int GK_ATTN = 0xF6;
503
504// GK_CRSEL (F7) CrSel key
505const int GK_CRSEL = 0xF7;
506
507// GK_EXSEL (F8) ExSel key
508const int GK_EXSEL = 0xF8;
509
510// GK_EREOF (F9) Erase EOF key
511const int GK_EREOF = 0xF9;
512
513// GK_PLAY (FA) Play key
514const int GK_PLAY = 0xFA;
515
516// GK_ZOOM (FB) Zoom key
517const int GK_ZOOM = 0xFB;
518
519// GK_NONAME (FC) Reserved for future use
520const int GK_NONAME = 0xFC;
521
522// GK_PA1 (FD) PA1 key
523const int GK_PA1 = 0xFD;
524
525// GK_OEM_CLEAR (FE) Clear key
526const int GK_OEM_CLEAR = 0xFE;
527
528const int GK_UNKNOWN = 0;
529
530} // namespace KeyCodes
531
532} // namespace ultralight
const int GK_F15
Definition KeyCodes.h:344
const int GK_SELECT
Definition KeyCodes.h:113
const int GK_F3
Definition KeyCodes.h:308
const int GK_APPS
Definition KeyCodes.h:248
const int GK_NEXT
Definition KeyCodes.h:92
const int GK_F9
Definition KeyCodes.h:326
const int GK_EXSEL
Definition KeyCodes.h:508
const int GK_ADD
Definition KeyCodes.h:287
const int GK_EXECUTE
Definition KeyCodes.h:119
const int GK_F20
Definition KeyCodes.h:359
const int GK_EREOF
Definition KeyCodes.h:511
const int GK_MEDIA_STOP
Definition KeyCodes.h:434
const int GK_BROWSER_HOME
Definition KeyCodes.h:416
const int GK_A
Definition KeyCodes.h:164
const int GK_OEM_4
Definition KeyCodes.h:473
const int GK_MODECHANGE
Definition KeyCodes.h:83
const int GK_L
Definition KeyCodes.h:197
const int GK_DOWN
Definition KeyCodes.h:110
const int GK_OEM_CLEAR
Definition KeyCodes.h:526
const int GK_LMENU
Definition KeyCodes.h:392
const int GK_F2
Definition KeyCodes.h:305
const int GK_UNKNOWN
Definition KeyCodes.h:528
const int GK_SEPARATOR
Definition KeyCodes.h:290
const int GK_VOLUME_MUTE
Definition KeyCodes.h:419
const int GK_F17
Definition KeyCodes.h:350
const int GK_SNAPSHOT
Definition KeyCodes.h:122
const int GK_RWIN
Definition KeyCodes.h:245
const int GK_OEM_8
Definition KeyCodes.h:485
const int GK_ACCEPT
Definition KeyCodes.h:80
const int GK_X
Definition KeyCodes.h:233
const int GK_MEDIA_LAUNCH_APP1
Definition KeyCodes.h:446
const int GK_H
Definition KeyCodes.h:185
const int GK_SUBTRACT
Definition KeyCodes.h:293
const int GK_R
Definition KeyCodes.h:215
const int GK_F23
Definition KeyCodes.h:368
const int GK_NUMPAD5
Definition KeyCodes.h:269
const int GK_NONCONVERT
Definition KeyCodes.h:77
const int GK_UP
Definition KeyCodes.h:104
const int GK_RSHIFT
Definition KeyCodes.h:383
const int GK_SCROLL
Definition KeyCodes.h:377
const int GK_F6
Definition KeyCodes.h:317
const int GK_DIVIDE
Definition KeyCodes.h:299
const int GK_RIGHT
Definition KeyCodes.h:107
const int GK_5
Definition KeyCodes.h:149
const int GK_MEDIA_NEXT_TRACK
Definition KeyCodes.h:428
const int GK_3
Definition KeyCodes.h:143
const int GK_F19
Definition KeyCodes.h:356
const int GK_VOLUME_DOWN
Definition KeyCodes.h:422
const int GK_F4
Definition KeyCodes.h:311
const int GK_OEM_102
Definition KeyCodes.h:489
const int GK_LCONTROL
Definition KeyCodes.h:386
const int GK_7
Definition KeyCodes.h:155
const int GK_SHIFT
Definition KeyCodes.h:31
const int GK_F14
Definition KeyCodes.h:341
const int GK_KANA
Definition KeyCodes.h:46
const int GK_F24
Definition KeyCodes.h:371
const int GK_J
Definition KeyCodes.h:191
const int GK_NUMPAD1
Definition KeyCodes.h:257
const int GK_OEM_2
Definition KeyCodes.h:467
const int GK_SPACE
Definition KeyCodes.h:86
const int GK_MULTIPLY
Definition KeyCodes.h:284
const int GK_HANJA
Definition KeyCodes.h:62
const int GK_BROWSER_SEARCH
Definition KeyCodes.h:410
const int GK_F12
Definition KeyCodes.h:335
const int GK_MEDIA_LAUNCH_MAIL
Definition KeyCodes.h:440
const int GK_OEM_7
Definition KeyCodes.h:482
const int GK_OEM_5
Definition KeyCodes.h:476
const int GK_OEM_MINUS
Definition KeyCodes.h:461
const int GK_F1
Definition KeyCodes.h:302
const int GK_0
Definition KeyCodes.h:134
const int GK_OEM_1
Definition KeyCodes.h:452
const int GK_NUMLOCK
Definition KeyCodes.h:374
const int GK_NUMPAD0
Definition KeyCodes.h:254
const int GK_PRIOR
Definition KeyCodes.h:89
const int GK_CONTROL
Definition KeyCodes.h:34
const int GK_HELP
Definition KeyCodes.h:131
const int GK_F16
Definition KeyCodes.h:347
const int GK_END
Definition KeyCodes.h:95
const int GK_CRSEL
Definition KeyCodes.h:505
const int GK_DECIMAL
Definition KeyCodes.h:296
const int GK_F22
Definition KeyCodes.h:365
const int GK_KANJI
Definition KeyCodes.h:65
const int GK_OEM_6
Definition KeyCodes.h:479
const int GK_MEDIA_LAUNCH_MEDIA_SELECT
Definition KeyCodes.h:443
const int GK_RETURN
Definition KeyCodes.h:28
const int GK_NUMPAD6
Definition KeyCodes.h:272
const int GK_D
Definition KeyCodes.h:173
const int GK_F13
Definition KeyCodes.h:338
const int GK_BROWSER_FAVORITES
Definition KeyCodes.h:413
const int GK_N
Definition KeyCodes.h:203
const int GK_F5
Definition KeyCodes.h:314
const int GK_TAB
Definition KeyCodes.h:22
const int GK_BROWSER_FORWARD
Definition KeyCodes.h:401
const int GK_ATTN
Definition KeyCodes.h:502
const int GK_ESCAPE
Definition KeyCodes.h:71
const int GK_IME_OFF
Definition KeyCodes.h:68
const int GK_BROWSER_BACK
Definition KeyCodes.h:398
const int GK_NUMPAD9
Definition KeyCodes.h:281
const int GK_NUMPAD7
Definition KeyCodes.h:275
const int GK_PAUSE
Definition KeyCodes.h:40
const int GK_RCONTROL
Definition KeyCodes.h:389
const int GK_OEM_PERIOD
Definition KeyCodes.h:464
const int GK_PROCESSKEY
Definition KeyCodes.h:492
const int GK_PRINT
Definition KeyCodes.h:116
const int GK_F10
Definition KeyCodes.h:329
const int GK_NUMPAD3
Definition KeyCodes.h:263
const int GK_BACK
Definition KeyCodes.h:19
const int GK_JUNJA
Definition KeyCodes.h:56
const int GK_I
Definition KeyCodes.h:188
const int GK_2
Definition KeyCodes.h:140
const int GK_MEDIA_LAUNCH_APP2
Definition KeyCodes.h:449
const int GK_ZOOM
Definition KeyCodes.h:517
const int GK_PACKET
Definition KeyCodes.h:497
const int GK_S
Definition KeyCodes.h:218
const int GK_MENU
Definition KeyCodes.h:37
const int GK_F7
Definition KeyCodes.h:320
const int GK_F18
Definition KeyCodes.h:353
const int GK_C
Definition KeyCodes.h:170
const int GK_O
Definition KeyCodes.h:206
const int GK_PA1
Definition KeyCodes.h:523
const int GK_OEM_PLUS
Definition KeyCodes.h:455
const int GK_INSERT
Definition KeyCodes.h:125
const int GK_F8
Definition KeyCodes.h:323
const int GK_HOME
Definition KeyCodes.h:98
const int GK_LSHIFT
Definition KeyCodes.h:380
const int GK_NONAME
Definition KeyCodes.h:520
const int GK_1
Definition KeyCodes.h:137
const int GK_DELETE
Definition KeyCodes.h:128
const int GK_Z
Definition KeyCodes.h:239
const int GK_M
Definition KeyCodes.h:200
const int GK_NUMPAD2
Definition KeyCodes.h:260
const int GK_FINAL
Definition KeyCodes.h:59
const int GK_VOLUME_UP
Definition KeyCodes.h:425
const int GK_G
Definition KeyCodes.h:182
const int GK_T
Definition KeyCodes.h:221
const int GK_MEDIA_PREV_TRACK
Definition KeyCodes.h:431
const int GK_K
Definition KeyCodes.h:194
const int GK_OEM_3
Definition KeyCodes.h:470
const int GK_9
Definition KeyCodes.h:161
const int GK_MEDIA_PLAY_PAUSE
Definition KeyCodes.h:437
const int GK_F
Definition KeyCodes.h:179
const int GK_V
Definition KeyCodes.h:227
const int GK_SLEEP
Definition KeyCodes.h:251
const int GK_CONVERT
Definition KeyCodes.h:74
const int GK_Y
Definition KeyCodes.h:236
const int GK_LWIN
Definition KeyCodes.h:242
const int GK_E
Definition KeyCodes.h:176
const int GK_OEM_ATTN
Definition KeyCodes.h:499
const int GK_B
Definition KeyCodes.h:167
const int GK_HANGUL
Definition KeyCodes.h:50
const int GK_U
Definition KeyCodes.h:224
const int GK_OEM_COMMA
Definition KeyCodes.h:458
const int GK_CAPITAL
Definition KeyCodes.h:43
const int GK_CLEAR
Definition KeyCodes.h:25
const int GK_RMENU
Definition KeyCodes.h:395
const int GK_NUMPAD4
Definition KeyCodes.h:266
const int GK_BROWSER_REFRESH
Definition KeyCodes.h:404
const int GK_4
Definition KeyCodes.h:146
const int GK_P
Definition KeyCodes.h:209
const int GK_8
Definition KeyCodes.h:158
const int GK_BROWSER_STOP
Definition KeyCodes.h:407
const int GK_PLAY
Definition KeyCodes.h:514
const int GK_IME_ON
Definition KeyCodes.h:53
const int GK_W
Definition KeyCodes.h:230
const int GK_Q
Definition KeyCodes.h:212
const int GK_F21
Definition KeyCodes.h:362
const int GK_6
Definition KeyCodes.h:152
const int GK_LEFT
Definition KeyCodes.h:101
const int GK_NUMPAD8
Definition KeyCodes.h:278
const int GK_F11
Definition KeyCodes.h:332
Definition App.h:14