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