22 lines
474 B
C
22 lines
474 B
C
|
|
#ifndef MONITORATTRIBUTEGROUPDLG_H
|
||
|
|
#define MONITORATTRIBUTEGROUPDLG_H
|
||
|
|
|
||
|
|
/**********************监控属性页中单组的具体内容*************************/
|
||
|
|
#include <QScrollArea>
|
||
|
|
#include <QVBoxLayout>
|
||
|
|
|
||
|
|
class MonitorAttributeGroupDlg : public QScrollArea
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
MonitorAttributeGroupDlg(QWidget *parent = nullptr);
|
||
|
|
~MonitorAttributeGroupDlg();
|
||
|
|
|
||
|
|
void initial();
|
||
|
|
void createGroupView();
|
||
|
|
private:
|
||
|
|
QVBoxLayout* _layout;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|