22 lines
461 B
C++
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
|
|
|
|
|
|
|
|
|