X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fcoreconfigwizard.h;h=2943c15842587c262763f3f652b4f1b5927eec7c;hp=5b09a872655ca15079278d5a588fcecf1a4c3e21;hb=54ebc1bf00f4f9a8376629925329f0e72be04662;hpb=cfbd4daee17dbb3c4052d938bf33edd08711d728 diff --git a/src/qtui/coreconfigwizard.h b/src/qtui/coreconfigwizard.h index 5b09a872..2943c158 100644 --- a/src/qtui/coreconfigwizard.h +++ b/src/qtui/coreconfigwizard.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 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 * @@ -35,8 +35,10 @@ class CoreConnection; namespace CoreConfigWizardPages { + class SyncPage; class SyncRelayPage; + }; class CoreConfigWizard : public QWizard @@ -64,7 +66,6 @@ signals: void loginToCore(const QString &user, const QString &password, bool rememberPassword); public slots: - void loginSuccess(); void syncFinished(); private slots: @@ -82,6 +83,7 @@ private: namespace CoreConfigWizardPages { + class IntroPage : public QWizardPage { Q_OBJECT @@ -106,7 +108,7 @@ private: Ui::CoreConfigWizardAdminUserPage ui; }; -// Authentication selection before storage selection. + class AuthenticationSelectionPage : public QWizardPage { Q_OBJECT @@ -124,11 +126,11 @@ private slots: private: Ui::CoreConfigWizardAuthenticationSelectionPage ui; - QGroupBox *_fieldBox {nullptr}; std::vector _authProperties; std::vector> _authFields; }; + class StorageSelectionPage : public QWizardPage { Q_OBJECT @@ -146,11 +148,11 @@ private slots: private: Ui::CoreConfigWizardStorageSelectionPage ui; - QGroupBox *_fieldBox {nullptr}; std::vector _backendProperties; std::vector> _backendFields; }; + class SyncPage : public QWizardPage { Q_OBJECT @@ -194,4 +196,5 @@ signals: private: Mode mode; }; + }