skin.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #ifndef MC__SKIN_H
  2. #define MC__SKIN_H
  3. #include "lib/global.h"
  4. #include "lib/mcconfig.h"
  5. #include "lib/tty/color.h"
  6. /*** typedefs(not structures) and defined constants **********************************************/
  7. /* Beware! When using Slang with color, not all the indexes are free.
  8. See color-slang.h (A_*) */
  9. /* cache often used colors*/
  10. #define DEFAULT_COLOR mc_skin_color__cache[0]
  11. #define NORMAL_COLOR mc_skin_color__cache[1]
  12. #define MARKED_COLOR mc_skin_color__cache[2]
  13. #define SELECTED_COLOR mc_skin_color__cache[3]
  14. #define MARKED_SELECTED_COLOR mc_skin_color__cache[4]
  15. #define REVERSE_COLOR mc_skin_color__cache[5]
  16. #define COMMAND_MARK_COLOR mc_skin_color__cache[6]
  17. /* Dialog colors */
  18. #define COLOR_NORMAL mc_skin_color__cache[7]
  19. #define COLOR_FOCUS mc_skin_color__cache[8]
  20. #define COLOR_HOT_NORMAL mc_skin_color__cache[9]
  21. #define COLOR_HOT_FOCUS mc_skin_color__cache[10]
  22. /* Error dialog colors */
  23. #define ERROR_COLOR mc_skin_color__cache[11]
  24. #define ERROR_HOT_NORMAL mc_skin_color__cache[12]
  25. #define ERROR_HOT_FOCUS mc_skin_color__cache[13]
  26. /* Menu colors */
  27. #define MENU_ENTRY_COLOR mc_skin_color__cache[14]
  28. #define MENU_SELECTED_COLOR mc_skin_color__cache[15]
  29. #define MENU_HOT_COLOR mc_skin_color__cache[16]
  30. #define MENU_HOTSEL_COLOR mc_skin_color__cache[17]
  31. #define MENU_INACTIVE_COLOR mc_skin_color__cache[18]
  32. /*
  33. * This should be selectable independently. Default has to be black background
  34. * foreground does not matter at all.
  35. */
  36. #define GAUGE_COLOR mc_skin_color__cache[19]
  37. #define INPUT_COLOR mc_skin_color__cache[20]
  38. #define INPUT_UNCHANGED_COLOR mc_skin_color__cache[21]
  39. #define INPUT_MARK_COLOR mc_skin_color__cache[22]
  40. #define HELP_NORMAL_COLOR mc_skin_color__cache[23]
  41. #define HELP_ITALIC_COLOR mc_skin_color__cache[24]
  42. #define HELP_BOLD_COLOR mc_skin_color__cache[25]
  43. #define HELP_LINK_COLOR mc_skin_color__cache[26]
  44. #define HELP_SLINK_COLOR mc_skin_color__cache[27]
  45. #define VIEW_UNDERLINED_COLOR mc_skin_color__cache[28]
  46. /*
  47. * editor colors - only 4 for normal, search->found, select, and whitespace
  48. * respectively
  49. * Last is defined to view color.
  50. */
  51. #define EDITOR_NORMAL_COLOR mc_skin_color__cache[29]
  52. #define EDITOR_BOLD_COLOR mc_skin_color__cache[30]
  53. #define EDITOR_MARKED_COLOR mc_skin_color__cache[31]
  54. #define EDITOR_WHITESPACE_COLOR mc_skin_color__cache[32]
  55. #define EDITOR_RIGHT_MARGIN_COLOR mc_skin_color__cache[33]
  56. /* color of left 8 char status per line */
  57. #define LINE_STATE_COLOR mc_skin_color__cache[34]
  58. #define BOOK_MARK_COLOR mc_skin_color__cache[35]
  59. #define BOOK_MARK_FOUND_COLOR mc_skin_color__cache[36]
  60. #define BUTTONBAR_HOTKEY_COLOR mc_skin_color__cache[37]
  61. #define BUTTONBAR_BUTTON_COLOR mc_skin_color__cache[38]
  62. /* Diff colors */
  63. #define DFF_ADD_COLOR mc_skin_color__cache[39]
  64. #define DFF_CHG_COLOR mc_skin_color__cache[40]
  65. #define DFF_CHH_COLOR mc_skin_color__cache[41]
  66. #define DFF_CHD_COLOR mc_skin_color__cache[42]
  67. #define DFF_DEL_COLOR mc_skin_color__cache[43]
  68. #define DFF_FOLDER_COLOR mc_skin_color__cache[44]
  69. #define DFF_ERROR_COLOR mc_skin_color__cache[45]
  70. #define MC_SKIN_COLOR_CACHE_COUNT 46
  71. /*** enums ***************************************************************************************/
  72. /*** structures declarations (and typedefs of structures)*****************************************/
  73. typedef struct mc_skin_struct {
  74. gchar *name;
  75. gchar *description;
  76. mc_config_t *config;
  77. GHashTable *colors;
  78. } mc_skin_t;
  79. /*** global variables defined in .c file *********************************************************/
  80. extern int mc_skin_color__cache[];
  81. extern mc_skin_t mc_skin__default;
  82. /*** declarations of public functions ************************************************************/
  83. gboolean mc_skin_init (GError **);
  84. void mc_skin_deinit (void);
  85. int mc_skin_color_get (const gchar *, const gchar *);
  86. void mc_skin_lines_parse_ini_file (mc_skin_t *);
  87. gchar *mc_skin_get(const gchar *, const gchar *, const gchar *);
  88. #endif