Mercurial > mplayer.hg
annotate osdep/keycodes.h @ 33787:42feff0f8a7b
Start all file dialogs always in last active directory.
This starts the "add subtitle" and "add external audio" dialogs
in the directory of the chosen or started movie.
Don't change the directory just to retrieve its name and prepend
the active directory instead of appending it.
This closes Bugzilla #977.
author | ib |
---|---|
date | Mon, 11 Jul 2011 14:54:25 +0000 |
parents | 0f1b5b68af32 |
children | f1262a8c4958 |
rev | line source |
---|---|
28744 | 1 /* |
2 * KEY code definitions for GyS-TermIO v2.0 | |
3 * | |
4 * copyright (C) 1999 A'rpi/ESP-team | |
5 * | |
6 * This file is part of MPlayer. | |
7 * | |
8 * MPlayer is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * MPlayer is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License along | |
19 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
21 */ | |
1 | 22 |
26029 | 23 #ifndef MPLAYER_KEYCODES_H |
24 #define MPLAYER_KEYCODES_H | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
16892
diff
changeset
|
25 |
1 | 26 #define KEY_ENTER 13 |
27 #define KEY_TAB 9 | |
28 | |
29 #define KEY_BASE 0x100 | |
30 | |
31 /* Function keys */ | |
32 #define KEY_F (KEY_BASE+64) | |
33 | |
34 /* Control keys */ | |
35 #define KEY_CTRL (KEY_BASE) | |
36 #define KEY_BACKSPACE (KEY_CTRL+0) | |
37 #define KEY_DELETE (KEY_CTRL+1) | |
38 #define KEY_INSERT (KEY_CTRL+2) | |
39 #define KEY_HOME (KEY_CTRL+3) | |
40 #define KEY_END (KEY_CTRL+4) | |
41 #define KEY_PAGE_UP (KEY_CTRL+5) | |
42 #define KEY_PAGE_DOWN (KEY_CTRL+6) | |
43 #define KEY_ESC (KEY_CTRL+7) | |
44 | |
45 /* Control keys short name */ | |
46 #define KEY_BS KEY_BACKSPACE | |
47 #define KEY_DEL KEY_DELETE | |
48 #define KEY_INS KEY_INSERT | |
49 #define KEY_PGUP KEY_PAGE_UP | |
50 #define KEY_PGDOWN KEY_PAGE_DOWN | |
51 #define KEY_PGDWN KEY_PAGE_DOWN | |
52 | |
53 /* Cursor movement */ | |
54 #define KEY_CRSR (KEY_BASE+16) | |
55 #define KEY_RIGHT (KEY_CRSR+0) | |
56 #define KEY_LEFT (KEY_CRSR+1) | |
57 #define KEY_DOWN (KEY_CRSR+2) | |
58 #define KEY_UP (KEY_CRSR+3) | |
59 | |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
60 /* Multimedia keyboard/remote keys */ |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
61 #define KEY_MM_BASE (0x100+384) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
62 #define KEY_POWER (KEY_MM_BASE+0) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
63 #define KEY_MENU (KEY_MM_BASE+1) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
64 #define KEY_PLAY (KEY_MM_BASE+2) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
65 #define KEY_PAUSE (KEY_MM_BASE+3) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
66 #define KEY_PLAYPAUSE (KEY_MM_BASE+4) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
67 #define KEY_STOP (KEY_MM_BASE+5) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
68 #define KEY_FORWARD (KEY_MM_BASE+6) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
69 #define KEY_REWIND (KEY_MM_BASE+7) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
70 #define KEY_NEXT (KEY_MM_BASE+8) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
71 #define KEY_PREV (KEY_MM_BASE+9) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
72 #define KEY_VOLUME_UP (KEY_MM_BASE+10) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
73 #define KEY_VOLUME_DOWN (KEY_MM_BASE+11) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
74 #define KEY_MUTE (KEY_MM_BASE+12) |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28744
diff
changeset
|
75 |
9891
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
76 /* Keypad keys */ |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
77 #define KEY_KEYPAD (KEY_BASE+32) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
78 #define KEY_KP0 (KEY_KEYPAD+0) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
79 #define KEY_KP1 (KEY_KEYPAD+1) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
80 #define KEY_KP2 (KEY_KEYPAD+2) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
81 #define KEY_KP3 (KEY_KEYPAD+3) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
82 #define KEY_KP4 (KEY_KEYPAD+4) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
83 #define KEY_KP5 (KEY_KEYPAD+5) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
84 #define KEY_KP6 (KEY_KEYPAD+6) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
85 #define KEY_KP7 (KEY_KEYPAD+7) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
86 #define KEY_KP8 (KEY_KEYPAD+8) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
87 #define KEY_KP9 (KEY_KEYPAD+9) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
88 #define KEY_KPDEC (KEY_KEYPAD+10) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
89 #define KEY_KPINS (KEY_KEYPAD+11) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
90 #define KEY_KPDEL (KEY_KEYPAD+12) |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
9822
diff
changeset
|
91 #define KEY_KPENTER (KEY_KEYPAD+13) |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
92 |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
93 /* Special keys */ |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
94 #define KEY_INTERN (0x1000) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
95 #define KEY_CLOSE_WIN (KEY_INTERN+0) |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
16892
diff
changeset
|
96 |
26029 | 97 #endif /* MPLAYER_KEYCODES_H */ |