summaryrefslogtreecommitdiffstats
path: root/noatun/modules/winskin/waColor.h
blob: a0e184843c74e5cc2bef99e16c0bcce5b4662561 (plain)
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 <qcolor.h>
#include <qstring.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(QString filename);
    ~WaColor();

    QColor skinColors[24];
};

extern WaColor *colorScheme;

#endif