Files
Radio/module/radio/component/ShowTime.h
T
2026-06-16 13:38:08 +08:00

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