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