color.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /** \file color.h
  2. * \brief Header: color setup
  3. *
  4. * PLEASE FORGOT ABOUT tty/color.h!
  5. * Use skin engine for getting needed color pairs.
  6. *
  7. * edit/syntax.c may use this file directly, I'm agree. :)
  8. *
  9. */
  10. #ifndef MC__COLOR_H
  11. #define MC__COLOR_H
  12. #include "lib/global.h" /* glib.h */
  13. #ifdef HAVE_SLANG
  14. #include "color-slang.h"
  15. #else
  16. #include "tty-ncurses.h"
  17. #endif
  18. /*** typedefs(not structures) and defined constants **********************************************/
  19. #define ALLOC_COLOR_PAIR_INDEX 1
  20. /*** enums ***************************************************************************************/
  21. /*** structures declarations (and typedefs of structures)*****************************************/
  22. /*** global variables defined in .c file *********************************************************/
  23. /*** declarations of public functions ************************************************************/
  24. void tty_init_colors (gboolean disable, gboolean force);
  25. void tty_colors_done (void);
  26. gboolean tty_use_colors (void);
  27. int tty_try_alloc_color_pair (const char *, const char *, const char *);
  28. int tty_try_alloc_color_pair2 (const char *, const char *, const char *, gboolean);
  29. void tty_color_free_all_tmp (void);
  30. void tty_color_free_all_non_tmp (void);
  31. void tty_setcolor (int color);
  32. void tty_lowlevel_setcolor (int color);
  33. void tty_set_normal_attrs (void);
  34. void tty_color_set_defaults (const char *, const char *, const char *);
  35. extern gboolean tty_use_256colors (void);
  36. extern gboolean tty_use_truecolors (GError **);
  37. /*** inline functions ****************************************************************************/
  38. #endif /* MC_COLOR_H */