included qca2 into build system
[quassel.git] / src / uisupport / qssparser.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 <QApplication>
22
23 #include "qssparser.h"
24
25 QssParser::QssParser()
26 : _maxSenderHash(0)
27 {
28   _palette = QApplication::palette();
29
30   // Init palette color roles
31   _paletteColorRoles["alternate-base"] = QPalette::AlternateBase;
32   _paletteColorRoles["background"] = QPalette::Background;
33   _paletteColorRoles["base"] = QPalette::Base;
34   _paletteColorRoles["bright-text"] = QPalette::BrightText;
35   _paletteColorRoles["button"] = QPalette::Button;
36   _paletteColorRoles["button-text"] = QPalette::ButtonText;
37   _paletteColorRoles["dark"] = QPalette::Dark;
38   _paletteColorRoles["foreground"] = QPalette::Foreground;
39   _paletteColorRoles["highlight"] = QPalette::Highlight;
40   _paletteColorRoles["highlighted-text"] = QPalette::HighlightedText;
41   _paletteColorRoles["light"] = QPalette::Light;
42   _paletteColorRoles["link"] = QPalette::Link;
43   _paletteColorRoles["link-visited"] = QPalette::LinkVisited;
44   _paletteColorRoles["mid"] = QPalette::Mid;
45   _paletteColorRoles["midlight"] = QPalette::Midlight;
46   _paletteColorRoles["shadow"] = QPalette::Shadow;
47   _paletteColorRoles["text"] = QPalette::Text;
48   _paletteColorRoles["tooltip-base"] = QPalette::ToolTipBase;
49   _paletteColorRoles["tooltip-text"] = QPalette::ToolTipText;
50   _paletteColorRoles["window"] = QPalette::Window;
51   _paletteColorRoles["window-text"] = QPalette::WindowText;
52
53   _uiStylePalette = QVector<QBrush>(UiStyle::NumRoles, QBrush());
54
55   _uiStyleColorRoles["marker-line"] = UiStyle::MarkerLine;
56 }
57
58 void QssParser::processStyleSheet(QString &ss) {
59   if(ss.isEmpty())
60     return;
61
62   // Remove C-style comments /* */ or //
63   QRegExp commentRx("(//.*(\\n|$)|/\\*.*\\*/)");
64   commentRx.setMinimal(true);
65   ss.remove(commentRx);
66
67   // Palette definitions first, so we can apply roles later on
68   QRegExp paletterx("(Palette[^{]*)\\{([^}]+)\\}");
69   int pos = 0;
70   while((pos = paletterx.indexIn(ss, pos)) >= 0) {
71     parsePaletteBlock(paletterx.cap(1).trimmed(), paletterx.cap(2).trimmed());
72     ss.remove(pos, paletterx.matchedLength());
73   }
74
75   // Now we can parse the rest of our custom blocks
76   QRegExp blockrx("((?:ChatLine|ChatListItem|NickListItem)[^{]*)\\{([^}]+)\\}");
77   pos = 0;
78   while((pos = blockrx.indexIn(ss, pos)) >= 0) {
79     //qDebug() << blockrx.cap(1) << blockrx.cap(2);
80     QString declaration = blockrx.cap(1).trimmed();
81     QString contents = blockrx.cap(2).trimmed();
82
83     if(declaration.startsWith("ChatLine"))
84       parseChatLineBlock(declaration, contents);
85     else if(declaration.startsWith("ChatListItem") || declaration.startsWith("NickListItem"))
86       parseListItemBlock(declaration, contents);
87     //else
88     // TODO: add moar here
89
90     ss.remove(pos, blockrx.matchedLength());
91   }
92 }
93
94 /******** Parse a whole block: declaration { contents } *******/
95
96 void QssParser::parseChatLineBlock(const QString &decl, const QString &contents) {
97   quint64 fmtType = parseFormatType(decl);
98   if(fmtType == UiStyle::Invalid)
99     return;
100
101   _formats[fmtType].merge(parseFormat(contents));
102 }
103
104 void QssParser::parseListItemBlock(const QString &decl, const QString &contents) {
105   quint32 fmtType = parseItemFormatType(decl);
106   if(fmtType == UiStyle::Invalid)
107     return;
108
109   _listItemFormats[fmtType].merge(parseFormat(contents));
110 }
111
112 // Palette { ... } specifies the application palette
113 // ColorGroups can be specified like pseudo states, chaining is OR (contrary to normal CSS handling):
114 //   Palette:inactive:disabled { ... } applies to both the Inactive and the Disabled state
115 void QssParser::parsePaletteBlock(const QString &decl, const QString &contents) {
116   QList<QPalette::ColorGroup> colorGroups;
117
118   // Check if we want to apply this palette definition for particular ColorGroups
119   QRegExp rx("Palette((:(normal|active|inactive|disabled))*)");
120   if(!rx.exactMatch(decl)) {
121     qWarning() << Q_FUNC_INFO << tr("Invalid block declaration: %1").arg(decl);
122     return;
123   }
124   if(!rx.cap(1).isEmpty()) {
125     QStringList groups = rx.cap(1).split(':', QString::SkipEmptyParts);
126     foreach(QString g, groups) {
127       if((g == "normal" || g == "active") && !colorGroups.contains(QPalette::Active))
128         colorGroups.append(QPalette::Active);
129       else if(g == "inactive" && !colorGroups.contains(QPalette::Inactive))
130         colorGroups.append(QPalette::Inactive);
131       else if(g == "disabled" && !colorGroups.contains(QPalette::Disabled))
132         colorGroups.append(QPalette::Disabled);
133     }
134   }
135
136   // Now let's go through the roles
137   foreach(QString line, contents.split(';', QString::SkipEmptyParts)) {
138     int idx = line.indexOf(':');
139     if(idx <= 0) {
140       qWarning() << Q_FUNC_INFO << tr("Invalid palette role assignment: %1").arg(line.trimmed());
141       continue;
142     }
143     QString rolestr = line.left(idx).trimmed();
144     QString brushstr = line.mid(idx + 1).trimmed();
145
146     if(_paletteColorRoles.contains(rolestr)) {
147       QBrush brush = parseBrush(brushstr);
148       if(colorGroups.count()) {
149         foreach(QPalette::ColorGroup group, colorGroups)
150           _palette.setBrush(group, _paletteColorRoles.value(rolestr), brush);
151       } else
152         _palette.setBrush(_paletteColorRoles.value(rolestr), brush);
153     } else if(_uiStyleColorRoles.contains(rolestr)) {
154       _uiStylePalette[_uiStyleColorRoles.value(rolestr)] = parseBrush(brushstr);
155     } else
156       qWarning() << Q_FUNC_INFO << tr("Unknown palette role name: %1").arg(rolestr);
157   }
158 }
159
160 /******** Determine format types from a block declaration ********/
161
162 quint64 QssParser::parseFormatType(const QString &decl) {
163   QRegExp rx("ChatLine(?:::(\\w+))?(?:#([\\w\\-]+))?(?:\\[([=-,\\\"\\w\\s]+)\\])?");
164   // $1: subelement; $2: msgtype; $3: conditionals
165   if(!rx.exactMatch(decl)) {
166     qWarning() << Q_FUNC_INFO << tr("Invalid block declaration: %1").arg(decl);
167     return UiStyle::Invalid;
168   }
169   QString subElement = rx.cap(1);
170   QString msgType = rx.cap(2);
171   QString conditions = rx.cap(3);
172
173   quint64 fmtType = 0;
174
175   // First determine the subelement
176   if(!subElement.isEmpty()) {
177     if(subElement == "timestamp")
178       fmtType |= UiStyle::Timestamp;
179     else if(subElement == "sender")
180       fmtType |= UiStyle::Sender;
181     else if(subElement == "nick")
182       fmtType |= UiStyle::Nick;
183     else if(subElement == "contents")
184       fmtType |= UiStyle::Contents;
185     else if(subElement == "hostmask")
186       fmtType |= UiStyle::Hostmask;
187     else if(subElement == "modeflags")
188       fmtType |= UiStyle::ModeFlags;
189     else if(subElement == "url")
190       fmtType |= UiStyle::Url;
191     else {
192       qWarning() << Q_FUNC_INFO << tr("Invalid subelement name in %1").arg(decl);
193       return UiStyle::Invalid;
194     }
195   }
196
197   // Now, figure out the message type
198   if(!msgType.isEmpty()) {
199     if(msgType == "plain")
200       fmtType |= UiStyle::PlainMsg;
201     else if(msgType == "notice")
202       fmtType |= UiStyle::NoticeMsg;
203     else if(msgType == "action")
204       fmtType |= UiStyle::ActionMsg;
205     else if(msgType == "nick")
206       fmtType |= UiStyle::NickMsg;
207     else if(msgType == "mode")
208       fmtType |= UiStyle::ModeMsg;
209     else if(msgType == "join")
210       fmtType |= UiStyle::JoinMsg;
211     else if(msgType == "part")
212       fmtType |= UiStyle::PartMsg;
213     else if(msgType == "quit")
214       fmtType |= UiStyle::QuitMsg;
215     else if(msgType == "kick")
216       fmtType |= UiStyle::KickMsg;
217     else if(msgType == "kill")
218       fmtType |= UiStyle::KillMsg;
219     else if(msgType == "server")
220       fmtType |= UiStyle::ServerMsg;
221     else if(msgType == "info")
222       fmtType |= UiStyle::InfoMsg;
223     else if(msgType == "error")
224       fmtType |= UiStyle::ErrorMsg;
225     else if(msgType == "daychange")
226       fmtType |= UiStyle::DayChangeMsg;
227     else if(msgType == "topic")
228       fmtType |= UiStyle::TopicMsg;
229     else if(msgType == "netsplit-join")
230       fmtType |= UiStyle::NetsplitJoinMsg;
231     else if(msgType == "netsplit-quit")
232       fmtType |= UiStyle::NetsplitQuitMsg;
233     else {
234       qWarning() << Q_FUNC_INFO << tr("Invalid message type in %1").arg(decl);
235     }
236   }
237
238   // Next up: conditional (formats, labels, nickhash)
239   QRegExp condRx("\\s*([\\w\\-]+)\\s*=\\s*\"(\\w+)\"\\s*");
240   if(!conditions.isEmpty()) {
241     foreach(const QString &cond, conditions.split(',', QString::SkipEmptyParts)) {
242       if(!condRx.exactMatch(cond)) {
243         qWarning() << Q_FUNC_INFO << tr("Invalid condition %1").arg(cond);
244         return UiStyle::Invalid;
245       }
246       QString condName = condRx.cap(1);
247       QString condValue = condRx.cap(2);
248       if(condName == "label") {
249         quint64 labeltype = 0;
250         if(condValue == "highlight")
251           labeltype = UiStyle::Highlight;
252         else if(condValue == "selected")
253           labeltype = UiStyle::Selected;
254         else {
255           qWarning() << Q_FUNC_INFO << tr("Invalid message label: %1").arg(condValue);
256           return UiStyle::Invalid;
257         }
258         fmtType |= (labeltype << 32);
259       } else if(condName == "sender") {
260         if(condValue == "self")
261           fmtType |= (quint64)UiStyle::OwnMsg << 32; // sender="self" is actually treated as a label
262           else {
263             bool ok = true;
264             quint64 val = condValue.toUInt(&ok, 16);
265             if(!ok) {
266               qWarning() << Q_FUNC_INFO << tr("Invalid senderhash specification: %1").arg(condValue);
267               return UiStyle::Invalid;
268             }
269             if(val >= 16) {
270               qWarning() << Q_FUNC_INFO << tr("Senderhash can be at most \"0x0f\"!");
271               return UiStyle::Invalid;
272             }
273             fmtType |= ++val << 48;
274           }
275       } else if(condName == "format") {
276         if(condValue == "bold")
277           fmtType |= UiStyle::Bold;
278         else if(condValue == "italic")
279           fmtType |= UiStyle::Italic;
280         else if(condValue == "underline")
281           fmtType |= UiStyle::Underline;
282         else if(condValue == "reverse")
283           fmtType |= UiStyle::Reverse;
284         else {
285           qWarning() << Q_FUNC_INFO << tr("Invalid format name: %1").arg(condValue);
286           return UiStyle::Invalid;
287         }
288       } else if(condName == "fg-color" || condName == "bg-color") {
289         bool ok;
290         quint8 col = condValue.toUInt(&ok, 16);
291         if(!ok || col > 0x0f) {
292           qWarning() << Q_FUNC_INFO << tr("Illegal IRC color specification (must be between 00 and 0f): %1").arg(condValue);
293           return UiStyle::Invalid;
294         }
295         if(condName == "fg-color")
296           fmtType |= 0x00400000 | (quint32)(col << 24);
297         else
298           fmtType |= 0x00800000 | (quint32)(col << 28);
299       } else {
300         qWarning() << Q_FUNC_INFO << tr("Unhandled condition: %1").arg(condName);
301         return UiStyle::Invalid;
302       }
303     }
304   }
305
306   return fmtType;
307 }
308
309 // FIXME: Code duplication
310 quint32 QssParser::parseItemFormatType(const QString &decl) {
311   QRegExp rx("(Chat|Nick)ListItem(?:\\[([=-,\\\"\\w\\s]+)\\])?");
312   // $1: item type; $2: properties
313   if(!rx.exactMatch(decl)) {
314     qWarning() << Q_FUNC_INFO << tr("Invalid block declaration: %1").arg(decl);
315     return UiStyle::Invalid;
316   }
317   QString mainItemType = rx.cap(1);
318   QString properties = rx.cap(2);
319
320   quint32 fmtType = 0;
321
322   // Next up: properties
323   QString type, state;
324   if(!properties.isEmpty()) {
325     QHash<QString, QString> props;
326     QRegExp propRx("\\s*([\\w\\-]+)\\s*=\\s*\"([\\w\\-]+)\"\\s*");
327     foreach(const QString &prop, properties.split(',', QString::SkipEmptyParts)) {
328       if(!propRx.exactMatch(prop)) {
329         qWarning() << Q_FUNC_INFO << tr("Invalid proplist %1").arg(prop);
330         return UiStyle::Invalid;
331       }
332       props[propRx.cap(1)] = propRx.cap(2);
333     }
334     type = props.value("type");
335     state = props.value("state");
336   }
337
338   if(mainItemType == "Chat") {
339     fmtType |= UiStyle::BufferViewItem;
340     if(!type.isEmpty()) {
341       if(type == "network")
342         fmtType |= UiStyle::NetworkItem;
343       else if(type == "channel")
344         fmtType |= UiStyle::ChannelBufferItem;
345       else if(type == "query")
346         fmtType |= UiStyle::QueryBufferItem;
347       else {
348         qWarning() << Q_FUNC_INFO << tr("Invalid chatlist item type %1").arg(type);
349         return UiStyle::Invalid;
350       }
351     }
352     if(!state.isEmpty()) {
353       if(state == "inactive")
354         fmtType |= UiStyle::InactiveBuffer;
355       else if(state == "channel-event")
356         fmtType |= UiStyle::ActiveBuffer;
357       else if(state == "unread-message")
358         fmtType |= UiStyle::UnreadBuffer;
359       else if(state == "highlighted")
360         fmtType |= UiStyle::HighlightedBuffer;
361       else if(state == "away")
362         fmtType |= UiStyle::UserAway;
363       else {
364         qWarning() << Q_FUNC_INFO << tr("Invalid chatlist state %1").arg(state);
365         return UiStyle::Invalid;
366       }
367     }
368   } else { // NickList
369     fmtType |= UiStyle::NickViewItem;
370     if(!type.isEmpty()) {
371       if(type == "user") {
372         fmtType |= UiStyle::IrcUserItem;
373         if(state == "away")
374           fmtType |= UiStyle::UserAway;
375       } else if(type == "category")
376         fmtType |= UiStyle::UserCategoryItem;
377     }
378   }
379   return fmtType;
380 }
381
382 /******** Parse a whole format attribute block ********/
383
384 QTextCharFormat QssParser::parseFormat(const QString &qss) {
385   QTextCharFormat format;
386
387   foreach(QString line, qss.split(';', QString::SkipEmptyParts)) {
388     int idx = line.indexOf(':');
389     if(idx <= 0) {
390       qWarning() << Q_FUNC_INFO << tr("Invalid property declaration: %1").arg(line.trimmed());
391       continue;
392     }
393     QString property = line.left(idx).trimmed();
394     QString value = line.mid(idx + 1).simplified();
395
396     if(property == "background" || property == "background-color")
397       format.setBackground(parseBrush(value));
398     else if(property == "foreground" || property == "color")
399       format.setForeground(parseBrush(value));
400
401     // font-related properties
402     else if(property.startsWith("font")) {
403       if(property == "font")
404         parseFont(value, &format);
405       else if(property == "font-style")
406         parseFontStyle(value, &format);
407       else if(property == "font-weight")
408         parseFontWeight(value, &format);
409       else if(property == "font-size")
410         parseFontSize(value, &format);
411       else if(property == "font-family")
412         parseFontFamily(value, &format);
413       else {
414         qWarning() << Q_FUNC_INFO << tr("Invalid font property: %1").arg(line);
415         continue;
416       }
417     }
418
419     else {
420       qWarning() << Q_FUNC_INFO << tr("Unknown ChatLine property: %1").arg(property);
421     }
422   }
423
424   return format;
425 }
426
427 /******** Brush ********/
428
429 QBrush QssParser::parseBrush(const QString &str, bool *ok) {
430   if(ok)
431     *ok = false;
432   QColor c = parseColor(str);
433   if(c.isValid()) {
434     if(ok)
435       *ok = true;
436     return QBrush(c);
437   }
438
439   if(str.startsWith("palette")) { // Palette color role
440     QRegExp rx("palette\\s*\\(\\s*([a-z-]+)\\s*\\)");
441     if(!rx.exactMatch(str)) {
442       qWarning() << Q_FUNC_INFO << tr("Invalid palette color role specification: %1").arg(str);
443       return QBrush();
444     }
445     if(_paletteColorRoles.contains(rx.cap(1)))
446       return QBrush(_palette.brush(_paletteColorRoles.value(rx.cap(1))));
447     if(_uiStyleColorRoles.contains(rx.cap(1)))
448       return QBrush(_uiStylePalette.at(_uiStyleColorRoles.value(rx.cap(1))));
449     qWarning() << Q_FUNC_INFO << tr("Unknown palette color role: %1").arg(rx.cap(1));
450     return QBrush();
451
452   } else if(str.startsWith("qlineargradient")) {
453     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
454     QRegExp rx(QString("qlineargradient\\s*\\(\\s*x1:%1,\\s*y1:%1,\\s*x2:%1,\\s*y2:%1,(.+)\\)").arg(rxFloat));
455     if(!rx.exactMatch(str)) {
456       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
457       return QBrush();
458     }
459     qreal x1 = rx.cap(1).toDouble();
460     qreal y1 = rx.cap(2).toDouble();
461     qreal x2 = rx.cap(3).toDouble();
462     qreal y2 = rx.cap(4).toDouble();
463     QGradientStops stops = parseGradientStops(rx.cap(5).trimmed());
464     if(!stops.count()) {
465       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
466       return QBrush();
467     }
468     QLinearGradient gradient(x1, y1, x2, y2);
469     gradient.setCoordinateMode(QGradient::ObjectBoundingMode);
470     gradient.setStops(stops);
471     if(ok)
472       *ok = true;
473     return QBrush(gradient);
474
475   } else if(str.startsWith("qconicalgradient")) {
476     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
477     QRegExp rx(QString("qconicalgradient\\s*\\(\\s*cx:%1,\\s*cy:%1,\\s*angle:%1,(.+)\\)").arg(rxFloat));
478     if(!rx.exactMatch(str)) {
479       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
480       return QBrush();
481     }
482     qreal cx = rx.cap(1).toDouble();
483     qreal cy = rx.cap(2).toDouble();
484     qreal angle = rx.cap(3).toDouble();
485     QGradientStops stops = parseGradientStops(rx.cap(4).trimmed());
486     if(!stops.count()) {
487       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
488       return QBrush();
489     }
490     QConicalGradient gradient(cx, cy, angle);
491     gradient.setCoordinateMode(QGradient::ObjectBoundingMode);
492     gradient.setStops(stops);
493     if(ok)
494       *ok = true;
495     return QBrush(gradient);
496
497   } else if(str.startsWith("qradialgradient")) {
498     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
499     QRegExp rx(QString("qradialgradient\\s*\\(\\s*cx:%1,\\s*cy:%1,\\s*radius:%1,\\s*fx:%1,\\s*fy:%1,(.+)\\)").arg(rxFloat));
500     if(!rx.exactMatch(str)) {
501       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
502       return QBrush();
503     }
504     qreal cx = rx.cap(1).toDouble();
505     qreal cy = rx.cap(2).toDouble();
506     qreal radius = rx.cap(3).toDouble();
507     qreal fx = rx.cap(4).toDouble();
508     qreal fy = rx.cap(5).toDouble();
509     QGradientStops stops = parseGradientStops(rx.cap(6).trimmed());
510     if(!stops.count()) {
511       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
512       return QBrush();
513     }
514     QRadialGradient gradient(cx, cy, radius, fx, fy);
515     gradient.setCoordinateMode(QGradient::ObjectBoundingMode);
516     gradient.setStops(stops);
517     if(ok)
518       *ok = true;
519     return QBrush(gradient);
520   }
521
522   return QBrush();
523 }
524
525 QColor QssParser::parseColor(const QString &str) {
526   if(str.startsWith("rgba")) {
527     ColorTuple tuple = parseColorTuple(str.mid(4));
528     if(tuple.count() == 4)
529       return QColor(tuple.at(0), tuple.at(1), tuple.at(2), tuple.at(3));
530   } else if(str.startsWith("rgb")) {
531     ColorTuple tuple = parseColorTuple(str.mid(3));
532     if(tuple.count() == 3)
533       return QColor(tuple.at(0), tuple.at(1), tuple.at(2));
534   } else if(str.startsWith("hsva")) {
535     ColorTuple tuple = parseColorTuple(str.mid(4));
536     if(tuple.count() == 4) {
537       QColor c;
538       c.setHsvF(tuple.at(0), tuple.at(1), tuple.at(2), tuple.at(3));
539       return c;
540     }
541   } else if(str.startsWith("hsv")) {
542     ColorTuple tuple = parseColorTuple(str.mid(3));
543     if(tuple.count() == 3) {
544       QColor c;
545       c.setHsvF(tuple.at(0), tuple.at(1), tuple.at(2));
546       return c;
547     }
548   } else {
549     QRegExp rx("#?[0-9A-Fa-z]+");
550     if(rx.exactMatch(str))
551       return QColor(str);
552   }
553   return QColor();
554 }
555
556 // get a list of comma-separated int values or percentages (rel to 0-255)
557 QssParser::ColorTuple QssParser::parseColorTuple(const QString &str) {
558   ColorTuple result;
559   QRegExp rx("\\(((\\s*[0-9]{1,3}%?\\s*)(,\\s*[0-9]{1,3}%?\\s*)*)\\)");
560   if(!rx.exactMatch(str.trimmed())) {
561     return ColorTuple();
562   }
563   QStringList values = rx.cap(1).split(',');
564   foreach(QString v, values) {
565     qreal val;
566     bool perc = false;
567     bool ok;
568     v = v.trimmed();
569     if(v.endsWith('%')) {
570       perc = true;
571       v.chop(1);
572     }
573     val = (qreal)v.toUInt(&ok);
574     if(!ok)
575       return ColorTuple();
576     if(perc)
577       val = 255 * val/100;
578     result.append(val);
579   }
580   return result;
581 }
582
583 QGradientStops QssParser::parseGradientStops(const QString &str_) {
584   QString str = str_;
585   QGradientStops result;
586   static QString rxFloat("(0?\\.[0-9]+|[01])"); // values between 0 and 1
587   QRegExp rx(QString("\\s*,?\\s*stop:\\s*(%1)\\s+([^:]+)(,\\s*stop:|$)").arg(rxFloat));
588   int idx;
589   while((idx = rx.indexIn(str)) == 0) {
590     qreal x = rx.cap(1).toDouble();
591     QColor c = parseColor(rx.cap(3));
592     if(!c.isValid())
593       return QGradientStops();
594     result << QGradientStop(x, c);
595     str.remove(0, rx.matchedLength() - rx.cap(4).length());
596   }
597   if(!str.trimmed().isEmpty())
598     return QGradientStops();
599
600   return result;
601 }
602
603 /******** Font Properties ********/
604
605 void QssParser::parseFont(const QString& value, QTextCharFormat* format) {
606   QRegExp rx("((?:(?:normal|italic|oblique|underline|bold|100|200|300|400|500|600|700|800|900) ){0,2}) ?(\\d+)(pt|px)? \"(.*)\"");
607   if(!rx.exactMatch(value)) {
608     qWarning() << Q_FUNC_INFO << tr("Invalid font specification: %1").arg(value);
609     return;
610   }
611   format->setFontItalic(false);
612   format->setFontWeight(QFont::Normal);
613   QStringList proplist = rx.cap(1).split(' ', QString::SkipEmptyParts);
614   foreach(QString prop, proplist) {
615     if(prop == "italic")
616       format->setFontItalic(true);
617     else if(prop == "underline")
618       format->setFontUnderline(true);
619     //else if(prop == "oblique")
620     //  format->setStyle(QFont::StyleOblique);
621     else if(prop == "bold")
622       format->setFontWeight(QFont::Bold);
623     else { // number
624       int w = prop.toInt();
625       format->setFontWeight(qMin(w / 8, 99)); // taken from Qt's qss parser
626     }
627   }
628
629   if(rx.cap(3) == "px")
630     format->setProperty(QTextFormat::FontPixelSize, rx.cap(2).toInt());
631   else
632     format->setFontPointSize(rx.cap(2).toInt());
633
634   format->setFontFamily(rx.cap(4));
635 }
636
637 void QssParser::parseFontStyle(const QString& value, QTextCharFormat* format) {
638   if(value == "normal")
639     format->setFontItalic(false);
640   else if(value == "italic")
641     format->setFontItalic(true);
642   else if(value == "underline")
643     format->setFontUnderline(true);
644   //else if(value == "oblique")
645   //  format->setStyle(QFont::StyleOblique);
646   else {
647     qWarning() << Q_FUNC_INFO << tr("Invalid font style specification: %1").arg(value);
648   }
649 }
650
651 void QssParser::parseFontWeight(const QString& value, QTextCharFormat* format) {
652   if(value == "normal")
653     format->setFontWeight(QFont::Normal);
654   else if(value == "bold")
655     format->setFontWeight(QFont::Bold);
656   else {
657     bool ok;
658     int w = value.toInt(&ok);
659     if(!ok) {
660       qWarning() << Q_FUNC_INFO << tr("Invalid font weight specification: %1").arg(value);
661       return;
662     }
663     format->setFontWeight(qMin(w / 8, 99)); // taken from Qt's qss parser
664   }
665 }
666
667 void QssParser::parseFontSize(const QString& value, QTextCharFormat* format) {
668   QRegExp rx("(\\d+)(pt|px)");
669   if(!rx.exactMatch(value)) {
670     qWarning() << Q_FUNC_INFO << tr("Invalid font size specification: %1").arg(value);
671     return;
672   }
673   if(rx.cap(2) == "px")
674     format->setProperty(QTextFormat::FontPixelSize, rx.cap(1).toInt());
675   else
676     format->setFontPointSize(rx.cap(1).toInt());
677 }
678
679 void QssParser::parseFontFamily(const QString& value, QTextCharFormat* format) {
680   QString family = value;
681   if(family.startsWith('"') && family.endsWith('"')) {
682     family = family.mid(1, family.length() - 2);
683   }
684   format->setFontFamily(family);
685 }