1
2
3
4
5
6
7
8
9
10
11 #ifndef MC__COLOR_H
12 #define MC__COLOR_H
13
14 #include "lib/global.h"
15
16 #ifdef HAVE_SLANG
17 #include "color-slang.h"
18 #else
19 #include "tty-ncurses.h"
20 #endif
21
22
23
24 typedef struct
25 {
26 char *fg;
27 char *bg;
28 char *attrs;
29 size_t pair_index;
30 } tty_color_pair_t;
31
32
33
34
35
36
37
38
39
40 void tty_init_colors (gboolean disable, gboolean force);
41 void tty_colors_done (void);
42
43 gboolean tty_use_colors (void);
44 int tty_try_alloc_color_pair (const tty_color_pair_t * color, gboolean is_temp);
45
46 void tty_color_free_temp (void);
47 void tty_color_free_all (void);
48
49 void tty_setcolor (int color);
50 void tty_lowlevel_setcolor (int color);
51 void tty_set_normal_attrs (void);
52
53 void tty_color_set_defaults (const tty_color_pair_t * color);
54
55 extern gboolean tty_use_256colors (GError ** error);
56 extern gboolean tty_use_truecolors (GError ** error);
57
58
59
60 #endif