X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fircconnectionwizard.h;h=1db66ccbc78fa4cfdf465825994628b2b9d4a764;hp=aa65a039bfbf6d08a4d58b88bdd3427a4ec52eee;hb=a700bd999215313b075ced5a1e3ba4ea8917fbbc;hpb=da86ee7178494e6e5404887ddac98d5e107cc747 diff --git a/src/qtui/ircconnectionwizard.h b/src/qtui/ircconnectionwizard.h index aa65a039..1db66ccb 100644 --- a/src/qtui/ircconnectionwizard.h +++ b/src/qtui/ircconnectionwizard.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2020 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 IRCCONNECTIONWIZARD_H @@ -25,26 +25,26 @@ #include "types.h" -class IrcConnectionWizard : public QWizard { - Q_OBJECT +class IrcConnectionWizard : public QWizard +{ + Q_OBJECT public: - IrcConnectionWizard(QWidget *parent = 0, Qt::WindowFlags flags = 0); + IrcConnectionWizard(QWidget* parent = nullptr, Qt::WindowFlags flags = {}); - static QWizardPage *createIntroductionPage(QWidget *parent = 0); + static QWizardPage* createIntroductionPage(QWidget* parent = nullptr); private slots: - void finishClicked(); - void identityReady(IdentityId id); - void networkReady(NetworkId id); + void finishClicked(); + void identityReady(IdentityId id); + void networkReady(NetworkId id); private: - QWizardPage *_introductionPage; - QWizardPage *_identityPage; - QWizardPage *_networkPage; + QWizardPage* _introductionPage{nullptr}; + QWizardPage* _identityPage{nullptr}; + QWizardPage* _networkPage{nullptr}; }; - // ============================== // Wizard Pages // ============================== @@ -54,38 +54,39 @@ private: class IdentityEditWidget; -class IdentityPage : public QWizardPage { - Q_OBJECT +class IdentityPage : public QWizardPage +{ + Q_OBJECT public: - IdentityPage(QWidget *parent = 0); + IdentityPage(QWidget* parent = nullptr); - CertIdentity *identity(); + CertIdentity* identity(); private: - IdentityEditWidget *_identityEditWidget; - CertIdentity *_identity; + IdentityEditWidget* _identityEditWidget; + CertIdentity* _identity{nullptr}; }; - // Network Page #include "network.h" class SimpleNetworkEditor; -class NetworkPage : public QWizardPage { - Q_OBJECT +class NetworkPage : public QWizardPage +{ + Q_OBJECT public: - NetworkPage(QWidget *parent = 0); + NetworkPage(QWidget* parent = nullptr); - NetworkInfo networkInfo(); - QStringList channelList(); + NetworkInfo networkInfo(); + QStringList channelList(); private: - SimpleNetworkEditor *_networkEditor; - NetworkInfo _networkInfo; - QStringList _channelList; + SimpleNetworkEditor* _networkEditor; + NetworkInfo _networkInfo; + QStringList _channelList; }; -#endif //IRCCONNECTIONWIZARD_H +#endif // IRCCONNECTIONWIZARD_H