16 lines
264 B
C++
16 lines
264 B
C++
#ifndef ShowTime_H
|
|
#define ShowTime_H
|
|
#include "../Global.h"
|
|
#include <QTimer>
|
|
class ShowTime : public QWidget {
|
|
public:
|
|
explicit ShowTime(QWidget *parent = nullptr);
|
|
QTimer mTimer;
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
};
|
|
#endif
|
|
|
|
|
|
|