You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#ifndef CUICONTAINERGROUPBOX_H
|
|
|
|
|
#define CUICONTAINERGROUPBOX_H
|
|
|
|
|
|
|
|
|
|
#include <QGroupBox>
|
|
|
|
|
|
|
|
|
|
#include "CUIComponentBase.h"
|
|
|
|
|
#include "CUIComponentBaseContainerWidget.h"
|
|
|
|
|
class CUIPropertyWidget;
|
|
|
|
|
class CUIConfig;
|
|
|
|
|
class QGroupBox;
|
|
|
|
|
|
|
|
|
|
class CUIContainerGroupBox : public CUIComponentBaseContainerWidget,
|
|
|
|
|
public CUIComponentBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit CUIContainerGroupBox(CUIConfig *conf,
|
|
|
|
|
QVector<CUIPropertyWidget *> &subCUI,
|
|
|
|
|
QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
QGroupBox *m_groupBox;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void initUI(QVector<CUIPropertyWidget *> &subCUI);
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // CUICONTAINERGROUPBOX_H
|