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.
26 lines
488 B
C
26 lines
488 B
C
3 weeks ago
|
#ifndef CUIWIDGET_H
|
||
|
#define CUIWIDGET_H
|
||
|
|
||
|
#include<CUICommon.h>
|
||
|
class CUIConfig;
|
||
|
class CUI;
|
||
|
#include <QWidget>
|
||
|
|
||
|
class CUIWidget : public QWidget, public CUICommon
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CUIWidget(CUIConfig* conf, QVector<CUI*> &subCUI, QWidget *parent = nullptr);
|
||
|
private:
|
||
|
void iniUI(QVector<CUI*> &subCUI);
|
||
|
// void appLayout();
|
||
|
QString getProperty(QString p);
|
||
|
CUIConfig* conf;
|
||
|
QLayout* layout;
|
||
|
// QVector<CUI> subUI;
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // CUIWIDGET_H
|