c5f86eec74614237d1f053f07489fe1c54911bf2
[quassel.git] / src / uisupport / qssparser.h
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 #ifndef QSSPARSER_H_
22 #define QSSPARSER_H_
23
24 #include "uistyle.h"
25
26 class QssParser {
27   Q_DECLARE_TR_FUNCTIONS(QssParser)
28
29   public:
30     enum Column {
31       Any,
32       Timestamp,
33       Sender,
34       Contents
35     };
36
37     struct ChatLineFormat {
38       QVector<QTextCharFormat> senderColors;
39       QVector<QTextCharFormat> mircColors;
40       QHash<UiStyle::FormatType, QTextCharFormat> formats;
41
42     };
43
44     QssParser();
45
46     void loadStyleSheet(const QString &sheet);
47
48     inline QPalette palette() const { return _palette; }
49     ChatLineFormat basicFormat() const;
50     QHash<UiStyle::FormatType, ChatLineFormat> specialFormats() const;
51
52   protected:
53     typedef QList<qreal> ColorTuple;
54
55     void parseChatLineData(const QString &decl, const QString &contents);
56     void parsePaletteData(const QString &decl, const QString &contents);
57
58     quint64 parseFormatType(const QString &decl);
59
60     QTextCharFormat parseFormat(const QString &qss);
61     bool parsePalette(QPalette &, const QString &qss);
62
63     // Parse basic data types
64     QBrush parseBrushValue(const QString &str);
65     QColor parseColorValue(const QString &str);
66     QFont parseFontValue(const QString &str);
67
68     // Parse subelements
69     ColorTuple parseColorTuple(const QString &str);
70     QGradientStops parseGradientStops(const QString &str);
71
72     QHash<QString, QPalette::ColorRole> _paletteColorRoles;
73
74   private:
75     QPalette _palette;
76     ChatLineFormat _basicFormat;
77     QHash<UiStyle::FormatType, ChatLineFormat> _specialFormats;
78     int _maxSenderHash;
79 };
80
81 #endif