2 * \brief Header: color setup
4 * PLEASE FORGOT ABOUT tty/color.h!
5 * Use skin engine for getting needed color pairs.
7 * edit/syntax.c may use this file directly, I'm agree. :)
14 #include "lib/global.h" /* glib.h */
17 #include "color-slang.h"
19 #include "tty-ncurses.h"
22 /*** typedefs(not structures) and defined constants **********************************************/
24 #define ALLOC_COLOR_PAIR_INDEX 1
26 /*** enums ***************************************************************************************/
28 /*** structures declarations (and typedefs of structures)*****************************************/
30 /*** global variables defined in .c file *********************************************************/
32 /*** declarations of public functions ************************************************************/
34 void tty_init_colors (gboolean disable
, gboolean force
);
35 void tty_colors_done (void);
37 gboolean
tty_use_colors (void);
38 int tty_try_alloc_color_pair (const char *, const char *, const char *);
39 int tty_try_alloc_color_pair2 (const char *, const char *, const char *, gboolean
);
41 void tty_color_free_all_tmp (void);
42 void tty_color_free_all_non_tmp (void);
44 void tty_setcolor (int color
);
45 void tty_lowlevel_setcolor (int color
);
46 void tty_set_normal_attrs (void);
48 void tty_color_set_defaults (const char *, const char *, const char *);
50 extern gboolean
tty_use_256colors (void);
51 extern gboolean
tty_use_truecolors (GError
**);
53 /*** inline functions ****************************************************************************/
54 #endif /* MC_COLOR_H */