| 123456789101112131415161718192021222324252627 |
- #ifndef NUMBERCOPY_H
- #define NUMBERCOPY_H
- #include <QtCore>
- #include "snccore.h"
- #include "numberlistmodel.h"
- #include "numbercopy.h"
- class SNCCORESHARED_EXPORT NumberCopy : public QThread
- {
- Q_OBJECT
- public:
- explicit NumberCopy(NumberListModel *model);
- ~NumberCopy();
- void abort();
- protected:
- void run();
- signals:
- void progressMaxUpdated(int max);
- void progressUpdated(int i);
- void numberCopyed(QString content);
- private:
- NumberListModel *model;
- bool stop ;
- public slots:
-
- };
- #endif // NUMBERCOPY_H
|