Core: in LDAP authenticator, don't try database auth with blank password
[quassel.git] / src / uisupport / qssparser.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include <utility>
24
25 #include "uistyle.h"
26
27 class QssParser
28 {
29     Q_DECLARE_TR_FUNCTIONS(QssParser)
30
31 public:
32     QssParser();
33
34     void processStyleSheet(QString& sheet);
35
36     inline QPalette palette() const { return _palette; }
37     inline QVector<QBrush> uiStylePalette() const { return _uiStylePalette; }
38     inline const QHash<quint64, QTextCharFormat>& formats() const { return _formats; }
39     inline const QHash<UiStyle::ItemFormatType, QTextCharFormat>& listItemFormats() const { return _listItemFormats; }
40
41 protected:
42     using ColorTuple = QList<qreal>;
43
44     void parseChatLineBlock(const QString& decl, const QString& contents);
45     void parsePaletteBlock(const QString& decl, const QString& contents);
46     void parseListItemBlock(const QString& decl, const QString& contents);
47
48     std::pair<UiStyle::FormatType, UiStyle::MessageLabel> parseFormatType(const QString& decl);
49     UiStyle::ItemFormatType parseItemFormatType(const QString& decl);
50
51     QTextCharFormat parseFormat(const QString& qss);
52
53     // Parse boolean properties
54     bool parseBoolean(const QString& str, bool* ok = nullptr) const;
55
56     // Parse color/brush-related properties
57     QBrush parseBrush(const QString& str, bool* ok = nullptr);
58     QColor parseColor(const QString& str);
59     ColorTuple parseColorTuple(const QString& str);
60     QGradientStops parseGradientStops(const QString& str);
61
62     // Parse font-related properties
63     void parseFont(const QString& str, QTextCharFormat* format);
64     void parseFontStyle(const QString& str, QTextCharFormat* format);
65     void parseFontWeight(const QString& str, QTextCharFormat* format);
66     void parseFontSize(const QString& str, QTextCharFormat* format);
67     void parseFontFamily(const QString& str, QTextCharFormat* format);
68
69     QHash<QString, QPalette::ColorRole> _paletteColorRoles;
70     QHash<QString, UiStyle::ColorRole> _uiStyleColorRoles;
71
72 private:
73     QPalette _palette;
74     QVector<QBrush> _uiStylePalette;
75     QHash<quint64, QTextCharFormat> _formats;
76     QHash<UiStyle::ItemFormatType, QTextCharFormat> _listItemFormats;
77 };