| 123456789101112131415161718192021222324252627 |
- #include "dottextautorepeat.h"
- DotTextAutoRepeat::DotTextAutoRepeat()
- {
- this->stop = false;
- }
- DotTextAutoRepeat::~DotTextAutoRepeat()
- {
- qDebug()<<QDateTime::currentDateTime().toString("yyyy-MM-dd HH:mm:ss")\
- <<"ShowDisplayText Destroyed.";
- }
- void DotTextAutoRepeat::abort()
- {
- this->stop = true;
- }
- void DotTextAutoRepeat::run()
- {
- int i=1;
- while(!stop)
- {
- if(i>6)
- i=1;
- emit showText(QString(".").leftJustified(i++,'.'));
- msleep(500);
- }
- }
|