Make backgrounds of ChatLines and ChatItems styleable
[quassel.git] / src / uisupport / uistyle.h
index a163809..22ade27 100644 (file)
@@ -77,10 +77,11 @@ public:
     // Individual parts of a message
     Timestamp       = 0x00000100,
     Sender          = 0x00000200,
-    Nick            = 0x00000400,
-    Hostmask        = 0x00000800,
-    ChannelName     = 0x00001000,
-    ModeFlags       = 0x00002000,
+    Contents        = 0x00000400,
+    Nick            = 0x00000800,
+    Hostmask        = 0x00001000,
+    ChannelName     = 0x00002000,
+    ModeFlags       = 0x00004000,
 
     // URL is special, we want that to take precedence over the rest...
     Url             = 0x00080000
@@ -111,7 +112,7 @@ public:
 
   inline QFont defaultFont() const { return _defaultFont; }
 
-  QList<QTextLayout::FormatRange> toTextLayoutList(const FormatList &, int textLength);
+  QList<QTextLayout::FormatRange> toTextLayoutList(const FormatList &, int textLength, quint32 messageLabel = 0);
 
 protected:
   void loadStyleSheet();