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/RenderWidget.h

59 lines
1.1 KiB
C

/**
* @file RenderWidget.h
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
#ifndef __RENDERWIDGET_H__
#define __RENDERWIDGET_H__
#include "GUIFrameAPI.h"
#include "PanelWidgetBase.h"
namespace Comp
{
class FITKMdiArea;
}
namespace GUI
{
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
class GUIFRAMEAPI RenderWidget : public PanelWidgetBase
{
Q_OBJECT
public:
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
RenderWidget(MainWindow *mainWindow);
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
~RenderWidget() = default;
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
Comp::FITKMdiArea* getMdiArea() const;
private:
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
Comp::FITKMdiArea* m_MdiArea{};
};
}
#endif // !__RENDERWIDGET_H__