#ifndef CUICOMPONENTRADIOBUTTON_H #define CUICOMPONENTRADIOBUTTON_H #include #include #include "CUIComponentBaseWidget.h" #include "CUIComponentBase.h" class CUIConfig; class CUI; 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