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