]> git.sesse.net Git - vlc/blob - include/vlc_keys.h
const rulez
[vlc] / include / vlc_keys.h
1 /*****************************************************************************
2  * vlc_keys.h: keycode defines
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #define KEY_MODIFIER         0xFF000000
25 #define KEY_MODIFIER_ALT     0x01000000
26 #define KEY_MODIFIER_SHIFT   0x02000000
27 #define KEY_MODIFIER_CTRL    0x04000000
28 #define KEY_MODIFIER_META    0x08000000
29 #define KEY_MODIFIER_COMMAND 0x10000000
30
31 #define KEY_SPECIAL          0x00FF0000
32 #define KEY_LEFT             0x00010000
33 #define KEY_RIGHT            0x00020000
34 #define KEY_UP               0x00030000
35 #define KEY_DOWN             0x00040000
36 #define KEY_SPACE            0x00050000
37 #define KEY_ENTER            0x00060000
38 #define KEY_F1               0x00070000
39 #define KEY_F2               0x00080000
40 #define KEY_F3               0x00090000
41 #define KEY_F4               0x000A0000
42 #define KEY_F5               0x000B0000
43 #define KEY_F6               0x000C0000
44 #define KEY_F7               0x000D0000
45 #define KEY_F8               0x000E0000
46 #define KEY_F9               0x000F0000
47 #define KEY_F10              0x00100000
48 #define KEY_F11              0x00110000
49 #define KEY_F12              0x00120000
50 #define KEY_HOME             0x00130000
51 #define KEY_END              0x00140000
52 #define KEY_INSERT           0x00150000
53 #define KEY_DELETE           0x00160000
54 #define KEY_MENU             0x00170000
55 #define KEY_ESC              0x00180000
56 #define KEY_PAGEUP           0x00190000
57 #define KEY_PAGEDOWN         0x001A0000
58 #define KEY_TAB              0x001B0000
59 #define KEY_BACKSPACE        0x001C0000
60 #define KEY_MOUSEWHEELUP     0x001D0000
61 #define KEY_MOUSEWHEELDOWN   0x001E0000
62
63 /* TODO:
64  * The media keys are only used in win32. Support for other OSes needs to
65  * be added */
66 #define KEY_BROWSER_BACK     0x001F0000
67 #define KEY_BROWSER_FORWARD  0x00200000
68 #define KEY_BROWSER_REFRESH  0x00210000
69 #define KEY_BROWSER_STOP     0x00220000
70 #define KEY_BROWSER_SEARCH   0x00230000
71 #define KEY_BROWSER_FAVORITES 0x00240000
72 #define KEY_BROWSER_HOME     0x00250000
73 #define KEY_VOLUME_MUTE      0x00260000
74 #define KEY_VOLUME_DOWN      0x00270000
75 #define KEY_VOLUME_UP        0x00280000
76 #define KEY_MEDIA_NEXT_TRACK 0x00290000
77 #define KEY_MEDIA_PREV_TRACK 0x002a0000
78 #define KEY_MEDIA_STOP       0x002b0000
79 #define KEY_MEDIA_PLAY_PAUSE 0x002c0000
80
81 #define KEY_ASCII            0x0000007F
82 #define KEY_UNSET            0
83
84 typedef struct key_descriptor_s
85 {
86     const char *psz_key_string;
87     int i_key_code;
88 } key_descriptor_t;
89
90 #define ADD_KEY(a) { a, *a }
91
92 static const struct key_descriptor_s vlc_modifiers[] =
93 {
94     { "Alt", KEY_MODIFIER_ALT },
95     { "Shift", KEY_MODIFIER_SHIFT },
96     { "Ctrl", KEY_MODIFIER_CTRL },
97     { "Meta", KEY_MODIFIER_META },
98     { "Command", KEY_MODIFIER_COMMAND }
99 };
100
101 static const struct key_descriptor_s vlc_keys[] =
102 {
103     { "Unset", KEY_UNSET },
104     { "Left", KEY_LEFT },
105     { "Right", KEY_RIGHT },
106     { "Up", KEY_UP },
107     { "Down", KEY_DOWN },
108     { "Space", KEY_SPACE },
109     { "Enter", KEY_ENTER },
110     { "F1", KEY_F1 },
111     { "F2", KEY_F2 },
112     { "F3", KEY_F3 },
113     { "F4", KEY_F4 },
114     { "F5", KEY_F5 },
115     { "F6", KEY_F6 },
116     { "F7", KEY_F7 },
117     { "F8", KEY_F8 },
118     { "F9", KEY_F9 },
119     { "F10", KEY_F10 },
120     { "F11", KEY_F11 },
121     { "F12", KEY_F12 },
122     { "Home", KEY_HOME },
123     { "End", KEY_END },
124     { "Insert", KEY_INSERT },
125     { "Delete", KEY_DELETE },
126     { "Menu", KEY_MENU },
127     { "Esc", KEY_ESC },
128     { "Page Up", KEY_PAGEUP },
129     { "Page Down", KEY_PAGEDOWN },
130     { "Tab", KEY_TAB },
131     { "Backspace", KEY_BACKSPACE },
132     { "Mouse Wheel Up", KEY_MOUSEWHEELUP },
133     { "Mouse Wheel Down", KEY_MOUSEWHEELDOWN },
134     { "a", 'a' },
135     { "b", 'b' },
136     { "c", 'c' },
137     { "d", 'd' },
138     { "e", 'e' },
139     { "f", 'f' },
140     { "g", 'g' },
141     { "h", 'h' },
142     { "i", 'i' },
143     { "j", 'j' },
144     { "k", 'k' },
145     { "l", 'l' },
146     { "m", 'm' },
147     { "n", 'n' },
148     { "o", 'o' },
149     { "p", 'p' },
150     { "q", 'q' },
151     { "r", 'r' },
152     { "s", 's' },
153     { "t", 't' },
154     { "u", 'u' },
155     { "v", 'v' },
156     { "w", 'w' },
157     { "x", 'x' },
158     { "y", 'y' },
159     { "z", 'z' },
160     { "+", '+' },
161     { "=", '=' },
162     { "-", '-' },
163     { ",", ',' },
164     { ".", '.' },
165     { "<", '<' },
166     { ">", '>' },
167     { "`", '`' },
168     { "/", '/' },
169     { ";", ';' },
170     { "'", '\'' },
171     { "\\", '\\' },
172     { "[", '[' },
173     { "]", ']' },
174     { "*", '*' },
175     { "Browser Back", KEY_BROWSER_BACK },
176     { "Browser Forward", KEY_BROWSER_FORWARD },
177     { "Browser Refresh", KEY_BROWSER_REFRESH },
178     { "Browser Stop", KEY_BROWSER_STOP },
179     { "Browser Search", KEY_BROWSER_SEARCH },
180     { "Browser Favorites", KEY_BROWSER_FAVORITES },
181     { "Browser Home", KEY_BROWSER_HOME },
182     { "Volume Mute", KEY_VOLUME_MUTE },
183     { "Volume Down", KEY_VOLUME_DOWN },
184     { "Volume Up", KEY_VOLUME_UP },
185     { "Media Next Track", KEY_MEDIA_NEXT_TRACK },
186     { "Media Prev Track", KEY_MEDIA_PREV_TRACK },
187     { "Media Stop", KEY_MEDIA_STOP },
188     { "Media Play Pause", KEY_MEDIA_PLAY_PAUSE }
189 };
190
191 static inline const char *KeyToString( int i_key )
192 {
193     unsigned int i = 0;
194     for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++ )
195     {
196         if ( vlc_keys[i].i_key_code == i_key )
197         {
198             return vlc_keys[i].psz_key_string;
199         }
200     }
201     return NULL;
202 }
203
204 static inline int StringToKey( char *psz_key )
205 {
206     unsigned int i = 0;
207     for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++ )
208     {
209         if ( !strcmp( vlc_keys[i].psz_key_string, psz_key ))
210         {
211             return vlc_keys[i].i_key_code;
212         }
213     }
214     return 0;
215 }
216
217
218 #define ACTIONID_QUIT                  1
219 #define ACTIONID_PLAY_PAUSE            2
220 #define ACTIONID_PLAY                  3
221 #define ACTIONID_PAUSE                 4
222 #define ACTIONID_STOP                  5
223 #define ACTIONID_PREV                  6
224 #define ACTIONID_NEXT                  7
225 #define ACTIONID_SLOWER                8
226 #define ACTIONID_FASTER                9
227 #define ACTIONID_FULLSCREEN            10
228 #define ACTIONID_VOL_UP                11
229 #define ACTIONID_VOL_DOWN              12
230 #define ACTIONID_NAV_ACTIVATE          13
231 #define ACTIONID_NAV_UP                14
232 #define ACTIONID_NAV_DOWN              15
233 #define ACTIONID_NAV_LEFT              16
234 #define ACTIONID_NAV_RIGHT             17
235 #define ACTIONID_JUMP_BACKWARD_EXTRASHORT 18
236 #define ACTIONID_JUMP_FORWARD_EXTRASHORT  19
237 #define ACTIONID_JUMP_BACKWARD_SHORT   20
238 #define ACTIONID_JUMP_FORWARD_SHORT    21
239 #define ACTIONID_JUMP_BACKWARD_MEDIUM  22
240 #define ACTIONID_JUMP_FORWARD_MEDIUM   23
241 #define ACTIONID_JUMP_BACKWARD_LONG    24
242 #define ACTIONID_JUMP_FORWARD_LONG     25
243 #define ACTIONID_POSITION              26
244 #define ACTIONID_VOL_MUTE              27
245 /* let ACTIONID_SET_BOOMARK* and ACTIONID_PLAY_BOOKMARK* be contiguous */
246 #define ACTIONID_SET_BOOKMARK1         28
247 #define ACTIONID_SET_BOOKMARK2         29
248 #define ACTIONID_SET_BOOKMARK3         39
249 #define ACTIONID_SET_BOOKMARK4         31
250 #define ACTIONID_SET_BOOKMARK5         32
251 #define ACTIONID_SET_BOOKMARK6         33
252 #define ACTIONID_SET_BOOKMARK7         34
253 #define ACTIONID_SET_BOOKMARK8         35
254 #define ACTIONID_SET_BOOKMARK9         36
255 #define ACTIONID_SET_BOOKMARK10        37
256 #define ACTIONID_PLAY_BOOKMARK1        38
257 #define ACTIONID_PLAY_BOOKMARK2        39
258 #define ACTIONID_PLAY_BOOKMARK3        40
259 #define ACTIONID_PLAY_BOOKMARK4        41
260 #define ACTIONID_PLAY_BOOKMARK5        42
261 #define ACTIONID_PLAY_BOOKMARK6        43
262 #define ACTIONID_PLAY_BOOKMARK7        44
263 #define ACTIONID_PLAY_BOOKMARK8        45
264 #define ACTIONID_PLAY_BOOKMARK9        46
265 #define ACTIONID_PLAY_BOOKMARK10       47
266 /* end of contiguous zone */
267 #define ACTIONID_SUBDELAY_UP           48
268 #define ACTIONID_SUBDELAY_DOWN         49
269 #define ACTIONID_HISTORY_BACK          50
270 #define ACTIONID_HISTORY_FORWARD       51
271 #define ACTIONID_AUDIO_TRACK           52
272 #define ACTIONID_SUBTITLE_TRACK        53
273 #define ACTIONID_CUBESPEED_UP          54
274 #define ACTIONID_CUBESPEED_DOWN        55
275 #define ACTIONID_INTF_SHOW             56
276 #define ACTIONID_INTF_HIDE             57
277 /* chapter and title navigation */
278 #define ACTIONID_TITLE_PREV            58
279 #define ACTIONID_TITLE_NEXT            59
280 #define ACTIONID_CHAPTER_PREV          60
281 #define ACTIONID_CHAPTER_NEXT          61
282 /* end of chapter and title navigation */
283 #define ACTIONID_AUDIODELAY_UP         62
284 #define ACTIONID_AUDIODELAY_DOWN       63
285 #define ACTIONID_SNAPSHOT              64
286 #define ACTIONID_RECORD                65
287 #define ACTIONID_DISC_MENU             66
288 #define ACTIONID_ASPECT_RATIO          67
289 #define ACTIONID_CROP                  68
290 #define ACTIONID_DEINTERLACE           69
291 #define ACTIONID_ZOOM                  70
292 #define ACTIONID_UNZOOM                71
293 #define ACTIONID_CROP_TOP              72
294 #define ACTIONID_UNCROP_TOP            73
295 #define ACTIONID_CROP_LEFT             74
296 #define ACTIONID_UNCROP_LEFT           75
297 #define ACTIONID_CROP_BOTTOM           76
298 #define ACTIONID_UNCROP_BOTTOM         77
299 #define ACTIONID_CROP_RIGHT            78
300 #define ACTIONID_UNCROP_RIGHT          79