You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
896 B
C

/**********************************************************************
* @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