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-15 06:29:22 +00:00
|
|
|
#include "installwizard_setup.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-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),
|
2014-05-15 06:40:17 +00:00
|
|
|
settings(settings),
|
|
|
|
isQuake3PatchRequired(false)
|
2014-05-12 08:49:59 +00:00
|
|
|
{
|
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-15 06:29:22 +00:00
|
|
|
setPage(Page_Setup, new InstallWizard_Setup(this, settings));
|
2014-05-15 03:51:35 +00:00
|
|
|
setPage(Page_Eula, new InstallWizard_Eula(this));
|
|
|
|
setPage(Page_Copy, new InstallWizard_Copy(this));
|
|
|
|
setPage(Page_Patch, new InstallWizard_Patch(this));
|
|
|
|
setPage(Page_Finished, new InstallWizard_Finished(this));
|
2014-05-12 08:49:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
InstallWizard::~InstallWizard()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2014-05-15 09:53:17 +00:00
|
|
|
void InstallWizard::clearCopyFiles()
|
|
|
|
{
|
|
|
|
copyFiles.clear();
|
|
|
|
}
|
|
|
|
|
2014-05-15 04:20:50 +00:00
|
|
|
void InstallWizard::addCopyFile(const QString &source, const QString &dest)
|
|
|
|
{
|
|
|
|
CopyFile cf;
|
|
|
|
cf.source = source;
|
|
|
|
cf.dest = dest;
|
|
|
|
copyFiles.append(cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
const QList<InstallWizard::CopyFile> &InstallWizard::getCopyFiles() const
|
|
|
|
{
|
|
|
|
return copyFiles;
|
|
|
|
}
|
|
|
|
|
2014-05-15 06:40:17 +00:00
|
|
|
bool InstallWizard::getIsQuake3PatchRequired() const
|
|
|
|
{
|
|
|
|
return isQuake3PatchRequired;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstallWizard::setIsQuake3PatchRequired(bool value)
|
|
|
|
{
|
|
|
|
isQuake3PatchRequired = value;
|
|
|
|
}
|
|
|
|
|
2014-05-15 07:21:13 +00:00
|
|
|
QString InstallWizard::getQuakePath() const
|
|
|
|
{
|
|
|
|
return quakePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstallWizard::setQuakePath(const QString &path)
|
|
|
|
{
|
|
|
|
quakePath = path;
|
|
|
|
}
|
|
|
|
|
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-15 07:21:13 +00:00
|
|
|
settings->setQuakePath(quakePath);
|
2014-05-12 08:49:59 +00:00
|
|
|
}
|
2014-05-13 09:34:15 +00:00
|
|
|
#else
|
|
|
|
result = result; // Silence warning.
|
|
|
|
#endif
|
2014-05-12 08:49:59 +00:00
|
|
|
}
|