Adapt to new topic message type
[quassel.git] / src / qtui / qtuistyle.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "chatviewsettings.h"
22 #include "qtuistyle.h"
23
24 #include <QFile>
25 #include <QTextStream>
26
27 QtUiStyle::QtUiStyle(QObject *parent) : UiStyle(parent) {
28   ChatViewSettings s;
29   s.notify("TimestampFormat", this, SLOT(updateTimestampFormatString()));
30   updateTimestampFormatString();
31 }
32
33 QtUiStyle::~QtUiStyle() {}
34
35 void QtUiStyle::updateTimestampFormatString() {
36   ChatViewSettings s;
37   setTimestampFormatString(s.timestampFormatString());
38 }
39
40 void QtUiStyle::generateSettingsQss() const {
41   QFile settingsQss(Quassel::configDirPath() + "settings.qss");
42   if(!settingsQss.open(QFile::WriteOnly|QFile::Truncate)) {
43     qWarning() << "Could not open" << settingsQss.fileName() << "for writing!";
44     return;
45   }
46   QTextStream out(&settingsQss);
47
48   out << "// Style settings made in Quassel's configuration dialog\n"
49       << "// This file is automatically generated, do not edit\n";
50
51   // ChatView
52   ///////////
53   QtUiStyleSettings fs("Fonts");
54   if(fs.value("UseCustomChatViewFont").toBool())
55     out << "\n// ChatView Font\n"
56         << "ChatLine { " << fontDescription(fs.value("ChatView").value<QFont>()) << "; }\n";
57
58   QtUiStyleSettings s("Colors");
59   if(s.value("UseChatViewColors").toBool()) {
60     out << "\n// Custom ChatView Colors\n"
61
62         << "Palette { marker-line: " << color("MarkerLine", s) << "; }\n"
63         << "ChatView { background: " << color("ChatViewBackground", s) << "; }\n\n"
64         << "ChatLine[label=\"highlight\"] {\n"
65         << "  foreground: " << color("Highlight",s) << ";\n"
66         << "  background: " << color("HighlightBackground", s) << ";\n"
67         << "}\n\n"
68         << "ChatLine::timestamp { foreground: " << color("Timestamp", s) << "; }\n\n"
69
70         << msgTypeQss("plain", "ChannelMsg", s)
71         << msgTypeQss("notice", "ServerMsg", s)
72         << msgTypeQss("action", "ActionMsg", s)
73         << msgTypeQss("nick", "CommandMsg", s)
74         << msgTypeQss("mode", "CommandMsg", s)
75         << msgTypeQss("join", "CommandMsg", s)
76         << msgTypeQss("part", "CommandMsg", s)
77         << msgTypeQss("quit", "CommandMsg", s)
78         << msgTypeQss("kick", "CommandMsg", s)
79         << msgTypeQss("kill", "CommandMsg", s)
80         << msgTypeQss("server", "ServerMsg", s)
81         << msgTypeQss("info", "ServerMsg", s)
82         << msgTypeQss("error", "ErrorMsg", s)
83         << msgTypeQss("daychange", "ServerMsg", s)
84         << msgTypeQss("topic", "CommandMsg", s)
85         << "\n";
86   }
87
88   if(s.value("UseSenderColors").toBool()) {
89     out << "\n// Sender Colors\n"
90         << "ChatLine::sender#plain[sender=\"self\"] { foreground: " << color("SenderSelf", s) << "; }\n\n";
91
92     for(int i = 0; i < 16; i++)
93       out << senderQss(i, s);
94   }
95
96   // ItemViews
97   ////////////
98
99   UiStyleSettings uiFonts("Fonts");
100   if(uiFonts.value("UseCustomItemViewFont").toBool()) {
101     QString fontDesc = fontDescription(uiFonts.value("ItemView").value<QFont>());
102     out << "\n// ItemView Font\n"
103         << "ChatListItem { " << fontDesc << "; }\n"
104         << "NickListItem { " << fontDesc << "; }\n\n";
105   }
106
107   UiStyleSettings uiColors("Colors");
108   if(uiColors.value("UseBufferViewColors").toBool()) {
109     out << "\n// BufferView Colors\n"
110         << "ChatListItem { foreground: " << color("DefaultBuffer", uiColors) << "; }\n"
111         << chatListItemQss("inactive", "InactiveBuffer", uiColors)
112         << chatListItemQss("channel-event", "ActiveBuffer", uiColors)
113         << chatListItemQss("unread-message", "UnreadBuffer", uiColors)
114         << chatListItemQss("highlighted", "HighlightedBuffer", uiColors);
115   }
116
117   if(uiColors.value("UseNickViewColors").toBool()) {
118     out << "\n// NickView Colors\n"
119         << "NickListItem[type=\"category\"] { foreground: " << color("DefaultBuffer", uiColors) << "; }\n"
120         << "NickListItem[type=\"user\"] { foreground: " << color("OnlineNick", uiColors) << "; }\n"
121         << "NickListItem[type=\"user\", state=\"away\"] { foreground: " << color("AwayNick", uiColors) << "; }\n";
122   }
123
124   settingsQss.close();
125 }
126
127 QString QtUiStyle::color(const QString &key, UiSettings &settings) const {
128   return settings.value(key).value<QColor>().name();
129 }
130
131 QString QtUiStyle::fontDescription(const QFont &font) const {
132   QString desc = "font: ";
133   if(font.italic())
134     desc += "italic ";
135   if(font.bold())
136     desc += "bold ";
137   if(!font.italic() && !font.bold())
138     desc += "normal ";
139   desc += QString("%1pt \"%2\"").arg(font.pointSize()).arg(font.family());
140   return desc;
141 }
142
143 QString QtUiStyle::msgTypeQss(const QString &msgType, const QString &key, UiSettings &settings) const {
144   return QString("ChatLine#%1 { foreground: %2; }\n").arg(msgType, color(key, settings));
145 }
146
147 QString QtUiStyle::senderQss(int i, UiSettings &settings) const {
148   QString dez = QString::number(i);
149   if(dez.length() == 1) dez.prepend('0');
150
151   return QString("ChatLine::sender#plain[sender=\"0%1\"] { foreground: %2; }\n").arg(QString::number(i, 16), color("Sender"+dez, settings));
152 }
153
154 QString QtUiStyle::chatListItemQss(const QString &state, const QString &key, UiSettings &settings) const {
155   return QString("ChatListItem[state=\"%1\"] { foreground: %2; }\n").arg(state, color(key, settings));
156 }