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