33 lines
779 B
C++
33 lines
779 B
C++
#ifndef P902_REMOTEPAGE_H
|
|
#define P902_REMOTEPAGE_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
#include <QTimer>
|
|
#include <QDebug>
|
|
#include <GlobalDefinitions/Variable.h>
|
|
#include <PublicFunctions/BitMaps.h>
|
|
#include <PublicFunctions/Basic.h>
|
|
namespace Ui {
|
|
class P902_RemotePage;
|
|
}
|
|
|
|
class P902_RemotePage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit P902_RemotePage(QWidget *parent = nullptr);
|
|
~P902_RemotePage();
|
|
void WinInit();
|
|
qreal readCurrent(QString Dev);
|
|
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::P902_RemotePage *ui;
|
|
};
|
|
|
|
#endif // P902_REMOTEPAGE_H
|