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.
AppFlow/GUIFrame/ControlPanelWidget.h

43 lines
858 B
C

/**
* @file ControlPanelWidget.h
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
#ifndef __CONTROLPANELWIDGET_H__
#define __CONTROLPANELWIDGET_H__
#include "PanelWidgetBase.h"
/**
* @brief GUI
* @since 1.0.0
*/
namespace GUI
{
class MainWindow;
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
class ControlPanelWidget : public PanelWidgetBase
{
Q_OBJECT
public:
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
ControlPanelWidget(MainWindow *mainWindow);
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
~ControlPanelWidget();
};
}
#endif // !__CONTROLPANELWINDOW_H__