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.
33 lines
576 B
C++
33 lines
576 B
C++
#ifndef IMPORTPROGRESSFORM_H
|
|
#define IMPORTPROGRESSFORM_H
|
|
|
|
#include <QWidget>
|
|
#include <iimportprogress.h>
|
|
|
|
namespace Ui {
|
|
class ImportProgressForm;
|
|
}
|
|
|
|
class ImportProgressForm : public QWidget, public IImportProgress
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ImportProgressForm(QWidget *parent = 0);
|
|
~ImportProgressForm();
|
|
|
|
private slots:
|
|
void on_btnCancel_clicked();
|
|
|
|
private:
|
|
Ui::ImportProgressForm *ui;
|
|
bool m_terminate;
|
|
|
|
// IImportProgress interface
|
|
public:
|
|
void updateProgress(int currentPos);
|
|
bool terminate();
|
|
};
|
|
|
|
#endif // IMPORTPROGRESSFORM_H
|