Don't crash on Windows (again)
[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.setStops(stops);
470     if(ok)
471       *ok = true;
472     return QBrush(gradient);
473
474   } else if(str.startsWith("qconicalgradient")) {
475     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
476     QRegExp rx(QString("qconicalgradient\\s*\\(\\s*cx:%1,\\s*cy:%1,\\s*angle:%1,(.+)\\)").arg(rxFloat));
477     if(!rx.exactMatch(str)) {
478       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
479       return QBrush();
480     }
481     qreal cx = rx.cap(1).toDouble();
482     qreal cy = rx.cap(2).toDouble();
483     qreal angle = rx.cap(3).toDouble();
484     QGradientStops stops = parseGradientStops(rx.cap(4).trimmed());
485     if(!stops.count()) {
486       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
487       return QBrush();
488     }
489     QConicalGradient gradient(cx, cy, angle);
490     gradient.setStops(stops);
491     if(ok)
492       *ok = true;
493     return QBrush(gradient);
494
495   } else if(str.startsWith("qradialgradient")) {
496     static QString rxFloat("\\s*(-?\\s*[0-9]*\\.?[0-9]+)\\s*");
497     QRegExp rx(QString("qradialgradient\\s*\\(\\s*cx:%1,\\s*cy:%1,\\s*radius:%1,\\s*fx:%1,\\s*fy:%1,(.+)\\)").arg(rxFloat));
498     if(!rx.exactMatch(str)) {
499       qWarning() << Q_FUNC_INFO << tr("Invalid gradient declaration: %1").arg(str);
500       return QBrush();
501     }
502     qreal cx = rx.cap(1).toDouble();
503     qreal cy = rx.cap(2).toDouble();
504     qreal radius = rx.cap(3).toDouble();
505     qreal fx = rx.cap(4).toDouble();
506     qreal fy = rx.cap(5).toDouble();
507     QGradientStops stops = parseGradientStops(rx.cap(6).trimmed());
508     if(!stops.count()) {
509       qWarning() << Q_FUNC_INFO << tr("Invalid gradient stops list: %1").arg(str);
510       return QBrush();
511     }
512     QRadialGradient gradient(cx, cy, radius, fx, fy);
513     gradient.setStops(stops);
514     if(ok)
515       *ok = true;
516     return QBrush(gradient);
517   }
518
519   return QBrush();
520 }
521
522 QColor QssParser::parseColor(const QString &str) {
523   if(str.startsWith("rgba")) {
524     ColorTuple tuple = parseColorTuple(str.mid(4));
525     if(tuple.count() == 4)
526       return QColor(tuple.at(0), tuple.at(1), tuple.at(2), tuple.at(3));
527   } else if(str.startsWith("rgb")) {
528     ColorTuple tuple = parseColorTuple(str.mid(3));
529     if(tuple.count() == 3)
530       return QColor(tuple.at(0), tuple.at(1), tuple.at(2));
531   } else if(str.startsWith("hsva")) {
532     ColorTuple tuple = parseColorTuple(str.mid(4));
533     if(tuple.count() == 4) {
534       QColor c;
535       c.setHsvF(tuple.at(0), tuple.at(1), tuple.at(2), tuple.at(3));
536       return c;
537     }
538   } else if(str.startsWith("hsv")) {
539     ColorTuple tuple = parseColorTuple(str.mid(3));
540     if(tuple.count() == 3) {
541       QColor c;
542       c.setHsvF(tuple.at(0), tuple.at(1), tuple.at(2));
543       return c;
544     }
545   } else {
546     QRegExp rx("#?[0-9A-Fa-z]+");
547     if(rx.exactMatch(str))
548       return QColor(str);
549   }
550   return QColor();
551 }
552
553 // get a list of comma-separated int values or percentages (rel to 0-255)
554 QssParser::ColorTuple QssParser::parseColorTuple(const QString &str) {
555   ColorTuple result;
556   QRegExp rx("\\(((\\s*[0-9]{1,3}%?\\s*)(,\\s*[0-9]{1,3}%?\\s*)*)\\)");
557   if(!rx.exactMatch(str.trimmed())) {
558     return ColorTuple();
559   }
560   QStringList values = rx.cap(1).split(',');
561   foreach(QString v, values) {
562     qreal val;
563     bool perc = false;
564     bool ok;
565     v = v.trimmed();
566     if(v.endsWith('%')) {
567       perc = true;
568       v.chop(1);
569     }
570     val = (qreal)v.toUInt(&ok);
571     if(!ok)
572       return ColorTuple();
573     if(perc)
574       val = 255 * val/100;
575     result.append(val);
576   }
577   return result;
578 }
579
580 QGradientStops QssParser::parseGradientStops(const QString &str_) {
581   QString str = str_;
582   QGradientStops result;
583   static QString rxFloat("(0?\\.[0-9]+|[01])"); // values between 0 and 1
584   QRegExp rx(QString("\\s*,?\\s*stop:\\s*(%1)\\s+([^:]+)(,\\s*stop:|$)").arg(rxFloat));
585   int idx;
586   while((idx = rx.indexIn(str)) == 0) {
587     qreal x = rx.cap(1).toDouble();
588     QColor c = parseColor(rx.cap(3));
589     if(!c.isValid())
590       return QGradientStops();
591     result << QGradientStop(x, c);
592     str.remove(0, rx.matchedLength() - rx.cap(4).length());
593   }
594   if(!str.trimmed().isEmpty())
595     return QGradientStops();
596
597   return result;
598 }
599
600 /******** Font Properties ********/
601
602 void QssParser::parseFont(const QString& value, QTextCharFormat* format) {
603   QRegExp rx("((?:(?:normal|italic|oblique|underline|bold|100|200|300|400|500|600|700|800|900) ){0,2}) ?(\\d+)(pt|px)? \"(.*)\"");
604   if(!rx.exactMatch(value)) {
605     qWarning() << Q_FUNC_INFO << tr("Invalid font specification: %1").arg(value);
606     return;
607   }
608   format->setFontItalic(false);
609   format->setFontWeight(QFont::Normal);
610   QStringList proplist = rx.cap(1).split(' ', QString::SkipEmptyParts);
611   foreach(QString prop, proplist) {
612     if(prop == "italic")
613       format->setFontItalic(true);
614     else if(prop == "underline")
615       format->setFontUnderline(true);
616     //else if(prop == "oblique")
617     //  format->setStyle(QFont::StyleOblique);
618     else if(prop == "bold")
619       format->setFontWeight(QFont::Bold);
620     else { // number
621       int w = prop.toInt();
622       format->setFontWeight(qMin(w / 8, 99)); // taken from Qt's qss parser
623     }
624   }
625
626   if(rx.cap(3) == "px")
627     format->setProperty(QTextFormat::FontPixelSize, rx.cap(2).toInt());
628   else
629     format->setFontPointSize(rx.cap(2).toInt());
630
631   format->setFontFamily(rx.cap(4));
632 }
633
634 void QssParser::parseFontStyle(const QString& value, QTextCharFormat* format) {
635   if(value == "normal")
636     format->setFontItalic(false);
637   else if(value == "italic")
638     format->setFontItalic(true);
639   else if(value == "underline")
640     format->setFontUnderline(true);
641   //else if(value == "oblique")
642   //  format->setStyle(QFont::StyleOblique);
643   else {
644     qWarning() << Q_FUNC_INFO << tr("Invalid font style specification: %1").arg(value);
645   }
646 }
647
648 void QssParser::parseFontWeight(const QString& value, QTextCharFormat* format) {
649   if(value == "normal")
650     format->setFontWeight(QFont::Normal);
651   else if(value == "bold")
652     format->setFontWeight(QFont::Bold);
653   else {
654     bool ok;
655     int w = value.toInt(&ok);
656     if(!ok) {
657       qWarning() << Q_FUNC_INFO << tr("Invalid font weight specification: %1").arg(value);
658       return;
659     }
660     format->setFontWeight(qMin(w / 8, 99)); // taken from Qt's qss parser
661   }
662 }
663
664 void QssParser::parseFontSize(const QString& value, QTextCharFormat* format) {
665   QRegExp rx("(\\d+)(pt|px)");
666   if(!rx.exactMatch(value)) {
667     qWarning() << Q_FUNC_INFO << tr("Invalid font size specification: %1").arg(value);
668     return;
669   }
670   if(rx.cap(2) == "px")
671     format->setProperty(QTextFormat::FontPixelSize, rx.cap(1).toInt());
672   else
673     format->setFontPointSize(rx.cap(1).toInt());
674 }
675
676 void QssParser::parseFontFamily(const QString& value, QTextCharFormat* format) {
677   QString family = value;
678   if(family.startsWith('"') && family.endsWith('"')) {
679     family = family.mid(1, family.length() - 2);
680   }
681   format->setFontFamily(family);
682 }