Code indentation.
[midnight-commander.git] / lib / tty / color.h
blob00ce6714d7e04da94e42275fab8cf8dbaa3781b6
1 /** \file color.h
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. :)
9 */
11 #ifndef MC__COLOR_H
12 #define MC__COLOR_H
14 #include "lib/global.h" /* glib.h */
16 #ifdef HAVE_SLANG
17 #include "color-slang.h"
18 #else
19 #include "tty-ncurses.h"
20 #endif
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);
52 /*** inline functions ****************************************************************************/
53 #endif /* MC_COLOR_H */