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