You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
636 B
C++
35 lines
636 B
C++
8 years ago
|
#include "importprogressform.h"
|
||
|
#include "ui_importprogressform.h"
|
||
|
|
||
|
ImportProgressForm::ImportProgressForm(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::ImportProgressForm)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
ui->progressBar->setRange(0, 100);
|
||
|
ui->progressBar->setValue(0);
|
||
|
|
||
|
m_terminate = false;
|
||
|
}
|
||
|
|
||
|
ImportProgressForm::~ImportProgressForm()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
void ImportProgressForm::on_btnCancel_clicked()
|
||
|
{
|
||
|
m_terminate = true;
|
||
|
this->close();
|
||
|
}
|
||
|
|
||
|
void ImportProgressForm::updateProgress(int currentPos)
|
||
|
{
|
||
|
ui->progressBar->setValue(currentPos);
|
||
|
}
|
||
|
|
||
|
bool ImportProgressForm::terminate()
|
||
|
{
|
||
|
return m_terminate;
|
||
|
}
|