2013-02-06 04:04:20 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
#include "ProgressDialog.h"
|
|
|
|
#include "ui_ProgressDialog.h"
|
2013-02-06 04:04:20 +05:30
|
|
|
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
#include "logic/tasks/Task.h"
|
2013-10-18 22:12:41 +05:30
|
|
|
#include "gui/platform.h"
|
2013-02-06 04:04:20 +05:30
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
ProgressDialog::ProgressDialog(QWidget *parent) :
|
2013-02-06 04:04:20 +05:30
|
|
|
QDialog(parent),
|
2013-09-18 03:30:35 +05:30
|
|
|
ui(new Ui::ProgressDialog)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-10-18 22:12:41 +05:30
|
|
|
MultiMCPlatform::fixWM_CLASS(this);
|
2013-02-06 04:04:20 +05:30
|
|
|
ui->setupUi(this);
|
|
|
|
updateSize();
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
changeProgress(0,100);
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
ProgressDialog::~ProgressDialog()
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void ProgressDialog::updateSize()
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
resize(QSize(480, minimumSizeHint().height()));
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
int ProgressDialog::exec(ProgressProvider *task)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
this->task = task;
|
|
|
|
|
|
|
|
// Connect signals.
|
2013-08-09 03:56:35 +05:30
|
|
|
connect(task, SIGNAL(started()), SLOT(onTaskStarted()));
|
2013-09-18 03:30:35 +05:30
|
|
|
connect(task, SIGNAL(failed(QString)), SLOT(onTaskFailed(QString)));
|
|
|
|
connect(task, SIGNAL(succeeded()), SLOT(onTaskSucceeded()));
|
|
|
|
connect(task, SIGNAL(status(QString)), SLOT(changeStatus(const QString&)));
|
|
|
|
connect(task, SIGNAL(progress(qint64,qint64)), SLOT(changeProgress(qint64,qint64)));
|
2013-02-06 04:04:20 +05:30
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
// this makes sure that the task is started after the dialog is created
|
2013-09-18 03:30:35 +05:30
|
|
|
QMetaObject::invokeMethod(task, "start", Qt::QueuedConnection);
|
|
|
|
return QDialog::exec();
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
ProgressProvider* ProgressDialog::getTask()
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
return task;
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void ProgressDialog::onTaskStarted()
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void ProgressDialog::onTaskFailed(QString failure)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
reject();
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void ProgressDialog::onTaskSucceeded()
|
|
|
|
{
|
|
|
|
accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgressDialog::changeStatus(const QString &status)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
ui->statusLabel->setText(status);
|
|
|
|
updateSize();
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void ProgressDialog::changeProgress(qint64 current, qint64 total)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
ui->taskProgressBar->setMaximum(total);
|
|
|
|
ui->taskProgressBar->setValue(current);
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void ProgressDialog::keyPressEvent(QKeyEvent* e)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
if (e->key() == Qt::Key_Escape)
|
|
|
|
return;
|
|
|
|
QDialog::keyPressEvent(e);
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void ProgressDialog::closeEvent(QCloseEvent* e)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
|
|
|
if (task && task->isRunning())
|
|
|
|
{
|
|
|
|
e->ignore();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QDialog::closeEvent(e);
|
|
|
|
}
|
|
|
|
}
|