X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtuistyle.cpp;h=a3f5ea30a86d2c73f5a547b1729a312aa2c83eb3;hp=af47119e113b7cf5f3afc33ff2144d791d55b69e;hb=fcf721c85ec4f804d11ac1553592de860f5a3f1d;hpb=6190e1cafc23d818ddd796a9c134a43001315257 diff --git a/src/qtui/qtuistyle.cpp b/src/qtui/qtuistyle.cpp index af47119e..a3f5ea30 100644 --- a/src/qtui/qtuistyle.cpp +++ b/src/qtui/qtuistyle.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -19,8 +19,9 @@ ***************************************************************************/ #include "qtuistyle.h" +#include "qtuisettings.h" -QtUiStyle::QtUiStyle() : UiStyle("QtUiStyleNew") { // FIXME QtUiStyleNew naming +QtUiStyle::QtUiStyle() : UiStyle("QtUiStyle") { // We need to just set our internal formats; everything else is done by the base class... // Internal message formats @@ -74,11 +75,29 @@ QtUiStyle::QtUiStyle() : UiStyle("QtUiStyleNew") { // FIXME QtUiStyleNew naming 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, "#ffbf00"); + 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); @@ -102,7 +121,22 @@ QtUiStyle::QtUiStyle() : UiStyle("QtUiStyleNew") { // FIXME QtUiStyleNew naming url.setAnchor(true); setFormat(Url, url, Settings::Default); - _highlightColor = QColor(Qt::red); + QtUiStyleSettings s; + _highlightColor = s.highlightColor(); + if(!_highlightColor.isValid()) _highlightColor = QColor("lightcoral"); } QtUiStyle::~QtUiStyle() {} + +void QtUiStyle::setHighlightColor(const QColor &col) { + _highlightColor = 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); +}