19#ifndef USERMETRICSOUTPUT_COLORTHEME_H_
20#define USERMETRICSOUTPUT_COLORTHEME_H_
22#include <QtCore/QObject>
23#include <QtGui/QColor>
72 virtual QColor
start() const = 0;
77 virtual QColor
main() const = 0;
82 virtual QColor
end() const = 0;
void endChanged(const QColor &color)
The first / end QColor has changed.
void mainChanged(const QColor &color)
The middle / main QColor has changed.
QColor start
First / start QColor in the ColorTheme.
Definition ColorTheme.h:43
ColorTheme(QObject *parent=0)
Unusable constructor - class is pure-virtual.
QColor end
Last / end QColor in the ColorTheme.
Definition ColorTheme.h:53
void startChanged(const QColor &color)
The first / start QColor has changed.
QColor main
Middle / main QColor in the ColorTheme.
Definition ColorTheme.h:48
The user metrics output library namespace.
Definition ColorTheme.h:29