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

22 lines
461 B
C++

#ifndef FrequentShower_H
#define FrequentShower_H
#include "../Global.h"
class FrequentShower : public QWidget {
public:
explicit FrequentShower(QWidget *parent = nullptr);
void setFrequent(quint64 frequent);
int selectIndex = 0;
QString mFrequent = "00.000.000.000";
protected:
void paintEvent(QPaintEvent *event) override;
void keyPressEvent(QKeyEvent *event) override;
void move(int num);
void change(int num);
};
#endif