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.
AppFlow/CFDStruct/CUIProperty/CUIComponentCheckBox.h

28 lines
545 B
C

#ifndef CUICOMPONENTCHECKBOX_H
#define CUICOMPONENTCHECKBOX_H
#include <QWidget>
#include <QCheckBox>
#include "CUIComponentBaseWidget.h"
#include "CUIComponentBase.h"
class CUIConfig;
class CUI;
class CUIComponentCheckBox : public CUIComponentBaseWidget, public CUIComponentBase
{
Q_OBJECT
public:
explicit CUIComponentCheckBox(CUIConfig* conf, QVector<CUI*> &subCUI, QWidget *parent = nullptr);
private:
void initUI(QVector<CUI*> &subCUI);
private:
QCheckBox* m_checkBox;
signals:
};
#endif // CUICOMPONENTCHECKBOX_H