iosql/lexerscheme.h

22 lines
367 B
C
Raw Permalink Normal View History

2011-10-27 12:08:05 +00:00
#ifndef LEXERSCHEME_H
#define LEXERSCHEME_H
#include <QColor>
#include <QMap>
class LexerScheme
{
// Default colors
QColor defaultPaper;
QColor defaultColor;
// The rest of the colours
QMap<int, QColor> colorMap;
public:
LexerScheme();
QColor getColor(int style);
void setColor(int style, QColor color);
};
#endif // LEXERSCHEME_H