X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ffontselector.h;h=62527eb73664abdd0dc9d7a1228943e137fb25b7;hp=3c7b2941a2afb464e6ff9c07a987c17bf3cfd3df;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222 diff --git a/src/uisupport/fontselector.h b/src/uisupport/fontselector.h index 3c7b2941..62527eb7 100644 --- a/src/uisupport/fontselector.h +++ b/src/uisupport/fontselector.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,38 +18,36 @@ * 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_