Adapt to new topic message type
[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 {
190       qWarning() << Q_FUNC_INFO << tr("Invalid subelement name in %1").arg(decl);
191       return UiStyle::Invalid;
192     }
193   }
194
195   // Now, figure out the message type
196   if(!msgType.isEmpty()) {
197     if(msgType == "plain")
198       fmtType |= UiStyle::PlainMsg;
199     else if(msgType == "notice")
200       fmtType |= UiStyle::NoticeMsg;
201     else if(msgType == "action")
202       fmtType |= UiStyle::ActionMsg;
203     else if(msgType == "nick")
204       fmtType |= UiStyle::NickMsg;
205     else if(msgType == "mode")
206       fmtType |= UiStyle::ModeMsg;
207     else if(msgType == "join")
208       fmtType |= UiStyle::JoinMsg;
209     else if(msgType == "part")
210       fmtType |= UiStyle::PartMsg;
211     else if(msgType == "quit")
212       fmtType |= UiStyle::QuitMsg;
213     else if(msgType == "kick")
214       fmtType |= UiStyle::KickMsg;
215     else if(msgType == "kill")
216       fmtType |= UiStyle::KillMsg;
217     else if(msgType == "server")
218       fmtType |= UiStyle::ServerMsg;
219     else if(msgType == "info")
220       fmtType |= UiStyle::InfoMsg;
221     else if(msgType == "error")
222       fmtType |= UiStyle::ErrorMsg;
223     else if(msgType == "daychange")
224       fmtType |= UiStyle::DayChangeMsg;
225     else if(msgType == "topic")
226       fmtType |= UiStyle::TopicMsg;
227     else {
228       qWarning() << Q_FUNC_INFO << tr("Invalid message type in %1").arg(decl);
229     }
230   }
231
232   // Next up: conditional (formats, labels, nickhash)
233   QRegExp condRx("\\s*([\\w\\-]+)\\s*=\\s*\"(\\w+)\"\\s*");
234   if(!conditions.isEmpty()) {
235     foreach(const QString &cond, conditions.split(',', QString::SkipEmptyParts)) {
236       if(!condRx.exactMatch(cond)) {
237         qWarning() << Q_FUNC_INFO << tr("Invalid condition %1").arg(cond);
238         return UiStyle::Invalid;
239       }
240       QString condName = condRx.cap(1);
241       QString condValue = condRx.cap(2);
242       if(condName == "label") {
243         quint64 labeltype = 0;
244         if(condValue == "highlight")
245           labeltype = UiStyle::Highlight;
246         else if(condValue == "selected")
247           labeltype = UiStyle::Selected;
248         else {
249           qWarning() << Q_FUNC_INFO << tr("Invalid message label: %1").arg(condValue);
250           return UiStyle::Invalid;
251         }
252         fmtType |= (labeltype << 32);
253       } else if(condName == "sender") {
254         if(condValue == "self")
255           fmtType |= (quint64)UiStyle::OwnMsg << 32; // sender="self" is actually treated as a label
256           else {
257             bool ok = true;
258             quint64 val = condValue.toUInt(&ok, 16);
259             if(!ok) {
260               qWarning() << Q_FUNC_INFO << tr("Invalid senderhash specification: %1").arg(condValue);
261               return UiStyle::Invalid;
262             }
263             if(val >= 16) {
264               qWarning() << Q_FUNC_INFO << tr("Senderhash can be at most \"0x0f\"!");
265               return UiStyle::Invalid;
266             }
267             fmtType |= ++val << 48;
268           }
269       } else if(condName == "format") {
270         if(condValue == "bold")
271           fmtType |= UiStyle::Bold;
272         else if(condValue == "italic")
273           fmtType |= UiStyle::Italic;
274         else if(condValue == "underline")
275           fmtType |= UiStyle::Underline;
276         else if(condValue == "reverse")
277           fmtType |= UiStyle::Reverse;
278         else {
279           qWarning() << Q_FUNC_INFO << tr("Invalid format name: %1").arg(condValue);
280           return UiStyle::Invalid;
281         }
282       } else if(condName == "fg-color" || condName == "bg-color") {
283         bool ok;
284         quint8 col = condValue.toUInt(&ok, 16);
285         if(!ok || col > 0x0f) {
286           qWarning() << Q_FUNC_INFO << tr("Illegal IRC color specification (must be between 00 and 0f): %1").arg(condValue);
287           return UiStyle::Invalid;
288         }
289         if(condName == "fg-color")
290           fmtType |= 0x00400000 | (col << 24);
291         else
292           fmtType |= 0x00800000 | (col << 28);
293       } else {
294         qWarning() << Q_FUNC_INFO << tr("Unhandled condition: %1").arg(condName);
295         return UiStyle::Invalid;
296       }
297     }
298   }
299
300   return fmtType;
301 }
302
303 // FIXME: Code duplication
304 quint32 QssParser::parseItemFormatType(const QString &decl) {
305   QRegExp rx("(Chat|Nick)ListItem(?:\\[([=-,\\\"\\w\\s]+)\\])?");
306   // $1: item type; $2: properties
307   if(!rx.exactMatch(decl)) {
308     qWarning() << Q_FUNC_INFO << tr("Invalid block declaration: %1").arg(decl);
309     return UiStyle::Invalid;
310   }
311   QString mainItemType = rx.cap(1);
312   QString properties = rx.cap(2);
313
314   quint32 fmtType = 0;
315
316   // Next up: properties
317   QString type, state;
318   if(!properties.isEmpty()) {
319     QHash<QString, QString> props;
320     QRegExp propRx("\\s*([\\w\\-]+)\\s*=\\s*\"([\\w\\-]+)\"\\s*");
321     foreach(const QString &prop, properties.split(',', QString::SkipEmptyParts)) {
322       if(!propRx.exactMatch(prop)) {
323         qWarning() << Q_FUNC_INFO << tr("Invalid proplist %1").arg(prop);
324         return UiStyle::Invalid;
325       }
326       props[propRx.cap(1)] = propRx.cap(2);
327     }
328     type = props.value("type");
329     state = props.value("state");
330   }
331
332   if(mainItemType == "Chat") {
333     fmtType |= UiStyle::BufferViewItem;
334     if(!type.isEmpty()) {
335       if(type == "network")
336         fmtType |= UiStyle::NetworkItem;
337       else if(type == "channel")
338         fmtType |= UiStyle::ChannelBufferItem;
339       else if(type == "query")
340         fmtType |= UiStyle::QueryBufferItem;
341       else {
342         qWarning() << Q_FUNC_INFO << tr("Invalid chatlist item type %1").arg(type);
343         return UiStyle::Invalid;
344       }
345     }
346     if(!state.isEmpty()) {
347       if(state == "inactive")
348         fmtType |= UiStyle::InactiveBuffer;
349       else if(state == "channel-event")
350         fmtType |= UiStyle::ActiveBuffer;
351       else if(state == "unread-message")
352         fmtType |= UiStyle::UnreadBuffer;
353       else if(state == "highlighted")
354         fmtType |= UiStyle::HighlightedBuffer;
355       else if(state == "away")
356         fmtType |= UiStyle::UserAway;
357       else {
358         qWarning() << Q_FUNC_INFO << tr("Invalid chatlist state %1").arg(state);
359         return UiStyle::Invalid;
360       }
361     }
362   } else { // NickList
363     fmtType |= UiStyle::NickViewItem;
364     if(!type.isEmpty()) {
365       if(type == "user") {
366         fmtType |= UiStyle::IrcUserItem;
367         if(state == "away")
368           fmtType |= UiStyle::UserAway;
369       } else if(type == "category")
370         fmtType |= UiStyle::UserCategoryItem;
371     }
372   }
373   return fmtType;
374 }
375
376 /******** Parse a whole format attribute block ********/
377
378 QTextCharFormat QssParser::parseFormat(const QString &qss) {
379   QTextCharFormat format;
380
381   foreach(QString line, qss.split(';', QString::SkipEmptyParts)) {
382     int idx = line.indexOf(':');
383     if(idx <= 0) {
384       qWarning() << Q_FUNC_INFO << tr("Invalid property declaration: %1").arg(line.trimmed());
385       continue;
386     }
387     QString property = line.left(idx).trimmed();
388     QString value = line.mid(idx + 1).simplified();
389
390     if(property == "background" || property == "background-color")
391       format.setBackground(parseBrush(value));
392     else if(property == "foreground" || property == "color")
393       format.setForeground(parseBrush(value));
394
395     // font-related properties
396     else if(property.startsWith("font")) {
397       if(property == "font")
398         parseFont(value, &format);
399       else if(property == "font-style")
400         parseFontStyle(value, &format);
401       else if(property == "font-weight")
402         parseFontWeight(value, &format);
403       else if(property == "font-size")
404         parseFontSize(value, &format);
405       else if(property == "font-family")
406         parseFontFamily(value, &format);
407       else {
408         qWarning() << Q_FUNC_INFO << tr("Invalid font property: %1").arg(line);
409         continue;
410       }
411     }
412
413     else {
414       qWarning() << Q_FUNC_INFO << tr("Unknown ChatLine property: %1").arg(property);
415     }
416   }
417
418   return format;
419 }
420
421 /******** Brush ********/
422
423 QBrush QssParser::parseBrush(const QString &str, bool *ok) {
424   if(ok)
425     *ok = false;
426   QColor c = parseColor(str);
427   if(c.isValid()) {
428     if(ok)
429       *ok = true;
430     return QBrush(c);
431   }
432
433   if(str.startsWith("palette")) { // Palette color role
434     QRegExp rx("palette\\s*\\(\\s*([a-z-]+)\\s*\\)");
435     if(!rx.exactMatch(str)) {
436       qWarning() << Q_FUNC_INFO << tr("Invalid palette color role specification: %1").arg(str);
437       return QBrush();
438     }
439     if(_paletteColorRoles.contains(rx.cap(1)))
440       return QBrush(_palette.brush(_paletteColorRoles.value(rx.cap(1))));
441     if(_uiStyleColorRoles.contains(rx.cap(1)))
442       return QBrush(_uiStylePalette.at(_uiStyleColorRoles.value(rx.cap(1))));
443     qWarning() << Q_FUNC_INFO << tr("Unknown palette color role: %1").arg(rx.cap(1));
444     return QBrush();
445
446   } else if(str.startsWith("qlineargradient")) {
447     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
448     QRegExp rx(QString("qlineargradient\\s*\\(\\s*x1:%1,\\s*y1:%1,\\s*x2:%1,\\s*y2:%1,(.+)\\)").arg(rxFloat));
449     if(!rx.exactMatch(str)) {
450       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
451       return QBrush();
452     }
453     qreal x1 = rx.cap(1).toDouble();
454     qreal y1 = rx.cap(2).toDouble();
455     qreal x2 = rx.cap(3).toDouble();
456     qreal y2 = rx.cap(4).toDouble();
457     QGradientStops stops = parseGradientStops(rx.cap(5).trimmed());
458     if(!stops.count()) {
459       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
460       return QBrush();
461     }
462     QLinearGradient gradient(x1, y1, x2, y2);
463     gradient.setStops(stops);
464     if(ok)
465       *ok = true;
466     return QBrush(gradient);
467
468   } else if(str.startsWith("qconicalgradient")) {
469     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
470     QRegExp rx(QString("qconicalgradient\\s*\\(\\s*cx:%1,\\s*cy:%1,\\s*angle:%1,(.+)\\)").arg(rxFloat));
471     if(!rx.exactMatch(str)) {
472       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
473       return QBrush();
474     }
475     qreal cx = rx.cap(1).toDouble();
476     qreal cy = rx.cap(2).toDouble();
477     qreal angle = rx.cap(3).toDouble();
478     QGradientStops stops = parseGradientStops(rx.cap(4).trimmed());
479     if(!stops.count()) {
480       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
481       return QBrush();
482     }
483     QConicalGradient gradient(cx, cy, angle);
484     gradient.setStops(stops);
485     if(ok)
486       *ok = true;
487     return QBrush(gradient);
488
489   } else if(str.startsWith("qradialgradient")) {
490     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
491     QRegExp rx(QString("qradialgradient\\s*\\(\\s*cx:%1,\\s*cy:%1,\\s*radius:%1,\\s*fx:%1,\\s*fy:%1,(.+)\\)").arg(rxFloat));
492     if(!rx.exactMatch(str)) {
493       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
494       return QBrush();
495     }
496     qreal cx = rx.cap(1).toDouble();
497     qreal cy = rx.cap(2).toDouble();
498     qreal radius = rx.cap(3).toDouble();
499     qreal fx = rx.cap(4).toDouble();
500     qreal fy = rx.cap(5).toDouble();
501     QGradientStops stops = parseGradientStops(rx.cap(6).trimmed());
502     if(!stops.count()) {
503       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
504       return QBrush();
505     }
506     QRadialGradient gradient(cx, cy, radius, fx, fy);
507     gradient.setStops(stops);
508     if(ok)
509       *ok = true;
510     return QBrush(gradient);
511   }
512
513   return QBrush();
514 }
515
516 QColor QssParser::parseColor(const QString &str) {
517   if(str.startsWith("rgba")) {
518     ColorTuple tuple = parseColorTuple(str.mid(4));
519     if(tuple.count() == 4)
520       return QColor(tuple.at(0), tuple.at(1), tuple.at(2), tuple.at(3));
521   } else if(str.startsWith("rgb")) {
522     ColorTuple tuple = parseColorTuple(str.mid(3));
523     if(tuple.count() == 3)
524       return QColor(tuple.at(0), tuple.at(1), tuple.at(2));
525   } else if(str.startsWith("hsva")) {
526     ColorTuple tuple = parseColorTuple(str.mid(4));
527     if(tuple.count() == 4) {
528       QColor c;
529       c.setHsvF(tuple.at(0), tuple.at(1), tuple.at(2), tuple.at(3));
530       return c;
531     }
532   } else if(str.startsWith("hsv")) {
533     ColorTuple tuple = parseColorTuple(str.mid(3));
534     if(tuple.count() == 3) {
535       QColor c;
536       c.setHsvF(tuple.at(0), tuple.at(1), tuple.at(2));
537       return c;
538     }
539   } else {
540     QRegExp rx("#?[0-9A-Fa-z]+");
541     if(rx.exactMatch(str))
542       return QColor(str);
543   }
544   return QColor();
545 }
546
547 // get a list of comma-separated int values or percentages (rel to 0-255)
548 QssParser::ColorTuple QssParser::parseColorTuple(const QString &str) {
549   ColorTuple result;
550   QRegExp rx("\\(((\\s*[0-9]{1,3}%?\\s*)(,\\s*[0-9]{1,3}%?\\s*)*)\\)");
551   if(!rx.exactMatch(str.trimmed())) {
552     return ColorTuple();
553   }
554   QStringList values = rx.cap(1).split(',');
555   foreach(QString v, values) {
556     qreal val;
557     bool perc = false;
558     bool ok;
559     v = v.trimmed();
560     if(v.endsWith('%')) {
561       perc = true;
562       v.chop(1);
563     }
564     val = (qreal)v.toUInt(&ok);
565     if(!ok)
566       return ColorTuple();
567     if(perc)
568       val = 255 * val/100;
569     result.append(val);
570   }
571   return result;
572 }
573
574 QGradientStops QssParser::parseGradientStops(const QString &str_) {
575   QString str = str_;
576   QGradientStops result;
577   static QString rxFloat("(0?\\.[0-9]+|[01])"); // values between 0 and 1
578   QRegExp rx(QString("\\s*,?\\s*stop:\\s*(%1)\\s+([^:]+)(,\\s*stop:|$)").arg(rxFloat));
579   int idx;
580   while((idx = rx.indexIn(str)) == 0) {
581     qreal x = rx.cap(1).toDouble();
582     QColor c = parseColor(rx.cap(3));
583     if(!c.isValid())
584       return QGradientStops();
585     result << QGradientStop(x, c);
586     str.remove(0, rx.matchedLength() - rx.cap(4).length());
587   }
588   if(!str.trimmed().isEmpty())
589     return QGradientStops();
590
591   return result;
592 }
593
594 /******** Font Properties ********/
595
596 void QssParser::parseFont(const QString& value, QTextCharFormat* format) {
597   QRegExp rx("((?:(?:normal|italic|oblique|underline|bold|100|200|300|400|500|600|700|800|900) ){0,2}) ?(\\d+)(pt|px)? \"(.*)\"");
598   if(!rx.exactMatch(value)) {
599     qWarning() << Q_FUNC_INFO << tr("Invalid font specification: %1").arg(value);
600     return;
601   }
602   format->setFontItalic(false);
603   format->setFontWeight(QFont::Normal);
604   QStringList proplist = rx.cap(1).split(' ', QString::SkipEmptyParts);
605   foreach(QString prop, proplist) {
606     if(prop == "italic")
607       format->setFontItalic(true);
608     else if(prop == "underline")
609       format->setFontUnderline(true);
610     //else if(prop == "oblique")
611     //  format->setStyle(QFont::StyleOblique);
612     else if(prop == "bold")
613       format->setFontWeight(QFont::Bold);
614     else { // number
615       int w = prop.toInt();
616       format->setFontWeight(qMin(w / 8, 99)); // taken from Qt's qss parser
617     }
618   }
619
620   if(rx.cap(3) == "px")
621     format->setProperty(QTextFormat::FontPixelSize, rx.cap(2).toInt());
622   else
623     format->setFontPointSize(rx.cap(2).toInt());
624
625   format->setFontFamily(rx.cap(4));
626 }
627
628 void QssParser::parseFontStyle(const QString& value, QTextCharFormat* format) {
629   if(value == "normal")
630     format->setFontItalic(false);
631   else if(value == "italic")
632     format->setFontItalic(true);
633   else if(value == "underline")
634     format->setFontUnderline(true);
635   //else if(value == "oblique")
636   //  format->setStyle(QFont::StyleOblique);
637   else {
638     qWarning() << Q_FUNC_INFO << tr("Invalid font style specification: %1").arg(value);
639   }
640 }
641
642 void QssParser::parseFontWeight(const QString& value, QTextCharFormat* format) {
643   if(value == "normal")
644     format->setFontWeight(QFont::Normal);
645   else if(value == "bold")
646     format->setFontWeight(QFont::Bold);
647   else {
648     bool ok;
649     int w = value.toInt(&ok);
650     if(!ok) {
651       qWarning() << Q_FUNC_INFO << tr("Invalid font weight specification: %1").arg(value);
652       return;
653     }
654     format->setFontWeight(qMin(w / 8, 99)); // taken from Qt's qss parser
655   }
656 }
657
658 void QssParser::parseFontSize(const QString& value, QTextCharFormat* format) {
659   QRegExp rx("\\(d+)(pt|px)");
660   if(!rx.exactMatch(value)) {
661     qWarning() << Q_FUNC_INFO << tr("Invalid font size specification: %1").arg(value);
662     return;
663   }
664   if(rx.cap(2) == "px")
665     format->setProperty(QTextFormat::FontPixelSize, rx.cap(1).toInt());
666   else
667     format->setFontPointSize(rx.cap(1).toInt());
668 }
669
670 void QssParser::parseFontFamily(const QString& value, QTextCharFormat* format) {
671   QString family = value;
672   if(family.startsWith('"') && family.endsWith('"')) {
673     family = family.mid(1, family.length() - 2);
674   }
675   format->setFontFamily(family);
676 }