Updated doc/NEWS file
[midnight-commander.git] / lib / tty / tty-slang.h
blob620fd6b85f7c659dd1fb2d3dec1f420e1c3b41b7
2 #ifndef MC__TTY_SLANG_H
3 #define MC__TTY_SLANG_H
5 #ifdef HAVE_SLANG_SLANG_H
6 #include <slang/slang.h>
7 #else
8 #include <slang.h>
9 #endif /* HAVE_SLANG_SLANG_H */
11 /*** typedefs(not structures) and defined constants **********************************************/
13 #define KEY_F(x) (1000 + x)
15 #define ACS_VLINE SLSMG_VLINE_CHAR
16 #define ACS_HLINE SLSMG_HLINE_CHAR
17 #define ACS_LTEE SLSMG_LTEE_CHAR
18 #define ACS_RTEE SLSMG_RTEE_CHAR
19 #define ACS_ULCORNER SLSMG_ULCORN_CHAR
20 #define ACS_LLCORNER SLSMG_LLCORN_CHAR
21 #define ACS_URCORNER SLSMG_URCORN_CHAR
22 #define ACS_LRCORNER SLSMG_LRCORN_CHAR
23 #define ACS_PLUS SLSMG_PLUS_CHAR
25 #define COLS SLtt_Screen_Cols
26 #define LINES SLtt_Screen_Rows
28 /*** enums ***************************************************************************************/
30 enum
32 KEY_BACKSPACE = 400,
33 KEY_END, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT,
34 KEY_HOME, KEY_A1, KEY_C1, KEY_NPAGE, KEY_PPAGE, KEY_IC,
35 KEY_ENTER, KEY_DC, KEY_SCANCEL, KEY_BTAB
38 /*** structures declarations (and typedefs of structures)*****************************************/
40 /*** global variables defined in .c file *********************************************************/
42 /*** declarations of public functions ************************************************************/
44 /*** inline functions ****************************************************************************/
46 #endif /* MC_TTY_SLANG_H */