mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
39 lines
635 B
C++
39 lines
635 B
C++
#include "StdInc.h"
|
|
#include "generatorprogress.h"
|
|
#include "ui_generatorprogress.h"
|
|
#include <thread>
|
|
#include <chrono>
|
|
|
|
GeneratorProgress::GeneratorProgress(Load::Progress & source, QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::GeneratorProgress),
|
|
source(source)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
setWindowFlags(Qt::Window);
|
|
|
|
show();
|
|
}
|
|
|
|
GeneratorProgress::~GeneratorProgress()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
|
|
void GeneratorProgress::update()
|
|
{
|
|
while(!source.finished())
|
|
{
|
|
int status = float(source.get()) / 2.55f;
|
|
ui->progressBar->setValue(status);
|
|
qApp->processEvents();
|
|
}
|
|
|
|
//delete source;
|
|
close();
|
|
}
|