Stylesheetify the marker line color
[quassel.git] / src / uisupport / qssparser.h
index 37a642e..e006955 100644 (file)
@@ -29,10 +29,11 @@ class QssParser {
   public:
     QssParser();
 
-    void loadStyleSheet(const QString &sheet);
+    void processStyleSheet(QString &sheet);
 
     inline QPalette palette() const { return _palette; }
     inline const QHash<quint64, QTextCharFormat>& formats() const { return _formats; }
+    inline QBrush markerLineBrush() const { return _markerLineBrush; }
 
   protected:
     typedef QList<qreal> ColorTuple;
@@ -63,6 +64,7 @@ class QssParser {
   private:
     QPalette _palette;
     QHash<quint64, QTextCharFormat> _formats;
+    QBrush _markerLineBrush;
     int _maxSenderHash;
 };