X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Ffontselector.h;h=b8c2b49b897c7e78b248f36733e4c111bb1b62d9;hb=c8ddabf364eff2400c61cea395aefe69eb8ba1b3;hp=640c437bb3c4d6bae9c367ba7b654e93f03a2ab6;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/uisupport/fontselector.h b/src/uisupport/fontselector.h index 640c437b..b8c2b49b 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-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,41 +15,39 @@ * 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_ -#define FONTSELECTOR_H_ +#pragma once + +#include "uisupport-export.h" #include #include -class FontSelector : public QWidget +class UISUPPORT_EXPORT FontSelector : public QWidget { Q_OBJECT Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) -public : - FontSelector(QWidget *parent = 0); +public: + FontSelector(QWidget* parent = nullptr); - 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) override; protected slots: void chooseFont(); private: QFont _font; - QLabel *_demo; + QLabel* _demo; }; - - -#endif // FONTSELECTOR_H_