1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/mapeditor/generatorprogress.cpp

39 lines
635 B
C++
Raw Normal View History

2022-09-01 03:51:29 +02:00
#include "StdInc.h"
2022-08-30 23:24:12 +02:00
#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();
}