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.
22 lines
437 B
C++
22 lines
437 B
C++
#ifndef CUIWIDGET_H
|
|
#define CUIWIDGET_H
|
|
|
|
class CUIConfig;
|
|
class CUI;
|
|
#include <QWidget>
|
|
#include "CUIComponentBaseContainerWidget.h"
|
|
#include "CUIComponentBase.h"
|
|
|
|
class CUIWidget : public CUIComponentBaseContainerWidget, CUIComponentBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CUIWidget(CUIConfig* conf, QVector<CUI*> &subCUI, QWidget *parent = nullptr);
|
|
private:
|
|
void iniUI(QVector<CUI*> &subCUI);
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // CUIWIDGET_H
|