Mercurial > mplayer.hg
annotate libvo/wskeys.h @ 10605:3136605e6cab
1000l
author | alex |
---|---|
date | Thu, 14 Aug 2003 01:25:42 +0000 |
parents | 150d1ef4204d |
children | 51bc09f2977c |
rev | line source |
---|---|
1 | 1 |
2 #ifndef _MY_WSKEY | |
3 #define _MY_WSKEY | |
4 | |
5 #define wsosbrackets '[' | |
6 #define wscsbrackets ']' | |
7 | |
8 #define wsq 'q' | |
9 #define wsa 'a' | |
10 #define wsz 'z' | |
11 #define wsw 'w' | |
12 #define wss 's' | |
13 #define wsx 'x' | |
14 #define wse 'e' | |
15 #define wsd 'd' | |
16 #define wsr 'r' | |
17 #define wsf 'f' | |
18 #define wsv 'v' | |
19 #define wst 't' | |
20 #define wsg 'g' | |
21 #define wsb 'b' | |
22 #define wsy 'y' | |
23 #define wsh 'h' | |
24 #define wsn 'n' | |
25 #define wsu 'u' | |
26 #define wsj 'j' | |
27 #define wsm 'm' | |
28 #define wsi 'i' | |
29 #define wsk 'k' | |
30 #define wso 'o' | |
31 #define wsl 'l' | |
32 #define wsp 'p' | |
33 | |
34 #define wsQ 'Q' | |
35 #define wsA 'A' | |
36 #define wsZ 'Z' | |
37 #define wsW 'W' | |
38 #define wsS 'S' | |
39 #define wsX 'X' | |
40 #define wsE 'E' | |
41 #define wsD 'D' | |
42 #define wsR 'R' | |
43 #define wsF 'F' | |
44 #define wsV 'V' | |
45 #define wsT 'T' | |
46 #define wsG 'G' | |
47 #define wsB 'B' | |
48 #define wsY 'Y' | |
49 #define wsH 'H' | |
50 #define wsN 'N' | |
51 #define wsU 'U' | |
52 #define wsJ 'J' | |
53 #define wsM 'M' | |
54 #define wsI 'I' | |
55 #define wsK 'K' | |
56 #define wsO 'O' | |
57 #define wsL 'L' | |
58 #define wsP 'P' | |
59 | |
60 #define wsSpace ' ' | |
61 #define wsMinus '-' | |
62 #define wsPlus '+' | |
453 | 63 #define wsMul '*' |
64 #define wsDiv '/' | |
3490 | 65 #define wsLess '<' |
66 #define wsMore '>' | |
1 | 67 |
68 #define wsUp 0x52 + 256 | |
69 #define wsDown 0x54 + 256 | |
70 #define wsLeft 0x51 + 256 | |
71 #define wsRight 0x53 + 256 | |
72 #define wsLeftCtrl 0xe3 + 256 | |
73 #define wsRightCtrl 0xe4 + 256 | |
74 #define wsLeftAlt 0xe9 + 256 | |
75 #define wsRightAlt 0x7e + 256 | |
76 #define wsLeftShift 0xe1 + 256 | |
77 #define wsRightShift 0xe2 + 256 | |
78 #define wsEnter 0x0d + 256 | |
79 #define wsBackSpace 0x08 + 256 | |
80 #define wsCapsLock 0xe5 + 256 | |
81 #define wsTab 0x09 + 256 | |
82 #define wsF1 0xbe + 256 | |
83 #define wsF2 0xbf + 256 | |
84 #define wsF3 0xc0 + 256 | |
85 #define wsF4 0xc1 + 256 | |
86 #define wsF5 0xc2 + 256 | |
87 #define wsF6 0xc3 + 256 | |
88 #define wsF7 0xc4 + 256 | |
89 #define wsF8 0xc5 + 256 | |
90 #define wsF9 0xc6 + 256 | |
91 #define wsF10 0xc7 + 256 | |
92 #define wsInsert 0x63 + 256 | |
93 #define wsDelete 0xff + 256 | |
94 #define wsHome 0x50 + 256 | |
95 #define wsEnd 0x57 + 256 | |
96 #define wsPageUp 0x55 + 256 | |
97 #define wsPageDown 0x56 + 256 | |
98 #define wsNumLock 0x7f + 256 | |
99 #define wsEscape 0x1b + 256 | |
100 #define wsGrayEnter 0x8d + 256 | |
101 #define wsGrayPlus 0xab + 256 | |
102 #define wsGrayMinus 0xad + 256 | |
103 #define wsGrayMul 0xaa + 256 | |
104 #define wsGrayDiv 0xaf + 256 | |
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:
3490
diff
changeset
|
105 #define wsGrayDecimal 0xae + 256 |
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:
3490
diff
changeset
|
106 #define wsGray0 0xb0 + 256 |
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:
3490
diff
changeset
|
107 #define wsGray1 0xb1 + 256 |
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:
3490
diff
changeset
|
108 #define wsGray2 0xb2 + 256 |
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:
3490
diff
changeset
|
109 #define wsGray3 0xb3 + 256 |
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:
3490
diff
changeset
|
110 #define wsGray4 0xb4 + 256 |
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:
3490
diff
changeset
|
111 #define wsGray5 0xb5 + 256 |
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:
3490
diff
changeset
|
112 #define wsGray6 0xb6 + 256 |
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:
3490
diff
changeset
|
113 #define wsGray7 0xb7 + 256 |
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:
3490
diff
changeset
|
114 #define wsGray8 0xb8 + 256 |
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:
3490
diff
changeset
|
115 #define wsGray9 0xb9 + 256 |
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:
3490
diff
changeset
|
116 #define wsGrayHome 0x95 + 256 |
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:
3490
diff
changeset
|
117 #define wsGrayLeft 0x96 + 256 |
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:
3490
diff
changeset
|
118 #define wsGrayUp 0x97 + 256 |
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:
3490
diff
changeset
|
119 #define wsGrayRight 0x98 + 256 |
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:
3490
diff
changeset
|
120 #define wsGrayDown 0x99 + 256 |
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:
3490
diff
changeset
|
121 #define wsGrayPgUp 0x9a + 256 |
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:
3490
diff
changeset
|
122 #define wsGrayPgDn 0x9b + 256 |
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:
3490
diff
changeset
|
123 #define wsGrayEnd 0x9c + 256 |
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:
3490
diff
changeset
|
124 #define wsGray5Dup 0x9d + 256 |
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:
3490
diff
changeset
|
125 #define wsGrayInsert 0x9e + 256 |
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:
3490
diff
changeset
|
126 #define wsGrayDelete 0x9f + 256 |
1 | 127 |
128 #endif | |
129 |