2014-05-13 03:28:20 +00:00
|
|
|
#include <QPushButton>
|
2014-05-12 08:49:59 +00:00
|
|
|
#include "installwizard.h"
|
|
|
|
#include "ui_installwizard.h"
|
2014-05-12 09:00:36 +00:00
|
|
|
#include "installwizard_installtype.h"
|
2014-05-12 09:38:18 +00:00
|
|
|
#include "installwizard_locate.h"
|
2014-05-14 12:33:47 +00:00
|
|
|
#include "installwizard_copy.h"
|
2014-05-13 10:15:00 +00:00
|
|
|
#include "installwizard_eula.h"
|
2014-05-14 09:03:18 +00:00
|
|
|
#include "installwizard_install.h"
|
2014-05-12 09:35:28 +00:00
|
|
|
#include "installwizard_patch.h"
|
|
|
|
#include "installwizard_finished.h"
|
2014-05-12 08:49:59 +00:00
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
InstallWizard::InstallWizard(QWidget *parent, Settings *settings) :
|
|
|
|
QWizard(parent),
|
|
|
|
ui(new Ui::InstallWizard),
|
|
|
|
settings(settings)
|
|
|
|
{
|
2014-05-13 03:28:20 +00:00
|
|
|
setOptions(QWizard::NoCancelButton | QWizard::HaveCustomButton1);
|
|
|
|
cancelButton = new QPushButton("Cancel");
|
|
|
|
setButton(QWizard::CustomButton1, cancelButton);
|
|
|
|
|
|
|
|
QList<QWizard::WizardButton> layout;
|
|
|
|
layout << QWizard::BackButton << QWizard::CustomButton1 << QWizard::Stretch << QWizard::NextButton << QWizard::FinishButton;
|
|
|
|
setButtonLayout(layout);
|
|
|
|
|
2014-05-12 08:49:59 +00:00
|
|
|
ui->setupUi(this);
|
2014-05-13 03:28:20 +00:00
|
|
|
connect(cancelButton, SIGNAL(clicked()), this, SLOT(cancel()));
|
|
|
|
|
2014-05-12 09:00:36 +00:00
|
|
|
setPage(Page_InstallType, new InstallWizard_InstallType(this));
|
2014-05-12 08:49:59 +00:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
setPage(Page_Locate, new InstallWizard_LocatePage(this, settings));
|
|
|
|
#endif
|
2014-05-12 09:35:28 +00:00
|
|
|
|
2014-05-14 09:03:18 +00:00
|
|
|
setPage(Page_Install, new InstallWizard_Install());
|
2014-05-13 10:15:00 +00:00
|
|
|
setPage(Page_Eula, new InstallWizard_Eula());
|
2014-05-14 12:33:47 +00:00
|
|
|
setPage(Page_Copy, new InstallWizard_Copy());
|
2014-05-12 09:35:28 +00:00
|
|
|
setPage(Page_Patch, new InstallWizard_Patch());
|
|
|
|
setPage(Page_Finished, new InstallWizard_Finished());
|
2014-05-12 08:49:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
InstallWizard::~InstallWizard()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2014-05-13 03:28:20 +00:00
|
|
|
void InstallWizard::cancel()
|
|
|
|
{
|
2014-05-14 12:33:47 +00:00
|
|
|
if (currentId() == Page_Copy)
|
|
|
|
{
|
|
|
|
((InstallWizard_Copy *)currentPage())->cancel();
|
|
|
|
}
|
|
|
|
else if (currentId() == Page_Patch)
|
2014-05-13 03:28:20 +00:00
|
|
|
{
|
|
|
|
((InstallWizard_Patch *)currentPage())->cancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
reject();
|
|
|
|
}
|
|
|
|
|
2014-05-13 09:34:15 +00:00
|
|
|
void InstallWizard::on_InstallWizard_finished(int result)
|
2014-05-12 08:49:59 +00:00
|
|
|
{
|
|
|
|
#ifdef Q_OS_WIN32
|
2014-05-13 09:34:15 +00:00
|
|
|
if (result == QDialog::Accepted)
|
|
|
|
{
|
2014-05-12 08:49:59 +00:00
|
|
|
settings->setQuakePath(field("quake3Path").toString());
|
|
|
|
}
|
2014-05-13 09:34:15 +00:00
|
|
|
#else
|
|
|
|
result = result; // Silence warning.
|
|
|
|
#endif
|
2014-05-12 08:49:59 +00:00
|
|
|
}
|