Home | History | Annotate | Download | only in wx
      1 /*
      2  * Copyright (C) 2006 Michael Emmel mike.emmel (at) gmail.com
      3  *
      4  * All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  *
     15  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
     16  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     18  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
     19  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     22  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
     23  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26  */
     27 
     28 #ifndef KeyboardCodes_h
     29 #define KeyboardCodes_h
     30 
     31 namespace WebCore {
     32 
     33 // VK_LBUTTON (01) Left mouse button
     34 // VK_RBUTTON (02) Right mouse button
     35 // VK_CANCEL (03) Control-break processing
     36 // VK_MBUTTON (04) Middle mouse button (three-button mouse)
     37 // VK_XBUTTON1 (05)
     38 // VK_XBUTTON2 (06)
     39 
     40 // VK_BACK (08) BACKSPACE key
     41 const int VK_BACK = 0x08;
     42 
     43 // VK_TAB (09) TAB key
     44 const int VK_TAB = 0x09;
     45 
     46 // VK_CLEAR (0C) CLEAR key
     47 const int VK_CLEAR = 0x0C;
     48 
     49 // VK_RETURN (0D)
     50 const int VK_RETURN = 0x0D;
     51 
     52 // VK_SHIFT (10) SHIFT key
     53 const int VK_SHIFT = 0x10;
     54 
     55 // VK_CONTROL (11) CTRL key
     56 const int VK_CONTROL = 0x11;
     57 
     58 // VK_MENU (12) ALT key
     59 const int VK_MENU = 0x12;
     60 
     61 // VK_PAUSE (13) PAUSE key
     62 const int VK_PAUSE = 0x13;
     63 
     64 // VK_CAPITAL (14) CAPS LOCK key
     65 const int VK_CAPITAL = 0x14;
     66 
     67 // VK_KANA (15) Input Method Editor (IME) Kana mode
     68 const int VK_KANA = 0x15;
     69 
     70 // VK_HANGUEL (15) IME Hanguel mode (maintained for compatibility; use VK_HANGUL)
     71 // VK_HANGUL (15) IME Hangul mode
     72 const int VK_HANGUL = 0x15;
     73 
     74 // VK_JUNJA (17) IME Junja mode
     75 const int VK_JUNJA = 0x17;
     76 
     77 // VK_FINAL (18) IME final mode
     78 const int VK_FINAL = 0x18;
     79 
     80 // VK_HANJA (19) IME Hanja mode
     81 const int VK_HANJA = 0x19;
     82 
     83 // VK_KANJI (19) IME Kanji mode
     84 const int VK_KANJI = 0x19;
     85 
     86 // VK_ESCAPE (1B) ESC key
     87 const int VK_ESCAPE = 0x1B;
     88 
     89 // VK_CONVERT (1C) IME convert
     90 const int VK_CONVERT = 0x1C;
     91 
     92 // VK_NONCONVERT (1D) IME nonconvert
     93 const int VK_NONCONVERT = 0x1D;
     94 
     95 // VK_ACCEPT (1E) IME accept
     96 const int VK_ACCEPT = 0x1E;
     97 
     98 // VK_MODECHANGE (1F) IME mode change request
     99 const int VK_MODECHANGE = 0x1F;
    100 
    101 // VK_SPACE (20) SPACEBAR
    102 const int VK_SPACE = 0x20;
    103 
    104 // VK_PRIOR (21) PAGE UP key
    105 const int VK_PRIOR = 0x21;
    106 
    107 // VK_NEXT (22) PAGE DOWN key
    108 const int VK_NEXT = 0x22;
    109 
    110 // VK_END (23) END key
    111 const int VK_END = 0x23;
    112 
    113 // VK_HOME (24) HOME key
    114 const int VK_HOME = 0x24;
    115 
    116 // VK_LEFT (25) LEFT ARROW key
    117 const int VK_LEFT = 0x25;
    118 
    119 // VK_UP (26) UP ARROW key
    120 const int VK_UP = 0x26;
    121 
    122 // VK_RIGHT (27) RIGHT ARROW key
    123 const int VK_RIGHT = 0x27;
    124 
    125 // VK_DOWN (28) DOWN ARROW key
    126 const int VK_DOWN = 0x28;
    127 
    128 // VK_SELECT (29) SELECT key
    129 const int VK_SELECT = 0x29;
    130 
    131 // VK_PRINT (2A) PRINT key
    132 const int VK_PRINT = 0x2A;
    133 
    134 // VK_EXECUTE (2B) EXECUTE key
    135 const int VK_EXECUTE = 0x2B;
    136 
    137 // VK_SNAPSHOT (2C) PRINT SCREEN key
    138 const int VK_SNAPSHOT = 0x2C;
    139 
    140 // VK_INSERT (2D) INS key
    141 const int VK_INSERT = 0x2D;
    142 
    143 // VK_DELETE (2E) DEL key
    144 const int VK_DELETE = 0x2E;
    145 
    146 // VK_HELP (2F) HELP key
    147 const int VK_HELP = 0x2F;
    148 
    149 // (30) 0 key
    150 const int VK_0 = 0x30;
    151 
    152 // (31) 1 key
    153 const int VK_1 = 0x31;
    154 
    155 // (32) 2 key
    156 const int VK_2 = 0x32;
    157 
    158 // (33) 3 key
    159 const int VK_3 = 0x33;
    160 
    161 // (34) 4 key
    162 const int VK_4 = 0x34;
    163 
    164 // (35) 5 key;
    165 
    166 const int VK_5 = 0x35;
    167 
    168 // (36) 6 key
    169 const int VK_6 = 0x36;
    170 
    171 // (37) 7 key
    172 const int VK_7 = 0x37;
    173 
    174 // (38) 8 key
    175 const int VK_8 = 0x38;
    176 
    177 // (39) 9 key
    178 const int VK_9 = 0x39;
    179 
    180 // (41) A key
    181 const int VK_A = 0x41;
    182 
    183 // (42) B key
    184 const int VK_B = 0x42;
    185 
    186 // (43) C key
    187 const int VK_C = 0x43;
    188 
    189 // (44) D key
    190 const int VK_D = 0x44;
    191 
    192 // (45) E key
    193 const int VK_E = 0x45;
    194 
    195 // (46) F key
    196 const int VK_F = 0x46;
    197 
    198 // (47) G key
    199 const int VK_G = 0x47;
    200 
    201 // (48) H key
    202 const int VK_H = 0x48;
    203 
    204 // (49) I key
    205 const int VK_I = 0x49;
    206 
    207 // (4A) J key
    208 const int VK_J = 0x4A;
    209 
    210 // (4B) K key
    211 const int VK_K = 0x4B;
    212 
    213 // (4C) L key
    214 const int VK_L = 0x4C;
    215 
    216 // (4D) M key
    217 const int VK_M = 0x4D;
    218 
    219 // (4E) N key
    220 const int VK_N = 0x4E;
    221 
    222 // (4F) O key
    223 const int VK_O = 0x4F;
    224 
    225 // (50) P key
    226 const int VK_P = 0x50;
    227 
    228 // (51) Q key
    229 const int VK_Q = 0x51;
    230 
    231 // (52) R key
    232 const int VK_R = 0x52;
    233 
    234 // (53) S key
    235 const int VK_S = 0x53;
    236 
    237 // (54) T key
    238 const int VK_T = 0x54;
    239 
    240 // (55) U key
    241 const int VK_U = 0x55;
    242 
    243 // (56) V key
    244 const int VK_V = 0x56;
    245 
    246 // (57) W key
    247 const int VK_W = 0x57;
    248 
    249 // (58) X key
    250 const int VK_X = 0x58;
    251 
    252 // (59) Y key
    253 const int VK_Y = 0x59;
    254 
    255 // (5A) Z key
    256 const int VK_Z = 0x5A;
    257 
    258 // VK_LWIN (5B) Left Windows key (Microsoft Natural keyboard)
    259 const int VK_LWIN = 0x5B;
    260 
    261 // VK_RWIN (5C) Right Windows key (Natural keyboard)
    262 const int VK_RWIN = 0x5C;
    263 
    264 // VK_APPS (5D) Applications key (Natural keyboard)
    265 const int VK_APPS = 0x5D;
    266 
    267 // VK_SLEEP (5F) Computer Sleep key
    268 const int VK_SLEEP = 0x5F;
    269 
    270 // VK_NUMPAD0 (60) Numeric keypad 0 key
    271 const int VK_NUMPAD0 = 0x60;
    272 
    273 // VK_NUMPAD1 (61) Numeric keypad 1 key
    274 const int VK_NUMPAD1 = 0x61;
    275 
    276 // VK_NUMPAD2 (62) Numeric keypad 2 key
    277 const int VK_NUMPAD2 = 0x62;
    278 
    279 // VK_NUMPAD3 (63) Numeric keypad 3 key
    280 const int VK_NUMPAD3 = 0x63;
    281 
    282 // VK_NUMPAD4 (64) Numeric keypad 4 key
    283 const int VK_NUMPAD4 = 0x64;
    284 
    285 // VK_NUMPAD5 (65) Numeric keypad 5 key
    286 const int VK_NUMPAD5 = 0x65;
    287 
    288 // VK_NUMPAD6 (66) Numeric keypad 6 key
    289 const int VK_NUMPAD6 = 0x66;
    290 
    291 // VK_NUMPAD7 (67) Numeric keypad 7 key
    292 const int VK_NUMPAD7 = 0x67;
    293 
    294 // VK_NUMPAD8 (68) Numeric keypad 8 key
    295 const int VK_NUMPAD8 = 0x68;
    296 
    297 // VK_NUMPAD9 (69) Numeric keypad 9 key
    298 const int VK_NUMPAD9 = 0x69;
    299 
    300 // VK_MULTIPLY (6A) Multiply key
    301 const int VK_MULTIPLY = 0x6A;
    302 
    303 // VK_ADD (6B) Add key
    304 const int VK_ADD = 0x6B;
    305 
    306 // VK_SEPARATOR (6C) Separator key
    307 const int VK_SEPARATOR = 0x6C;
    308 
    309 // VK_SUBTRACT (6D) Subtract key
    310 const int VK_SUBTRACT = 0x6D;
    311 
    312 // VK_DECIMAL (6E) Decimal key
    313 const int VK_DECIMAL = 0x6E;
    314 
    315 // VK_DIVIDE (6F) Divide key
    316 const int VK_DIVIDE = 0x6F;
    317 
    318 // VK_F1 (70) F1 key
    319 const int VK_F1 = 0x70;
    320 
    321 // VK_F2 (71) F2 key
    322 const int VK_F2 = 0x71;
    323 
    324 // VK_F3 (72) F3 key
    325 const int VK_F3 = 0x72;
    326 
    327 // VK_F4 (73) F4 key
    328 const int VK_F4 = 0x73;
    329 
    330 // VK_F5 (74) F5 key
    331 const int VK_F5 = 0x74;
    332 
    333 // VK_F6 (75) F6 key
    334 const int VK_F6 = 0x75;
    335 
    336 // VK_F7 (76) F7 key
    337 const int VK_F7 = 0x76;
    338 
    339 // VK_F8 (77) F8 key
    340 const int VK_F8 = 0x77;
    341 
    342 // VK_F9 (78) F9 key
    343 const int VK_F9 = 0x78;
    344 
    345 // VK_F10 (79) F10 key
    346 const int VK_F10 = 0x79;
    347 
    348 // VK_F11 (7A) F11 key
    349 const int VK_F11 = 0x7A;
    350 
    351 // VK_F12 (7B) F12 key
    352 const int VK_F12 = 0x7B;
    353 
    354 // VK_F13 (7C) F13 key
    355 const int VK_F13 = 0x7C;
    356 
    357 // VK_F14 (7D) F14 key
    358 const int VK_F14 = 0x7D;
    359 
    360 // VK_F15 (7E) F15 key
    361 const int VK_F15 = 0x7E;
    362 
    363 // VK_F16 (7F) F16 key
    364 const int VK_F16 = 0x7F;
    365 
    366 // VK_F17 (80H) F17 key
    367 const int VK_F17 = 0x80;
    368 
    369 // VK_F18 (81H) F18 key
    370 const int VK_F18 = 0x81;
    371 
    372 // VK_F19 (82H) F19 key
    373 const int VK_F19 = 0x82;
    374 
    375 // VK_F20 (83H) F20 key
    376 const int VK_F20 = 0x83;
    377 
    378 // VK_F21 (84H) F21 key
    379 const int VK_F21 = 0x84;
    380 
    381 // VK_F22 (85H) F22 key
    382 const int VK_F22 = 0x85;
    383 
    384 // VK_F23 (86H) F23 key
    385 const int VK_F23 = 0x86;
    386 
    387 // VK_F24 (87H) F24 key
    388 const int VK_F24 = 0x87;
    389 
    390 // VK_NUMLOCK (90) NUM LOCK key
    391 const int VK_NUMLOCK = 0x90;
    392 
    393 // VK_SCROLL (91) SCROLL LOCK key
    394 const int VK_SCROLL = 0x91;
    395 
    396 // VK_LSHIFT (A0) Left SHIFT key
    397 const int VK_LSHIFT = 0xA0;
    398 
    399 // VK_RSHIFT (A1) Right SHIFT key
    400 const int VK_RSHIFT = 0xA1;
    401 
    402 // VK_LCONTROL (A2) Left CONTROL key
    403 const int VK_LCONTROL = 0xA2;
    404 
    405 // VK_RCONTROL (A3) Right CONTROL key
    406 const int VK_RCONTROL = 0xA3;
    407 
    408 // VK_LMENU (A4) Left MENU key
    409 const int VK_LMENU = 0xA4;
    410 
    411 // VK_RMENU (A5) Right MENU key
    412 const int VK_RMENU = 0xA5;
    413 
    414 // VK_BROWSER_BACK (A6) Windows 2000/XP: Browser Back key
    415 const int VK_BROWSER_BACK = 0xA6;
    416 
    417 // VK_BROWSER_FORWARD (A7) Windows 2000/XP: Browser Forward key
    418 const int VK_BROWSER_FORWARD = 0xA7;
    419 
    420 // VK_BROWSER_REFRESH (A8) Windows 2000/XP: Browser Refresh key
    421 const int VK_BROWSER_REFRESH = 0xA8;
    422 
    423 // VK_BROWSER_STOP (A9) Windows 2000/XP: Browser Stop key
    424 const int VK_BROWSER_STOP = 0xA9;
    425 
    426 // VK_BROWSER_SEARCH (AA) Windows 2000/XP: Browser Search key
    427 const int VK_BROWSER_SEARCH = 0xAA;
    428 
    429 // VK_BROWSER_FAVORITES (AB) Windows 2000/XP: Browser Favorites key
    430 const int VK_BROWSER_FAVORITES = 0xAB;
    431 
    432 // VK_BROWSER_HOME (AC) Windows 2000/XP: Browser Start and Home key
    433 const int VK_BROWSER_HOME = 0xAC;
    434 
    435 // VK_VOLUME_MUTE (AD) Windows 2000/XP: Volume Mute key
    436 const int VK_VOLUME_MUTE = 0xAD;
    437 
    438 // VK_VOLUME_DOWN (AE) Windows 2000/XP: Volume Down key
    439 const int VK_VOLUME_DOWN = 0xAE;
    440 
    441 // VK_VOLUME_UP (AF) Windows 2000/XP: Volume Up key
    442 const int VK_VOLUME_UP = 0xAF;
    443 
    444 // VK_MEDIA_NEXT_TRACK (B0) Windows 2000/XP: Next Track key
    445 const int VK_MEDIA_NEXT_TRACK = 0xB0;
    446 
    447 // VK_MEDIA_PREV_TRACK (B1) Windows 2000/XP: Previous Track key
    448 const int VK_MEDIA_PREV_TRACK = 0xB1;
    449 
    450 // VK_MEDIA_STOP (B2) Windows 2000/XP: Stop Media key
    451 const int VK_MEDIA_STOP = 0xB2;
    452 
    453 // VK_MEDIA_PLAY_PAUSE (B3) Windows 2000/XP: Play/Pause Media key
    454 const int VK_MEDIA_PLAY_PAUSE = 0xB3;
    455 
    456 // VK_LAUNCH_MAIL (B4) Windows 2000/XP: Start Mail key
    457 const int VK_MEDIA_LAUNCH_MAIL = 0xB4;
    458 
    459 // VK_LAUNCH_MEDIA_SELECT (B5) Windows 2000/XP: Select Media key
    460 const int VK_MEDIA_LAUNCH_MEDIA_SELECT = 0xB5;
    461 
    462 // VK_LAUNCH_APP1 (B6) Windows 2000/XP: Start Application 1 key
    463 const int VK_MEDIA_LAUNCH_APP1 = 0xB6;
    464 
    465 // VK_LAUNCH_APP2 (B7) Windows 2000/XP: Start Application 2 key
    466 const int VK_MEDIA_LAUNCH_APP2 = 0xB7;
    467 
    468 // VK_OEM_1 (BA) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the ';:' key
    469 const int VK_OEM_1 = 0xBA;
    470 
    471 // VK_OEM_PLUS (BB) Windows 2000/XP: For any country/region, the '+' key
    472 const int VK_OEM_PLUS = 0xBB;
    473 
    474 // VK_OEM_COMMA (BC) Windows 2000/XP: For any country/region, the ',' key
    475 const int VK_OEM_COMMA = 0xBC;
    476 
    477 // VK_OEM_MINUS (BD) Windows 2000/XP: For any country/region, the '-' key
    478 const int VK_OEM_MINUS = 0xBD;
    479 
    480 // VK_OEM_PERIOD (BE) Windows 2000/XP: For any country/region, the '.' key
    481 const int VK_OEM_PERIOD = 0xBE;
    482 
    483 // VK_OEM_2 (BF) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '/?' key
    484 const int VK_OEM_2 = 0xBF;
    485 
    486 // VK_OEM_3 (C0) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '`~' key
    487 const int VK_OEM_3 = 0xC0;
    488 
    489 // VK_OEM_4 (DB) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '[{' key
    490 const int VK_OEM_4 = 0xDB;
    491 
    492 // VK_OEM_5 (DC) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '\|' key
    493 const int VK_OEM_5 = 0xDC;
    494 
    495 // VK_OEM_6 (DD) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the ']}' key
    496 const int VK_OEM_6 = 0xDD;
    497 
    498 // VK_OEM_7 (DE) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the 'single-quote/double-quote' key
    499 const int VK_OEM_7 = 0xDE;
    500 
    501 // VK_OEM_8 (DF) Used for miscellaneous characters; it can vary by keyboard.
    502 const int VK_OEM_8 = 0xDF;
    503 
    504 // VK_OEM_102 (E2) Windows 2000/XP: Either the angle bracket key or the backslash key on the RT 102-key keyboard
    505 const int VK_OEM_102 = 0xE2;
    506 
    507 // VK_PROCESSKEY (E5) Windows 95/98/Me, Windows NT 4.0, Windows 2000/XP: IME PROCESS key
    508 const int VK_PROCESSKEY = 0xE5;
    509 
    510 // VK_PACKET (E7) Windows 2000/XP: Used to pass Unicode characters as if they were keystrokes. The VK_PACKET key is the low word of a 32-bit Virtual Key value used for non-keyboard input methods. For more information, see Remark in KEYBDINPUT,SendInput, WM_KEYDOWN, and WM_KEYUP
    511 const int VK_PACKET = 0xE7;
    512 
    513 // VK_ATTN (F6) Attn key
    514 const int VK_ATTN = 0xF6;
    515 
    516 // VK_CRSEL (F7) CrSel key
    517 const int VK_CRSEL = 0xF7;
    518 
    519 // VK_EXSEL (F8) ExSel key
    520 const int VK_EXSEL = 0xF8;
    521 
    522 // VK_EREOF (F9) Erase EOF key
    523 const int VK_EREOF = 0xF9;
    524 
    525 // VK_PLAY (FA) Play key
    526 const int VK_PLAY = 0xFA;
    527 
    528 // VK_ZOOM (FB) Zoom key
    529 const int VK_ZOOM = 0xFB;
    530 
    531 // VK_NONAME (FC) Reserved for future use
    532 const int VK_NONAME = 0xFC;
    533 
    534 // VK_PA1 (FD) PA1 key
    535 const int VK_PA1 = 0xFD;
    536 
    537 // VK_OEM_CLEAR (FE) Clear key
    538 const int VK_OEM_CLEAR = 0xFE;
    539 
    540 const int VK_UNKNOWN = 0;
    541 
    542 }
    543 
    544 #endif
    545