]> git.sesse.net Git - vlc/blob - include/vlc_keys.h
- modules/control/showintf.c: new control module, able to show the
[vlc] / include / vlc_keys.h
1 /*****************************************************************************
2  * hotkeys.h: keycode defines
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
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., 59 Temple Place - Suite 330, Boston, MA  02111, 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_MENU             0x00150000
53 #define KEY_ESC              0x00160000
54 #define KEY_PAGEUP           0x00170000
55 #define KEY_PAGEDOWN         0x00180000
56 #define KEY_TAB              0x00190000
57 #define KEY_BACKSPACE        0x001A0000
58 #define KEY_MOUSEWHEELUP     0x001B0000
59 #define KEY_MOUSEWHEELDOWN   0x001C0000
60
61 #define KEY_ASCII            0x0000007F
62 #define KEY_UNSET            0
63
64 typedef struct key_descriptor_s
65 {
66     char *psz_key_string;
67     int i_key_code;
68 } key_descriptor_t;
69
70 #define ADD_KEY(a) { a, *a }
71
72 static const struct key_descriptor_s vlc_modifiers[] =
73 {
74     { "Alt", KEY_MODIFIER_ALT },
75     { "Shift", KEY_MODIFIER_SHIFT },
76     { "Ctrl", KEY_MODIFIER_CTRL },
77     { "Meta", KEY_MODIFIER_META },
78     { "Command", KEY_MODIFIER_COMMAND }
79 };
80
81 static const struct key_descriptor_s vlc_keys[] =
82 {
83     { "Unset", KEY_UNSET },
84     { "Left", KEY_LEFT },
85     { "Right", KEY_RIGHT },
86     { "Up", KEY_UP },
87     { "Down", KEY_DOWN },
88     { "Space", KEY_SPACE },
89     { "Enter", KEY_ENTER },
90     { "F1", KEY_F1 },
91     { "F2", KEY_F2 },
92     { "F3", KEY_F3 },
93     { "F4", KEY_F4 },
94     { "F5", KEY_F5 },
95     { "F6", KEY_F6 },
96     { "F7", KEY_F7 },
97     { "F8", KEY_F8 },
98     { "F9", KEY_F9 },
99     { "F10", KEY_F10 },
100     { "F11", KEY_F11 },
101     { "F12", KEY_F12 },
102     { "Home", KEY_HOME },
103     { "End", KEY_END },
104     { "Menu", KEY_MENU },
105     { "Esc", KEY_ESC },
106     { "Page Up", KEY_PAGEUP },
107     { "Page Down", KEY_PAGEDOWN },
108     { "Tab", KEY_TAB },
109     { "Backspace", KEY_BACKSPACE },
110     { "Mouse Wheel Up", KEY_MOUSEWHEELUP },
111     { "Mouse Wheel Down", KEY_MOUSEWHEELDOWN },
112     { "a", 'a' },
113     { "b", 'b' },
114     { "c", 'c' },
115     { "d", 'd' },
116     { "e", 'e' },
117     { "f", 'f' },
118     { "g", 'g' },
119     { "h", 'h' },
120     { "i", 'i' },
121     { "j", 'j' },
122     { "k", 'k' },
123     { "l", 'l' },
124     { "m", 'm' },
125     { "n", 'n' },
126     { "o", 'o' },
127     { "p", 'p' },
128     { "q", 'q' },
129     { "r", 'r' },
130     { "s", 's' },
131     { "t", 't' },
132     { "u", 'u' },
133     { "v", 'v' },
134     { "w", 'w' },
135     { "x", 'x' },
136     { "y", 'y' },
137     { "z", 'z' },
138     { "+", '+' },
139     { "=", '=' },
140     { "-", '-' },
141     { ",", ',' },
142     { ".", '.' },
143     { "<", '<' },
144     { ">", '>' },
145     { "`", '`' },
146     { "/", '/' },
147     { ";", ';' },
148     { "'", '\'' },
149     { "\\", '\\' },
150     { "[", '[' },
151     { "]", ']' },
152     { "*", '*' }
153 };
154
155 static inline char *KeyToString( int i_key )
156 {
157     unsigned int i = 0;
158     for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++ )
159     {
160         if ( vlc_keys[i].i_key_code == i_key )
161         {
162             return vlc_keys[i].psz_key_string;
163         }
164     }
165     return NULL;
166 }
167
168 static inline int StringToKey( char *psz_key )
169 {
170     unsigned int i = 0;
171     for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++ )
172     {
173         if ( !strcmp( vlc_keys[i].psz_key_string, psz_key ))
174         {
175             return vlc_keys[i].i_key_code;
176         }
177     }
178     return 0;
179 }
180
181
182 #define ACTIONID_QUIT                  1
183 #define ACTIONID_PLAY_PAUSE            2
184 #define ACTIONID_PLAY                  3
185 #define ACTIONID_PAUSE                 4
186 #define ACTIONID_STOP                  5
187 #define ACTIONID_PREV                  6
188 #define ACTIONID_NEXT                  7
189 #define ACTIONID_SLOWER                8
190 #define ACTIONID_FASTER                9
191 #define ACTIONID_FULLSCREEN            10
192 #define ACTIONID_VOL_UP                11
193 #define ACTIONID_VOL_DOWN              12
194 #define ACTIONID_NAV_ACTIVATE          13
195 #define ACTIONID_NAV_UP                14
196 #define ACTIONID_NAV_DOWN              15
197 #define ACTIONID_NAV_LEFT              16
198 #define ACTIONID_NAV_RIGHT             17
199 #define ACTIONID_JUMP_BACKWARD_10SEC   18
200 #define ACTIONID_JUMP_FORWARD_10SEC    19
201 #define ACTIONID_JUMP_BACKWARD_1MIN    20
202 #define ACTIONID_JUMP_FORWARD_1MIN     21
203 #define ACTIONID_JUMP_BACKWARD_5MIN    22
204 #define ACTIONID_JUMP_FORWARD_5MIN     23
205 #define ACTIONID_POSITION              24
206 #define ACTIONID_VOL_MUTE              25
207 /* let ACTIONID_SET_BOOMARK* and ACTIONID_PLAY_BOOKMARK* be contiguous */
208 #define ACTIONID_SET_BOOKMARK1         26
209 #define ACTIONID_SET_BOOKMARK2         27
210 #define ACTIONID_SET_BOOKMARK3         28
211 #define ACTIONID_SET_BOOKMARK4         29
212 #define ACTIONID_SET_BOOKMARK5         30
213 #define ACTIONID_SET_BOOKMARK6         31
214 #define ACTIONID_SET_BOOKMARK7         32
215 #define ACTIONID_SET_BOOKMARK8         33
216 #define ACTIONID_SET_BOOKMARK9         34
217 #define ACTIONID_SET_BOOKMARK10        35
218 #define ACTIONID_PLAY_BOOKMARK1        36
219 #define ACTIONID_PLAY_BOOKMARK2        37
220 #define ACTIONID_PLAY_BOOKMARK3        38
221 #define ACTIONID_PLAY_BOOKMARK4        39
222 #define ACTIONID_PLAY_BOOKMARK5        40
223 #define ACTIONID_PLAY_BOOKMARK6        41
224 #define ACTIONID_PLAY_BOOKMARK7        42
225 #define ACTIONID_PLAY_BOOKMARK8        43
226 #define ACTIONID_PLAY_BOOKMARK9        44
227 #define ACTIONID_PLAY_BOOKMARK10       45
228 /* end of contiguous zone */
229 #define ACTIONID_SUBDELAY_UP           46
230 #define ACTIONID_SUBDELAY_DOWN         47
231 #define ACTIONID_HISTORY_BACK          48
232 #define ACTIONID_HISTORY_FORWARD       49
233 #define ACTIONID_AUDIO_TRACK           50
234 #define ACTIONID_SUBTITLE_TRACK        51
235 #define ACTIONID_INTF_SHOW             52
236