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 CUICONTAINERWIDGET_H
|
|
|
|
|
#define CUICONTAINERWIDGET_H
|
|
|
|
|
|
|
|
|
|
class CUIConfig;
|
|
|
|
|
class CUIPropertyWidget;
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
#include "CUIComponentBase.h"
|
|
|
|
|
#include "CUIComponentBaseContainerWidget.h"
|
|
|
|
|
|
|
|
|
|
class CUIContainerWidget : public CUIComponentBaseContainerWidget, public CUIComponentBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit CUIContainerWidget(CUIConfig *conf, QVector<CUIPropertyWidget *> &subCUI,
|
|
|
|
|
QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void initUI(QVector<CUIPropertyWidget *> &subCUI);
|
|
|
|
|
signals:
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // CUICONTAINERWIDGET_H
|