X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fqssparser.h;h=e2081b981d4daee619f21dcaf17fa4601b680f72;hb=83662b607de9eb742fe9de4dd9445914a6bd9456;hp=ece588011b798d62dac901f2233987aa736f2634;hpb=120861b909702039da9993278d8319dad14fd292;p=quassel.git diff --git a/src/uisupport/qssparser.h b/src/uisupport/qssparser.h index ece58801..e2081b98 100644 --- a/src/uisupport/qssparser.h +++ b/src/uisupport/qssparser.h @@ -1,50 +1,53 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ + * Copyright (C) 2005-2015 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ #ifndef QSSPARSER_H_ #define QSSPARSER_H_ #include "uistyle.h" -class QssParser { - Q_DECLARE_TR_FUNCTIONS(QssParser) +class QssParser +{ + Q_DECLARE_TR_FUNCTIONS(QssParser) - public: +public: QssParser(); void processStyleSheet(QString &sheet); inline QPalette palette() const { return _palette; } inline QVector uiStylePalette() const { return _uiStylePalette; } - inline const QHash& formats() const { return _formats; } + inline const QHash &formats() const { return _formats; } + inline const QHash &listItemFormats() const { return _listItemFormats; } - protected: +protected: typedef QList ColorTuple; - void parseChatLineData(const QString &decl, const QString &contents); - void parsePaletteData(const QString &decl, const QString &contents); + void parseChatLineBlock(const QString &decl, const QString &contents); + void parsePaletteBlock(const QString &decl, const QString &contents); + void parseListItemBlock(const QString &decl, const QString &contents); quint64 parseFormatType(const QString &decl); + quint32 parseItemFormatType(const QString &decl); QTextCharFormat parseFormat(const QString &qss); - bool parsePalette(QPalette &, const QString &qss); // Parse color/brush-related properties QBrush parseBrush(const QString &str, bool *ok = 0); @@ -62,11 +65,12 @@ class QssParser { QHash _paletteColorRoles; QHash _uiStyleColorRoles; - private: +private: QPalette _palette; QVector _uiStylePalette; QHash _formats; - int _maxSenderHash; + QHash _listItemFormats; }; + #endif