qt/LedOK/base/waitingdlg.h
2022-08-25 18:37:24 +08:00

23 lines
456 B
C++

#ifndef WAITINGDLG_H
#define WAITINGDLG_H
#include "basedlg.h"
#include "LoUIClass/customprogressindicator.h"
#include <QLabel>
class WaitingDlg : public BaseDlg {
Q_OBJECT
public:
explicit WaitingDlg(QWidget *parent = nullptr, QString text = 0);
void success();
QLabel *fdText;
CustomProgressIndicator *mIndicator;
protected:
void timerEvent(QTimerEvent *) override;
private:
int closeTimerId{0};
};
#endif // WAITINGDLG_H