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.
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @file FITKGraphOperator.h
|
|
|
|
|
* @brief 绘图控制器接口声明
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-03-14
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#ifndef _FITKGraphOperator_H_
|
|
|
|
|
#define _FITKGraphOperator_H_
|
|
|
|
|
|
|
|
|
|
#include "FITK_Kernel/FITKCore/FITKAbstractOperator.h"
|
|
|
|
|
#include "FITKRenderWindowVTKAPI.h"
|
|
|
|
|
|
|
|
|
|
namespace Comp
|
|
|
|
|
{
|
|
|
|
|
class FITKGraphObject;
|
|
|
|
|
class FITKGraph3DWindowVTK;
|
|
|
|
|
/**
|
|
|
|
|
* @brief 绘图控制器
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-03-14
|
|
|
|
|
*/
|
|
|
|
|
class FITKRenderWindowVTKAPI FITKGraphOperator :public Core::FITKAbstractOperator
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* @brief Construct a new FITKGraphOperator object
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-03-14
|
|
|
|
|
*/
|
|
|
|
|
FITKGraphOperator();
|
|
|
|
|
/**
|
|
|
|
|
* @brief Destroy the FITKGraphOperator object
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-03-14
|
|
|
|
|
*/
|
|
|
|
|
virtual ~FITKGraphOperator() = 0;
|
|
|
|
|
/**
|
|
|
|
|
* @brief 设置绘图操作器对应的渲染窗口
|
|
|
|
|
* @param[i] w 渲染窗口对象
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-03-18
|
|
|
|
|
*/
|
|
|
|
|
void setGraph3DWindow(FITKGraph3DWindowVTK* w);
|
|
|
|
|
/**
|
|
|
|
|
* @brief 获取对应的渲染窗口对象
|
|
|
|
|
* @return FITKGraph3DWindow*
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-03-18
|
|
|
|
|
*/
|
|
|
|
|
FITKGraph3DWindowVTK* getGraph3DWindow();
|
|
|
|
|
protected:
|
|
|
|
|
/**
|
|
|
|
|
* @brief 渲染窗口对象
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-03-18
|
|
|
|
|
*/
|
|
|
|
|
FITKGraph3DWindowVTK* m_graph3DWindow = nullptr;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|