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