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

@ -17,6 +17,8 @@
#include "themes/BrightTheme.h"
#include "themes/CustomTheme.h"
#include "setupwizard/SetupWizard.h"
#include <iostream>
#include <QDir>
#include <QFileInfo>
@ -318,6 +320,13 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
initAnalytics();
if(SetupWizard::isRequired())
{
m_setupWizard = new SetupWizard(nullptr);
int result = m_setupWizard->exec();
qDebug() << "Wizard result =" << result;
}
if(!m_instanceIdToLaunch.isEmpty())
{
auto inst = instances()->getInstanceById(m_instanceIdToLaunch);