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