19 #ifndef USERMETRICSOUTPUT_COLORTHEME_H_
20 #define USERMETRICSOUTPUT_COLORTHEME_H_
22 #include <QtCore/QObject>
23 #include <QtGui/QColor>
43 Q_PROPERTY(QColor start READ start NOTIFY startChanged FINAL)
48 Q_PROPERTY(QColor main READ main NOTIFY mainChanged FINAL)
53 Q_PROPERTY(QColor end READ end NOTIFY endChanged FINAL)
72 virtual QColor start() const = 0;
77 virtual QColor main() const = 0;
82 virtual QColor end() const = 0;
90 void startChanged(const QColor &color);
97 void mainChanged(const QColor &color);
104 void endChanged(const QColor &color);
112 #endif // USERMETRICSOUTPUT_COLORTHEME_H_