NOISSUE add skeleton of the setup wizard

Very wizardly. Also very empty and opening on every start for now.
This commit is contained in:
Petr Mrázek
2016-12-01 02:17:27 +01:00
parent 374710a87b
commit 476d641841
6 changed files with 338 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#include "SetupWizard.h"
enum Page
{
Language,
Java,
Analytics,
Themes,
Accounts
};
#include "ui_SetupWizard.h"
SetupWizard::SetupWizard(QWidget *parent):QWizard(parent), ui(new Ui::SetupWizard)
{
ui->setupUi(this);
}
SetupWizard::~SetupWizard()
{
}
bool SetupWizard::isRequired()
{
return true;
}