1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#ifndef WACOLOR_H #define WACOLOR_H #include <tqcolor.h> #include <tqstring.h> #define INDEX_BACKGROUND_COLOR 0 #define INDEX_GRID_COLOR 1 #define INDEX_SPEC_BASE 2 #define INDEX_OSC_BASE 18 #define INDEX_PEAKS 23 class WaColor { public: WaColor(TQString filename); ~WaColor(); TQColor skinColors[24]; }; extern WaColor *colorScheme; #endif