27 lines
587 B
C++
27 lines
587 B
C++
#ifndef P09_REMOTEPAGE_H
|
|
#define P09_REMOTEPAGE_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
namespace Ui {
|
|
class P09_RemotePage;
|
|
}
|
|
|
|
class P09_RemotePage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit P09_RemotePage(QWidget *parent = nullptr);
|
|
~P09_RemotePage();
|
|
void WinInit();
|
|
void SetStyle2(QLabel *Leabel,QStringList List,bool b1,bool b2,bool isNull = false);
|
|
void SetStyle3(QLabel *Leabel,QStringList List,bool b1,bool b2,bool b3,bool isNull = false);
|
|
private slots:
|
|
void UIRefreshTimeOut();
|
|
private:
|
|
Ui::P09_RemotePage *ui;
|
|
};
|
|
|
|
#endif // P09_REMOTEPAGE_H
|