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