Parent Directory
|
Revision Log
Import of last release 0.6.8
| 1 | bas | 1.1 | #ifndef __COLORS_H |
| 2 | #define __COLORS_H | ||
| 3 | |||
| 4 | /* numbers of color pairs in curses color definitions */ | ||
| 5 | |||
| 6 | #define NORMAL 1 | ||
| 7 | #define MENUSELECTED 2 | ||
| 8 | #define NOTESELECTED 3 | ||
| 9 | #define MENU 4 | ||
| 10 | #define NOTE 5 | ||
| 11 | #define TOPLINE 6 | ||
| 12 | #define BOTTOMLINE 7 | ||
| 13 | #define MANUALBOLD 8 | ||
| 14 | #define MANUALITALIC 9 | ||
| 15 | #define URL 10 | ||
| 16 | #define URLSELECTED 11 | ||
| 17 | #define INFOHIGHLIGHT 12 | ||
| 18 | #define SEARCHHIGHLIGHT 13 | ||
| 19 | |||
| 20 | /* those bellow hold color attributes for named screen widgets */ | ||
| 21 | |||
| 22 | extern int menu; | ||
| 23 | extern int menuselected; | ||
| 24 | extern int note; | ||
| 25 | extern int noteselected; | ||
| 26 | extern int normal; | ||
| 27 | extern int topline; | ||
| 28 | extern int bottomline; | ||
| 29 | extern int manualbold; | ||
| 30 | extern int manualitalic; | ||
| 31 | extern int url; | ||
| 32 | extern int urlselected; | ||
| 33 | extern int infohighlight; | ||
| 34 | extern int searchhighlight; | ||
| 35 | |||
| 36 | void initcolors (); /* | ||
| 37 | * initialize color values/attributes/etc. | ||
| 38 | * Either for color and monochrome mode. | ||
| 39 | */ | ||
| 40 | |||
| 41 | #endif |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |