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.
25 lines
488 B
C++
25 lines
488 B
C++
#ifndef CUIMULTITABLEWIDGET_H
|
|
#define CUIMULTITABLEWIDGET_H
|
|
|
|
#include "CUIComponentBaseWidget.h"
|
|
#include "CUIComponentBase.h"
|
|
|
|
class QTableWidget;
|
|
class CUI;
|
|
|
|
class CUIMultiTableWidget : public CUIComponentBaseWidget, public CUIComponentBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CUIMultiTableWidget(CUIConfig* conf, QVector<CUI*> &subCUI, QWidget *parent = nullptr);
|
|
protected:
|
|
void initUI();
|
|
|
|
protected:
|
|
QTableWidget* m_tableWidget;
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // CUIMULTITABLEWIDGET_H
|