annotate src/video/uikit/keyinfotable.h @ 2446:69ca51fd121d gsoc2008_iphone

Cleaned up, updated header include path
author Holmes Futrell <hfutrell@umail.ucsb.edu>
date Sat, 16 Aug 2008 00:09:54 +0000
parents 6c31bbd56c49
children 7683a2e0e5e9
rev   line source
2407
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
1 /*
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
2 * scancodes_iphoneos.h
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
3 * SDLiPhoneOS
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
4 *
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
5 * Created by Holmes Futrell on 7/25/08.
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
6 * Copyright 2008 __MyCompanyName__. All rights reserved.
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
7 *
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
8 */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
9
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
10 #ifndef _UIKIT_KeyInfo
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
11 #define _UIKIT_KeyInfo
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
12
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
13 #include "SDL_scancode.h"
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
14
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
15 typedef struct {
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
16 SDL_scancode code;
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
17 Uint16 mod;
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
18 } UIKitKeyInfo;
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
19
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
20 /* So far only ASCII characters here */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
21 static UIKitKeyInfo unicharToUIKeyInfoTable[] = {
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
22
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
23 /* 0 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
24 /* 1 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
25 /* 2 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
26 /* 3 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
27 /* 4 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
28 /* 5 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
29 /* 6 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
30 /* 7 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
31 /* 8 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
32 /* 9 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
33 /* 10 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
34 /* 11 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
35 /* 12 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
36 /* 13 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
37 /* 14 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
38 /* 15 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
39 /* 16 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
40 /* 17 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
41 /* 18 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
42 /* 19 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
43 /* 20 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
44 /* 21 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
45 /* 22 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
46 /* 23 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
47 /* 24 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
48 /* 25 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
49 /* 26 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
50 /* 27 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
51 /* 28 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
52 /* 29 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
53 /* 30 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
54 /* 31 */ { SDL_SCANCODE_UNKNOWN, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
55 /* 32 */ { SDL_SCANCODE_SPACE, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
56 /* 33 */ { SDL_SCANCODE_1, KMOD_SHIFT }, /* plus shift modifier '!' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
57 /* 34 */ { SDL_SCANCODE_APOSTROPHE, KMOD_SHIFT }, /* plus shift modifier '"' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
58 /* 35 */ { SDL_SCANCODE_3, KMOD_SHIFT }, /* plus shift modifier '#' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
59 /* 36 */ { SDL_SCANCODE_4, KMOD_SHIFT }, /* plus shift modifier '$' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
60 /* 37 */ { SDL_SCANCODE_5, KMOD_SHIFT }, /* plus shift modifier '%' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
61 /* 38 */ { SDL_SCANCODE_7, KMOD_SHIFT }, /* plus shift modifier '&' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
62 /* 39 */ { SDL_SCANCODE_APOSTROPHE, 0 }, /* ''' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
63 /* 40 */ { SDL_SCANCODE_9, KMOD_SHIFT }, /* plus shift modifier '(' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
64 /* 41 */ { SDL_SCANCODE_0, KMOD_SHIFT }, /* plus shift modifier ')' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
65 /* 42 */ { SDL_SCANCODE_8, KMOD_SHIFT }, /* '*' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
66 /* 43 */ { SDL_SCANCODE_EQUALS, KMOD_SHIFT }, /* plus shift modifier '+' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
67 /* 44 */ { SDL_SCANCODE_COMMA, 0 }, /* ',' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
68 /* 45 */ { SDL_SCANCODE_MINUS, 0 }, /* '-' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
69 /* 46 */ { SDL_SCANCODE_PERIOD, 0 }, /* '.' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
70 /* 47 */ { SDL_SCANCODE_SLASH, 0 }, /* '/' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
71 /* 48 */ { SDL_SCANCODE_0, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
72 /* 49 */ { SDL_SCANCODE_1, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
73 /* 50 */ { SDL_SCANCODE_2, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
74 /* 51 */ { SDL_SCANCODE_3, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
75 /* 52 */ { SDL_SCANCODE_4, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
76 /* 53 */ { SDL_SCANCODE_5, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
77 /* 54 */ { SDL_SCANCODE_6, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
78 /* 55 */ { SDL_SCANCODE_7, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
79 /* 56 */ { SDL_SCANCODE_8, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
80 /* 57 */ { SDL_SCANCODE_9, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
81 /* 58 */ { SDL_SCANCODE_SEMICOLON, KMOD_SHIFT }, /* plus shift modifier ';' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
82 /* 59 */ { SDL_SCANCODE_SEMICOLON, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
83 /* 60 */ { SDL_SCANCODE_COMMA, KMOD_SHIFT }, /* plus shift modifier '<' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
84 /* 61 */ { SDL_SCANCODE_EQUALS, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
85 /* 62 */ { SDL_SCANCODE_PERIOD, KMOD_SHIFT }, /* plus shift modifier '>' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
86 /* 63 */ { SDL_SCANCODE_SLASH, KMOD_SHIFT }, /* plus shift modifier '?' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
87 /* 64 */ { SDL_SCANCODE_2, KMOD_SHIFT }, /* plus shift modifier '@' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
88 /* 65 */ { SDL_SCANCODE_A, KMOD_SHIFT }, /* all the following need shift modifiers */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
89 /* 66 */ { SDL_SCANCODE_B, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
90 /* 67 */ { SDL_SCANCODE_C, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
91 /* 68 */ { SDL_SCANCODE_D, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
92 /* 69 */ { SDL_SCANCODE_E, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
93 /* 70 */ { SDL_SCANCODE_F, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
94 /* 71 */ { SDL_SCANCODE_G, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
95 /* 72 */ { SDL_SCANCODE_H, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
96 /* 73 */ { SDL_SCANCODE_I, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
97 /* 74 */ { SDL_SCANCODE_J, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
98 /* 75 */ { SDL_SCANCODE_K, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
99 /* 76 */ { SDL_SCANCODE_L, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
100 /* 77 */ { SDL_SCANCODE_M, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
101 /* 78 */ { SDL_SCANCODE_N, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
102 /* 79 */ { SDL_SCANCODE_O, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
103 /* 80 */ { SDL_SCANCODE_P, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
104 /* 81 */ { SDL_SCANCODE_Q, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
105 /* 82 */ { SDL_SCANCODE_R, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
106 /* 83 */ { SDL_SCANCODE_S, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
107 /* 84 */ { SDL_SCANCODE_T, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
108 /* 85 */ { SDL_SCANCODE_U, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
109 /* 86 */ { SDL_SCANCODE_V, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
110 /* 87 */ { SDL_SCANCODE_W, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
111 /* 88 */ { SDL_SCANCODE_X, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
112 /* 89 */ { SDL_SCANCODE_Y, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
113 /* 90 */ { SDL_SCANCODE_Z, KMOD_SHIFT },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
114 /* 91 */ { SDL_SCANCODE_LEFTBRACKET, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
115 /* 92 */ { SDL_SCANCODE_BACKSLASH, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
116 /* 93 */ { SDL_SCANCODE_RIGHTBRACKET, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
117 /* 94 */ { SDL_SCANCODE_6, KMOD_SHIFT }, /* plus shift modifier '^' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
118 /* 95 */ { SDL_SCANCODE_MINUS, KMOD_SHIFT }, /* plus shift modifier '_' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
119 /* 96 */ { SDL_SCANCODE_GRAVE, KMOD_SHIFT }, /* '`'
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
120 /* 97 */ { SDL_SCANCODE_A, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
121 /* 98 */ { SDL_SCANCODE_B, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
122 /* 99 */ { SDL_SCANCODE_C, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
123 /* 100 */{ SDL_SCANCODE_D, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
124 /* 101 */{ SDL_SCANCODE_E, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
125 /* 102 */{ SDL_SCANCODE_F, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
126 /* 103 */{ SDL_SCANCODE_G, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
127 /* 104 */{ SDL_SCANCODE_H, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
128 /* 105 */{ SDL_SCANCODE_I, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
129 /* 106 */{ SDL_SCANCODE_J, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
130 /* 107 */{ SDL_SCANCODE_K, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
131 /* 108 */{ SDL_SCANCODE_L, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
132 /* 109 */{ SDL_SCANCODE_M, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
133 /* 110 */{ SDL_SCANCODE_N, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
134 /* 111 */{ SDL_SCANCODE_O, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
135 /* 112 */{ SDL_SCANCODE_P, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
136 /* 113 */{ SDL_SCANCODE_Q, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
137 /* 114 */{ SDL_SCANCODE_R, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
138 /* 115 */{ SDL_SCANCODE_S, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
139 /* 116 */{ SDL_SCANCODE_T, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
140 /* 117 */{ SDL_SCANCODE_U, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
141 /* 118 */{ SDL_SCANCODE_V, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
142 /* 119 */{ SDL_SCANCODE_W, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
143 /* 120 */{ SDL_SCANCODE_X, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
144 /* 121 */{ SDL_SCANCODE_Y, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
145 /* 122 */{ SDL_SCANCODE_Z, 0 },
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
146 /* 123 */{ SDL_SCANCODE_LEFTBRACKET, KMOD_SHIFT }, /* plus shift modifier '{' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
147 /* 124 */{ SDL_SCANCODE_BACKSLASH, KMOD_SHIFT }, /* plus shift modifier '|' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
148 /* 125 */{ SDL_SCANCODE_RIGHTBRACKET, KMOD_SHIFT }, /* plus shift modifier '}' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
149 /* 126 */{ SDL_SCANCODE_GRAVE, KMOD_SHIFT }, /* plus shift modifier '~' */
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
150 /* 127 */{ SDL_SCANCODE_DELETE, KMOD_SHIFT }
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
151 };
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
152
6c31bbd56c49 keyinfotable.h contains information which SDL_uikitkeyboard uses to convert between unichar characters that it reads from the text field (which acts as the keyboard's target) to SDL_scancodes and key modifiers which are sent to SDL's keyboard system.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
153 #endif /* UIKitKeyInfo */