]> git.sesse.net Git - vlc/blob - include/vlc_keys.h
* modules/control/hotkeys.c, src/libvlc.h, include/vlc_keys.h: added hotkeys for...
[vlc] / include / vlc_keys.h
1 /*****************************************************************************
2  * hotkeys.h: keycode defines
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: vlc_keys.h,v 1.6 2003/10/30 17:58:07 gbazin Exp $
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
59 #define KEY_ASCII            0x0000007F
60 #define KEY_UNSET            0
61
62 typedef struct key_descriptor_s
63 {
64     char *psz_key_string;
65     int i_key_code;
66 } key_descriptor_t;
67
68 #define ADD_KEY(a) { a, *a }
69
70 static const struct key_descriptor_s modifiers[] =
71 {
72     { "Alt", KEY_MODIFIER_ALT },
73     { "Shift", KEY_MODIFIER_SHIFT },
74     { "Ctrl", KEY_MODIFIER_CTRL },
75     { "Meta", KEY_MODIFIER_META },
76     { "Command", KEY_MODIFIER_COMMAND }
77 };
78
79 static const struct key_descriptor_s keys[] =
80 {
81     { "Unset", KEY_UNSET },
82     { "Left", KEY_LEFT },
83     { "Right", KEY_RIGHT },
84     { "Up", KEY_UP },
85     { "Down", KEY_DOWN },
86     { "Space", KEY_SPACE },
87     { "Enter", KEY_ENTER },
88     { "F1", KEY_F1 },
89     { "F2", KEY_F2 },
90     { "F3", KEY_F3 },
91     { "F4", KEY_F4 },
92     { "F5", KEY_F5 },
93     { "F6", KEY_F6 },
94     { "F7", KEY_F7 },
95     { "F8", KEY_F8 },
96     { "F9", KEY_F9 },
97     { "F10", KEY_F10 },
98     { "F11", KEY_F11 },
99     { "F12", KEY_F12 },
100     { "Home", KEY_HOME },
101     { "End", KEY_END },
102     { "Menu", KEY_MENU },
103     { "Esc", KEY_ESC },
104     { "Page Up", KEY_PAGEUP },
105     { "Page Down", KEY_PAGEDOWN },
106     { "Tab", KEY_TAB },
107     { "Backspace", KEY_BACKSPACE },
108     { "a", 'a' },
109     { "b", 'b' },
110     { "c", 'c' },
111     { "d", 'd' },
112     { "e", 'e' },
113     { "f", 'f' },
114     { "g", 'g' },
115     { "h", 'h' },
116     { "i", 'i' },
117     { "j", 'j' },
118     { "k", 'k' },
119     { "l", 'l' },
120     { "m", 'm' },
121     { "n", 'n' },
122     { "o", 'o' },
123     { "p", 'p' },
124     { "q", 'q' },
125     { "r", 'r' },
126     { "s", 's' },
127     { "t", 't' },
128     { "u", 'u' },
129     { "v", 'v' },
130     { "w", 'w' },
131     { "x", 'x' },
132     { "y", 'y' },
133     { "z", 'z' },
134     { "+", '+' },
135     { "=", '=' },
136     { "-", '-' },
137     { ",", ',' },
138     { ".", '.' },
139     { "<", '<' },
140     { ">", '>' },
141     { "`", '`' },
142     { "/", '/' },
143     { ";", ';' },
144     { "'", '\'' },
145     { "\\", '\\' },
146     { "[", '[' },
147     { "]", ']' },
148     { "*", '*' }
149     
150 };
151
152 static inline char *KeyToString( int i_key )
153 {
154     unsigned int i = 0;
155     for ( i = 0; i < sizeof(keys) / sizeof(key_descriptor_t); i++ )
156     {
157         if ( keys[i].i_key_code == i_key )
158         {
159             return keys[i].psz_key_string;
160         }
161     }
162     return NULL;
163 }
164
165 #define ACTIONID_QUIT                  1
166 #define ACTIONID_PLAY_PAUSE            2
167 #define ACTIONID_PLAY                  3
168 #define ACTIONID_PAUSE                 4
169 #define ACTIONID_STOP                  5
170 #define ACTIONID_PREV                  6
171 #define ACTIONID_NEXT                  7
172 #define ACTIONID_SLOWER                8
173 #define ACTIONID_FASTER                9
174 #define ACTIONID_FULLSCREEN            10
175 #define ACTIONID_VOL_UP                11
176 #define ACTIONID_VOL_DOWN              12
177 #define ACTIONID_NAV_ACTIVATE          13
178 #define ACTIONID_NAV_UP                14
179 #define ACTIONID_NAV_DOWN              15
180 #define ACTIONID_NAV_LEFT              16
181 #define ACTIONID_NAV_RIGHT             17
182 #define ACTIONID_JUMP_BACKWARD_10SEC   18
183 #define ACTIONID_JUMP_FORWARD_10SEC    19
184 #define ACTIONID_JUMP_BACKWARD_1MIN    20
185 #define ACTIONID_JUMP_FORWARD_1MIN     21
186 #define ACTIONID_JUMP_BACKWARD_5MIN    22
187 #define ACTIONID_JUMP_FORWARD_5MIN     23