X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtuistyle.cpp;h=3364ec2a18a8c4a21dd5647237560944fa617f76;hp=1aa2ff0a867936d2a1e27deab531a93e651fa09e;hb=dcac65fc4beeb1167de8ebec5cc54608fc314fd3;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/qtui/qtuistyle.cpp b/src/qtui/qtuistyle.cpp index 1aa2ff0a..3364ec2a 100644 --- a/src/qtui/qtuistyle.cpp +++ b/src/qtui/qtuistyle.cpp @@ -75,11 +75,29 @@ QtUiStyle::QtUiStyle() : UiStyle("QtUiStyle") { ts.setForeground(QBrush("grey")); setFormat(Timestamp, ts, Settings::Default); + // Set the default sender color QTextCharFormat sender; sender.setAnchor(true); sender.setForeground(QBrush("navy")); setFormat(Sender, sender, Settings::Default); + /* + * Fillup the list of colors used for sender auto coloring In this case + * These are Oxygen palette colors + */ + addSenderAutoColor(SenderCol01, "#989a95"); + addSenderAutoColor(SenderCol02, "#ef8440"); + addSenderAutoColor(SenderCol03, "#ffe200"); + addSenderAutoColor(SenderCol04, "#49b13b"); + addSenderAutoColor(SenderCol05, "#00a778"); + addSenderAutoColor(SenderCol06, "#008b90"); + addSenderAutoColor(SenderCol07, "#0069ba"); + addSenderAutoColor(SenderCol08, "#563696"); + addSenderAutoColor(SenderCol09, "#ad3597"); + addSenderAutoColor(SenderCol10, "#e70083"); + addSenderAutoColor(SenderCol11, "#e70f00"); + addSenderAutoColor(SenderCol12, "#866127"); + QTextCharFormat nick; nick.setAnchor(true); nick.setFontWeight(QFont::Bold); @@ -115,3 +133,10 @@ void QtUiStyle::setHighlightColor(const QColor &col) { QtUiStyleSettings s; s.setHighlightColor(col); } + +void QtUiStyle::addSenderAutoColor(FormatType type, const QString name) { + QTextCharFormat autoColor; + autoColor.setAnchor(true); + autoColor.setForeground(QBrush(QColor(name))); + setFormat(type, autoColor, Settings::Default); +}