2014-05-17 07:10:16 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2013 The ioquake Group
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
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-17 07:16:04 +00:00
|
|
|
connect(cancelButton, &QPushButton::clicked, this, &InstallWizard::cancel);
|
2014-05-13 03:28:20 +00:00
|
|
|
|
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-16 11:33:57 +00:00
|
|
|
void InstallWizard::clearFileCopyOperations()
|
2014-05-15 09:53:17 +00:00
|
|
|
{
|
2014-05-16 11:33:57 +00:00
|
|
|
fileCopyOperations.clear();
|
2014-05-15 09:53:17 +00:00
|
|
|
}
|
|
|
|
|
2014-05-16 11:33:57 +00:00
|
|
|
void InstallWizard::addFileCopyOperation(const QString &source, const QString &dest)
|
2014-05-15 04:20:50 +00:00
|
|
|
{
|
2014-05-16 12:41:57 +00:00
|
|
|
FileOperation fo;
|
|
|
|
fo.source = source;
|
|
|
|
fo.dest = dest;
|
|
|
|
fileCopyOperations.append(fo);
|
2014-05-15 04:20:50 +00:00
|
|
|
}
|
|
|
|
|
2014-05-16 12:41:57 +00:00
|
|
|
const QList<FileOperation> &InstallWizard::getFileCopyOperations() const
|
2014-05-15 04:20:50 +00:00
|
|
|
{
|
2014-05-16 11:33:57 +00:00
|
|
|
return fileCopyOperations;
|
2014-05-15 04:20:50 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|