Mercurial > mplayer.hg
annotate osdep/keycodes.h @ 20247:60af7c3dbac7
escape - (bobdeint)
author | kraymer |
---|---|
date | Sun, 15 Oct 2006 18:41:44 +0000 |
parents | 3470c810527b |
children | 6ac1ece1f9fe |
rev | line source |
---|---|
1 | 1 /* KEY code definitions for GyS-TermIO v2.0 (C) 1999 A'rpi/ESP-team */ |
2 | |
3 #define KEY_ENTER 13 | |
4 #define KEY_TAB 9 | |
5 | |
6 #define KEY_BASE 0x100 | |
7 | |
8 /* Function keys */ | |
9 #define KEY_F (KEY_BASE+64) | |
10 | |
11 /* Control keys */ | |
12 #define KEY_CTRL (KEY_BASE) | |
13 #define KEY_BACKSPACE (KEY_CTRL+0) | |
14 #define KEY_DELETE (KEY_CTRL+1) | |
15 #define KEY_INSERT (KEY_CTRL+2) | |
16 #define KEY_HOME (KEY_CTRL+3) | |
17 #define KEY_END (KEY_CTRL+4) | |
18 #define KEY_PAGE_UP (KEY_CTRL+5) | |
19 #define KEY_PAGE_DOWN (KEY_CTRL+6) | |
20 #define KEY_ESC (KEY_CTRL+7) | |
21 | |
22 /* Control keys short name */ | |
23 #define KEY_BS KEY_BACKSPACE | |
24 #define KEY_DEL KEY_DELETE | |
25 #define KEY_INS KEY_INSERT | |
26 #define KEY_PGUP KEY_PAGE_UP | |
27 #define KEY_PGDOWN KEY_PAGE_DOWN | |
28 #define KEY_PGDWN KEY_PAGE_DOWN | |
29 | |
30 /* Cursor movement */ | |
31 #define KEY_CRSR (KEY_BASE+16) | |
32 #define KEY_RIGHT (KEY_CRSR+0) | |
33 #define KEY_LEFT (KEY_CRSR+1) | |
34 #define KEY_DOWN (KEY_CRSR+2) | |
35 #define KEY_UP (KEY_CRSR+3) | |
36 | |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
37 /* Multimedia keyboard/remote keys */ |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
38 #define KEY_MM_BASE (0x100+384) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
39 #define KEY_POWER (KEY_MM_BASE+0) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
40 #define KEY_MENU (KEY_MM_BASE+1) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
41 #define KEY_PLAY (KEY_MM_BASE+2) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
42 #define KEY_PAUSE (KEY_MM_BASE+3) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
43 #define KEY_PLAYPAUSE (KEY_MM_BASE+4) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
44 #define KEY_STOP (KEY_MM_BASE+5) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
45 #define KEY_FORWARD (KEY_MM_BASE+6) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
46 #define KEY_REWIND (KEY_MM_BASE+7) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
47 #define KEY_NEXT (KEY_MM_BASE+8) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
48 #define KEY_PREV (KEY_MM_BASE+9) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
49 #define KEY_VOLUME_UP (KEY_MM_BASE+10) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
50 #define KEY_VOLUME_DOWN (KEY_MM_BASE+11) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
51 #define KEY_MUTE (KEY_MM_BASE+12) |
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
|
52 |
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
|
53 /* 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
|
54 #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
|
55 #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
|
56 #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
|
57 #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
|
58 #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
|
59 #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
|
60 #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
|
61 #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
|
62 #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
|
63 #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
|
64 #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
|
65 #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
|
66 #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
|
67 #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
|
68 #define KEY_KPENTER (KEY_KEYPAD+13) |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
69 |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
70 /* Special keys */ |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
71 #define KEY_INTERN (0x1000) |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
9891
diff
changeset
|
72 #define KEY_CLOSE_WIN (KEY_INTERN+0) |