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.

93 lines
2.8 KiB
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*****************************************************************//**
* @file OperGraphPickPreview.h
* @brief 拾取预选高亮操作器。
*
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-19
*********************************************************************/
#ifndef __OPERGRAPHPICKPREVIEW_H__
#define __OPERGRAPHPICKPREVIEW_H__
#include "OperatorsInterface/GraphInteractionOperator.h"
#include "FITK_Kernel/FITKCore/FITKOperatorRepo.h"
// 前置声明
namespace Interface {
class PostGraphObjectPick;
}
namespace GraphData
{
class PickedDataProvider;
}
namespace GUIOper
{
/**
* @brief 高亮可视化事件处理。
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-19
*/
class OperGraphPickPreview : public EventOper::GraphInteractionOperator
{
public:
/**
* @brief 构造函数。
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-19
*/
explicit OperGraphPickPreview();
/**
* @brief 析构函数。
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-19
*/
~OperGraphPickPreview();
/**
* @brief 预选单个节点或单元接口。[重写]
* @param graphWindow可视化窗口
* @param actor演员
* @param index索引
* @param pickedWorldPos拾取的世界坐标
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-19
*/
void picked(Comp::FITKGraph3DWindowVTK* graphWindow, vtkActor* actor, int index, double* pickedWorldPos) override;
///**
// * @brief 清除预选高亮对象渲染。[重写]
// * @param graphWindow可视化窗口[缺省]
// * @author ChengHaotian (yeguangbaozi@foxmail.com)
// * @date 2024-07-19
// */
//void clear(Comp::FITKGraph3DWindowVTK* graphWindow = nullptr) override;
private:
/**
* @brief 添加可视化对象至三维窗口。
* @param obj可视化对象
* @param graphWidget三维窗口
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-19
*/
void addGraphObjectToWidget(Interface::PostGraphObjectPick* obj, Comp::FITKGraph3DWindowVTK* graphWidget);
private:
/**
* @brief 拾取信息管理器。
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-19
*/
GraphData::PickedDataProvider* m_pickedProvider{ nullptr };
};
Register2FITKOPeratorRepo(GraphPickPreview, OperGraphPickPreview);
} // namespace GUIOper
#endif // __OPERGRAPHPICKPREVIEW_H__