/********************************************************************** * @file LightWidget.h * @brief 灯光界面 * @author BaGuijun (baguijun@163.com) * @date 2024-10-16 *********************************************************************/ #ifndef _LightWidget_H #define _LightWidget_H #include "GUIDialogAPI.h" #include "GUIWidget/GUIWidgetBase.h" namespace Ui{ class LightWidget; } namespace EventOper { class ParaWidgetInterfaceOperator; } namespace GUI { class GUIDialogAPI LightWidget : public GUIWidgetBase { Q_OBJECT; public: LightWidget(EventOper::ParaWidgetInterfaceOperator* oper); ~LightWidget(); void init(); private slots: ; void on_pushButton_clicked(); private: Ui::LightWidget* _ui = nullptr; EventOper::ParaWidgetInterfaceOperator* _oper = nullptr; }; } #endif