Mercurial > sdl-ios-xcode
annotate src/video/uikit/keyinfotable.h @ 5262:956d42855c92
Finished removing unused leak detection code.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 11 Feb 2011 14:42:06 -0800 |
parents | 572a73d71b5f |
children | b530ef003506 |
rev | line source |
---|---|
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 /* |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
2 SDL - Simple DirectMedia Layer |
3697 | 3 Copyright (C) 1997-2010 Sam Lantinga |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
4 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
5 This library is free software; you can redistribute it and/or |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
7 License as published by the Free Software Foundation; either |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
9 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
10 This library is distributed in the hope that it will be useful, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
13 Lesser General Public License for more details. |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
14 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
18 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
19 Sam Lantinga |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
20 slouken@libsdl.org |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
21 */ |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
22 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
23 #ifndef _UIKIT_KeyInfo |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
24 #define _UIKIT_KeyInfo |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
25 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
26 #include "SDL_scancode.h" |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
27 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
28 /* |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
29 This file is used by the keyboard code in SDL_uikitview.m to convert between characters |
5223
572a73d71b5f
Sheena pointed out that "scancode" and "keysym" are single words and shouldn't be camel-cased.
Sam Lantinga <slouken@libsdl.org>
parents:
5137
diff
changeset
|
30 passed in from the iPhone's virtual keyboard, and tuples of SDL_Scancode and SDL_keymods. |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
31 For example unicharToUIKeyInfoTable['a'] would give you the scan code and keymod for lower |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
32 case a. |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
33 */ |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
34 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
35 typedef struct |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
36 { |
5223
572a73d71b5f
Sheena pointed out that "scancode" and "keysym" are single words and shouldn't be camel-cased.
Sam Lantinga <slouken@libsdl.org>
parents:
5137
diff
changeset
|
37 SDL_Scancode code; |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
38 Uint16 mod; |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
39 } UIKitKeyInfo; |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
40 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
41 /* So far only ASCII characters here */ |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
42 static UIKitKeyInfo unicharToUIKeyInfoTable[] = { |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
43 /* *INDENT-OFF* */ |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
44 /* 0 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
45 /* 1 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
46 /* 2 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
47 /* 3 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
48 /* 4 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
49 /* 5 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
50 /* 6 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
51 /* 7 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
52 /* 8 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
53 /* 9 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
54 /* 10 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
55 /* 11 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
56 /* 12 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
5137
c63b901d97ab
Fixed bug #1025 (iphone keyboard doesn't send 'return' and 'backspace' events)
Sam Lantinga <slouken@libsdl.org>
parents:
5136
diff
changeset
|
57 /* 13 */ { SDL_SCANCODE_RETURN, 0 }, |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
58 /* 14 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
59 /* 15 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
60 /* 16 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
61 /* 17 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
62 /* 18 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
63 /* 19 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
64 /* 20 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
65 /* 21 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
66 /* 22 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
67 /* 23 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
68 /* 24 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
69 /* 25 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
70 /* 26 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
71 /* 27 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
72 /* 28 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
73 /* 29 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
74 /* 30 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
75 /* 31 */ { SDL_SCANCODE_UNKNOWN, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
76 /* 32 */ { SDL_SCANCODE_SPACE, 0 }, |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
77 /* 33 */ { SDL_SCANCODE_1, KMOD_SHIFT }, /* plus shift modifier '!' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
78 /* 34 */ { SDL_SCANCODE_APOSTROPHE, KMOD_SHIFT }, /* plus shift modifier '"' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
79 /* 35 */ { SDL_SCANCODE_3, KMOD_SHIFT }, /* plus shift modifier '#' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
80 /* 36 */ { SDL_SCANCODE_4, KMOD_SHIFT }, /* plus shift modifier '$' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
81 /* 37 */ { SDL_SCANCODE_5, KMOD_SHIFT }, /* plus shift modifier '%' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
82 /* 38 */ { SDL_SCANCODE_7, KMOD_SHIFT }, /* plus shift modifier '&' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
83 /* 39 */ { SDL_SCANCODE_APOSTROPHE, 0 }, /* ''' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
84 /* 40 */ { SDL_SCANCODE_9, KMOD_SHIFT }, /* plus shift modifier '(' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
85 /* 41 */ { SDL_SCANCODE_0, KMOD_SHIFT }, /* plus shift modifier ')' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
86 /* 42 */ { SDL_SCANCODE_8, KMOD_SHIFT }, /* '*' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
87 /* 43 */ { SDL_SCANCODE_EQUALS, KMOD_SHIFT }, /* plus shift modifier '+' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
88 /* 44 */ { SDL_SCANCODE_COMMA, 0 }, /* ',' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
89 /* 45 */ { SDL_SCANCODE_MINUS, 0 }, /* '-' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
90 /* 46 */ { SDL_SCANCODE_PERIOD, 0 }, /* '.' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
91 /* 47 */ { SDL_SCANCODE_SLASH, 0 }, /* '/' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
92 /* 48 */ { SDL_SCANCODE_0, 0 }, |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
93 /* 49 */ { SDL_SCANCODE_1, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
94 /* 50 */ { SDL_SCANCODE_2, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
95 /* 51 */ { SDL_SCANCODE_3, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
96 /* 52 */ { SDL_SCANCODE_4, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
97 /* 53 */ { SDL_SCANCODE_5, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
98 /* 54 */ { SDL_SCANCODE_6, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
99 /* 55 */ { SDL_SCANCODE_7, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
100 /* 56 */ { SDL_SCANCODE_8, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
101 /* 57 */ { SDL_SCANCODE_9, 0 }, |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
102 /* 58 */ { SDL_SCANCODE_SEMICOLON, KMOD_SHIFT }, /* plus shift modifier ';' */ |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
103 /* 59 */ { SDL_SCANCODE_SEMICOLON, 0 }, |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
104 /* 60 */ { SDL_SCANCODE_COMMA, KMOD_SHIFT }, /* plus shift modifier '<' */ |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
105 /* 61 */ { SDL_SCANCODE_EQUALS, 0 }, |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
106 /* 62 */ { SDL_SCANCODE_PERIOD, KMOD_SHIFT }, /* plus shift modifier '>' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
107 /* 63 */ { SDL_SCANCODE_SLASH, KMOD_SHIFT }, /* plus shift modifier '?' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
108 /* 64 */ { SDL_SCANCODE_2, KMOD_SHIFT }, /* plus shift modifier '@' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
109 /* 65 */ { SDL_SCANCODE_A, KMOD_SHIFT }, /* all the following need shift modifiers */ |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
110 /* 66 */ { SDL_SCANCODE_B, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
111 /* 67 */ { SDL_SCANCODE_C, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
112 /* 68 */ { SDL_SCANCODE_D, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
113 /* 69 */ { SDL_SCANCODE_E, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
114 /* 70 */ { SDL_SCANCODE_F, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
115 /* 71 */ { SDL_SCANCODE_G, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
116 /* 72 */ { SDL_SCANCODE_H, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
117 /* 73 */ { SDL_SCANCODE_I, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
118 /* 74 */ { SDL_SCANCODE_J, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
119 /* 75 */ { SDL_SCANCODE_K, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
120 /* 76 */ { SDL_SCANCODE_L, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
121 /* 77 */ { SDL_SCANCODE_M, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
122 /* 78 */ { SDL_SCANCODE_N, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
123 /* 79 */ { SDL_SCANCODE_O, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
124 /* 80 */ { SDL_SCANCODE_P, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
125 /* 81 */ { SDL_SCANCODE_Q, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
126 /* 82 */ { SDL_SCANCODE_R, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
127 /* 83 */ { SDL_SCANCODE_S, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
128 /* 84 */ { SDL_SCANCODE_T, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
129 /* 85 */ { SDL_SCANCODE_U, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
130 /* 86 */ { SDL_SCANCODE_V, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
131 /* 87 */ { SDL_SCANCODE_W, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
132 /* 88 */ { SDL_SCANCODE_X, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
133 /* 89 */ { SDL_SCANCODE_Y, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
134 /* 90 */ { SDL_SCANCODE_Z, KMOD_SHIFT }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
135 /* 91 */ { SDL_SCANCODE_LEFTBRACKET, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
136 /* 92 */ { SDL_SCANCODE_BACKSLASH, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
137 /* 93 */ { SDL_SCANCODE_RIGHTBRACKET, 0 }, |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
138 /* 94 */ { SDL_SCANCODE_6, KMOD_SHIFT }, /* plus shift modifier '^' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
139 /* 95 */ { SDL_SCANCODE_MINUS, KMOD_SHIFT }, /* plus shift modifier '_' */ |
5137
c63b901d97ab
Fixed bug #1025 (iphone keyboard doesn't send 'return' and 'backspace' events)
Sam Lantinga <slouken@libsdl.org>
parents:
5136
diff
changeset
|
140 /* 96 */ { SDL_SCANCODE_GRAVE, KMOD_SHIFT }, /* '`' */ |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
141 /* 97 */ { SDL_SCANCODE_A, 0 }, |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
142 /* 98 */ { SDL_SCANCODE_B, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
143 /* 99 */ { SDL_SCANCODE_C, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
144 /* 100 */{ SDL_SCANCODE_D, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
145 /* 101 */{ SDL_SCANCODE_E, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
146 /* 102 */{ SDL_SCANCODE_F, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
147 /* 103 */{ SDL_SCANCODE_G, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
148 /* 104 */{ SDL_SCANCODE_H, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
149 /* 105 */{ SDL_SCANCODE_I, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
150 /* 106 */{ SDL_SCANCODE_J, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
151 /* 107 */{ SDL_SCANCODE_K, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
152 /* 108 */{ SDL_SCANCODE_L, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
153 /* 109 */{ SDL_SCANCODE_M, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
154 /* 110 */{ SDL_SCANCODE_N, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
155 /* 111 */{ SDL_SCANCODE_O, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
156 /* 112 */{ SDL_SCANCODE_P, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
157 /* 113 */{ SDL_SCANCODE_Q, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
158 /* 114 */{ SDL_SCANCODE_R, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
159 /* 115 */{ SDL_SCANCODE_S, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
160 /* 116 */{ SDL_SCANCODE_T, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
161 /* 117 */{ SDL_SCANCODE_U, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
162 /* 118 */{ SDL_SCANCODE_V, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
163 /* 119 */{ SDL_SCANCODE_W, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
164 /* 120 */{ SDL_SCANCODE_X, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
165 /* 121 */{ SDL_SCANCODE_Y, 0 }, |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
166 /* 122 */{ SDL_SCANCODE_Z, 0 }, |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
167 /* 123 */{ SDL_SCANCODE_LEFTBRACKET, KMOD_SHIFT }, /* plus shift modifier '{' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
168 /* 124 */{ SDL_SCANCODE_BACKSLASH, KMOD_SHIFT }, /* plus shift modifier '|' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
169 /* 125 */{ SDL_SCANCODE_RIGHTBRACKET, KMOD_SHIFT }, /* plus shift modifier '}' */ |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
170 /* 126 */{ SDL_SCANCODE_GRAVE, KMOD_SHIFT }, /* plus shift modifier '~' */ |
2765
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
171 /* 127 */{ SDL_SCANCODE_DELETE, KMOD_SHIFT } |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
172 /* *INDENT-ON* */ |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
173 }; |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
174 |
f55c87ae336b
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
175 #endif /* UIKitKeyInfo */ |
5136
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
176 |
b915b3181cc2
Fixed spacing, adding vim spacing hints
Sam Lantinga <slouken@libsdl.org>
parents:
5083
diff
changeset
|
177 /* vi: set ts=4 sw=4 expandtab: */ |