Updated doc/NEWS file
[midnight-commander.git] / lib / skin.h
blobe67c49a79c5d106e7b942f4aac0b21d021bedfa8
1 #ifndef MC_SKIN_H
2 #define MC_SKIN_H
4 #include "lib/global.h"
6 #include "lib/mcconfig.h"
8 #include "lib/tty/color.h"
10 /*** typedefs(not structures) and defined constants **********************************************/
12 /* Beware! When using Slang with color, not all the indexes are free.
13 See color-slang.h (A_*) */
15 /* cache often used colors */
16 #define DEFAULT_COLOR mc_skin_color__cache[0]
17 #define NORMAL_COLOR mc_skin_color__cache[1]
18 #define MARKED_COLOR mc_skin_color__cache[2]
19 #define SELECTED_COLOR mc_skin_color__cache[3]
20 #define MARKED_SELECTED_COLOR mc_skin_color__cache[4]
21 #define DISABLED_COLOR mc_skin_color__cache[5]
22 #define REVERSE_COLOR mc_skin_color__cache[6]
23 #define COMMAND_MARK_COLOR mc_skin_color__cache[7]
24 #define HEADER_COLOR mc_skin_color__cache[8]
26 /* Dialog colors */
27 #define COLOR_NORMAL mc_skin_color__cache[9]
28 #define COLOR_FOCUS mc_skin_color__cache[10]
29 #define COLOR_HOT_NORMAL mc_skin_color__cache[11]
30 #define COLOR_HOT_FOCUS mc_skin_color__cache[12]
31 #define COLOR_TITLE mc_skin_color__cache[13]
33 /* Error dialog colors */
34 #define ERROR_COLOR mc_skin_color__cache[14]
35 #define ERROR_FOCUS mc_skin_color__cache[15]
36 #define ERROR_HOT_NORMAL mc_skin_color__cache[16]
37 #define ERROR_HOT_FOCUS mc_skin_color__cache[17]
38 #define ERROR_TITLE mc_skin_color__cache[18]
40 /* Menu colors */
41 #define MENU_ENTRY_COLOR mc_skin_color__cache[19]
42 #define MENU_SELECTED_COLOR mc_skin_color__cache[20]
43 #define MENU_HOT_COLOR mc_skin_color__cache[21]
44 #define MENU_HOTSEL_COLOR mc_skin_color__cache[22]
45 #define MENU_INACTIVE_COLOR mc_skin_color__cache[23]
47 /* Popup menu colors */
48 #define PMENU_ENTRY_COLOR mc_skin_color__cache[24]
49 #define PMENU_SELECTED_COLOR mc_skin_color__cache[25]
50 #define PMENU_HOT_COLOR mc_skin_color__cache[26] /* unused: not implemented yet */
51 #define PMENU_HOTSEL_COLOR mc_skin_color__cache[27] /* unused: not implemented yet */
52 #define PMENU_TITLE_COLOR mc_skin_color__cache[28]
54 #define BUTTONBAR_HOTKEY_COLOR mc_skin_color__cache[29]
55 #define BUTTONBAR_BUTTON_COLOR mc_skin_color__cache[30]
57 #define STATUSBAR_COLOR mc_skin_color__cache[31]
60 * This should be selectable independently. Default has to be black background
61 * foreground does not matter at all.
63 #define GAUGE_COLOR mc_skin_color__cache[32]
64 #define INPUT_COLOR mc_skin_color__cache[33]
65 #define INPUT_UNCHANGED_COLOR mc_skin_color__cache[34]
66 #define INPUT_MARK_COLOR mc_skin_color__cache[35]
67 #define INPUT_HISTORY_COLOR mc_skin_color__cache[36]
68 #define COMMAND_HISTORY_COLOR mc_skin_color__cache[37]
70 #define HELP_NORMAL_COLOR mc_skin_color__cache[38]
71 #define HELP_ITALIC_COLOR mc_skin_color__cache[39]
72 #define HELP_BOLD_COLOR mc_skin_color__cache[40]
73 #define HELP_LINK_COLOR mc_skin_color__cache[41]
74 #define HELP_SLINK_COLOR mc_skin_color__cache[42]
75 #define HELP_TITLE_COLOR mc_skin_color__cache[43]
78 #define VIEW_BOLD_COLOR mc_skin_color__cache[44]
79 #define VIEW_UNDERLINED_COLOR mc_skin_color__cache[45]
80 #define VIEW_SELECTED_COLOR mc_skin_color__cache[46]
83 * editor colors - only 4 for normal, search->found, select, and whitespace
84 * respectively
85 * Last is defined to view color.
87 #define EDITOR_NORMAL_COLOR mc_skin_color__cache[47]
88 #define EDITOR_BOLD_COLOR mc_skin_color__cache[48]
89 #define EDITOR_MARKED_COLOR mc_skin_color__cache[49]
90 #define EDITOR_WHITESPACE_COLOR mc_skin_color__cache[50]
91 #define EDITOR_RIGHT_MARGIN_COLOR mc_skin_color__cache[51]
92 #define EDITOR_BACKGROUND mc_skin_color__cache[52]
93 #define EDITOR_FRAME mc_skin_color__cache[53]
94 #define EDITOR_FRAME_ACTIVE mc_skin_color__cache[54]
95 #define EDITOR_FRAME_DRAG mc_skin_color__cache[55]
96 /* color of left 8 char status per line */
97 #define LINE_STATE_COLOR mc_skin_color__cache[56]
98 #define BOOK_MARK_COLOR mc_skin_color__cache[57]
99 #define BOOK_MARK_FOUND_COLOR mc_skin_color__cache[58]
101 /* Diff colors */
102 #define DFF_ADD_COLOR mc_skin_color__cache[59]
103 #define DFF_CHG_COLOR mc_skin_color__cache[60]
104 #define DFF_CHH_COLOR mc_skin_color__cache[61]
105 #define DFF_CHD_COLOR mc_skin_color__cache[62]
106 #define DFF_DEL_COLOR mc_skin_color__cache[63]
107 #define DFF_FOLDER_COLOR mc_skin_color__cache[64]
108 #define DFF_ERROR_COLOR mc_skin_color__cache[65]
110 #define MC_SKIN_COLOR_CACHE_COUNT 66
112 /*** enums ***************************************************************************************/
114 /*** structures declarations (and typedefs of structures)*****************************************/
116 typedef struct mc_skin_struct
118 gchar *name;
119 gchar *description;
120 mc_config_t *config;
121 GHashTable *colors;
122 gboolean have_256_colors;
123 } mc_skin_t;
125 /*** global variables defined in .c file *********************************************************/
127 extern int mc_skin_color__cache[];
128 extern mc_skin_t mc_skin__default;
130 /*** declarations of public functions ************************************************************/
132 gboolean mc_skin_init (GError **);
133 void mc_skin_deinit (void);
135 int mc_skin_color_get (const gchar *, const gchar *);
137 void mc_skin_lines_parse_ini_file (mc_skin_t *);
139 gchar *mc_skin_get (const gchar *, const gchar *, const gchar *);
141 #endif /* MC_SKIN_H */