| |
1 #ifndef GNT_COLORS_H |
| |
2 #define GNT_COLORS_H |
| |
3 |
| |
4 typedef enum |
| |
5 { |
| |
6 GNT_COLOR_NORMAL = 1, |
| |
7 GNT_COLOR_HIGHLIGHT, /* eg. when a button is selected */ |
| |
8 GNT_COLOR_DISABLED, /* eg. when a button is disabled */ |
| |
9 GNT_COLOR_HIGHLIGHT_D, /* eg. when a button is selected, but some other window is in focus */ |
| |
10 GNT_COLOR_TEXT_NORMAL, |
| |
11 GNT_COLOR_TEXT_INACTIVE, /* when the entry is out of focus */ |
| |
12 GNT_COLOR_MNEMONIC, |
| |
13 GNT_COLOR_MNEMONIC_D, |
| |
14 GNT_COLOR_SHADOW, |
| |
15 GNT_COLOR_TITLE, |
| |
16 GNT_COLORS |
| |
17 } GntColorType; |
| |
18 |
| |
19 enum |
| |
20 { |
| |
21 GNT_COLOR_BLACK = 1, |
| |
22 GNT_COLOR_RED, |
| |
23 GNT_COLOR_GREEN, |
| |
24 GNT_COLOR_BLUE, |
| |
25 GNT_COLOR_WHITE, |
| |
26 GNT_COLOR_GRAY, |
| |
27 GNT_COLOR_DARK_GRAY, |
| |
28 GNT_TOTAL_COLORS |
| |
29 }; |
| |
30 |
| |
31 /* populate some default colors */ |
| |
32 void gnt_init_colors(); |
| |
33 |
| |
34 #endif |