dottextautorepeat.h 448 B

1234567891011121314151617181920212223
  1. #ifndef DOTTEXTAUTOREPEAT_H
  2. #define DOTTEXTAUTOREPEAT_H
  3. #include <QThread>
  4. #include <QtCore>
  5. #include "SNCCore_global.h"
  6. class SNCCORESHARED_EXPORT DotTextAutoRepeat : public QThread
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit DotTextAutoRepeat();
  11. ~DotTextAutoRepeat();
  12. void abort();
  13. protected:
  14. void run();
  15. signals:
  16. void showText(QString msg);
  17. public slots:
  18. private:
  19. bool stop;
  20. };
  21. #endif // DOTTEXTAUTOREPEAT_H