X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fqssparser.h;h=c5838925ac79cf5073c7d81a479d5ab93acab062;hp=f4501148a9f0296736f18d6d81f0e7c306a9342d;hb=c64a887d0f05222590299fb2bb8d56fa9fadb16d;hpb=0b17a8e987118c138c91b756f5fed4166a23a354 diff --git a/src/uisupport/qssparser.h b/src/uisupport/qssparser.h index f4501148..c5838925 100644 --- a/src/uisupport/qssparser.h +++ b/src/uisupport/qssparser.h @@ -1,42 +1,43 @@ /*************************************************************************** -* 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-2012 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& listItemFormats() const { return _listItemFormats; } + inline const QHash &formats() const { return _formats; } + inline const QHash &listItemFormats() const { return _listItemFormats; } - protected: +protected: typedef QList ColorTuple; void parseChatLineBlock(const QString &decl, const QString &contents); @@ -64,7 +65,7 @@ class QssParser { QHash _paletteColorRoles; QHash _uiStyleColorRoles; - private: +private: QPalette _palette; QVector _uiStylePalette; QHash _formats; @@ -72,4 +73,5 @@ class QssParser { int _maxSenderHash; }; + #endif