X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ffontselector.h;h=0150d197a64e3e102410d2b4d45a5004aa5eeab7;hp=378bf2960758fc8814dc6864e27eb73abe20a538;hb=bd0b31b38c8111206ce630dbeac7a6c19bdb8a6e;hpb=8040de61d6bb8a1fa5388827efd6037cb6feed8e diff --git a/src/uisupport/fontselector.h b/src/uisupport/fontselector.h index 378bf296..0150d197 100644 --- a/src/uisupport/fontselector.h +++ b/src/uisupport/fontselector.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * 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. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef FONTSELECTOR_H_ @@ -24,30 +24,32 @@ #include #include -class FontSelector : public QWidget { - Q_OBJECT - Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) +class FontSelector : public QWidget +{ + Q_OBJECT + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) -public: - FontSelector(QWidget *parent = 0); +public : + FontSelector(QWidget *parent = 0); - inline const QFont &selectedFont() const { return _font; } + inline const QFont &selectedFont() const { return _font; } public slots: - void setSelectedFont(const QFont &font); + void setSelectedFont(const QFont &font); signals: - void fontChanged(const QFont &); + void fontChanged(const QFont &); protected: - void changeEvent(QEvent *e); + void changeEvent(QEvent *e); protected slots: - void chooseFont(); + void chooseFont(); private: - QFont _font; - QLabel *_demo; + QFont _font; + QLabel *_demo; }; + #endif // FONTSELECTOR_H_