Store highlight color in QtUiStyle (hardcoded for now)
[quassel.git] / src / qtui / qtuistyle.h
index 0f3d60a..e058ac0 100644 (file)
@@ -31,6 +31,10 @@ class QtUiStyle : public UiStyle {
 
     virtual inline qreal firstColumnSeparator() const { return 10; }
     virtual inline qreal secondColumnSeparator() const { return 10; }
+    virtual inline QColor highlightColor() const { return _highlightColor; }
+
+  private:
+    QColor _highlightColor;
 };
 
 #endif