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.

83 lines
2.2 KiB
C

/**********************************************************************
* @file OperatorsWidget.h
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*********************************************************************/
#ifndef _OperatorsWidget_H__
#define _OperatorsWidget_H__
#include "OperatorsGUIAPI.h"
#include "OperatorsInterface/ParaWidgetInterfaceOperator.h"
#include "FITK_Kernel/FITKCore/FITKOperatorRepo.h"
namespace GUI {
class MainWindow;
}
namespace Interface {
class PostGraphObjectManager;
class FITKCFDPost3DManager;
};
namespace Comp {
class FITKGraph3DWindowVTK;
}
namespace OperGUI
{
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
class OperatorsGUIAPI OperatorsWidget : public EventOper::ParaWidgetInterfaceOperator
{
Q_OBJECT;
public:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
explicit OperatorsWidget();
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
~OperatorsWidget() = default;
/**
* @brief
* @param[i] objID id
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-07
*/
virtual void CurrentObjectChange(int objID) override;
private:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
GUI::MainWindow* _mainWin = nullptr;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
Interface::PostGraphObjectManager* _postGraphObjectManager = nullptr;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
Interface::FITKCFDPost3DManager* _postGraphDataManager = nullptr;
};
Register2FITKOPeratorRepo(OperatorsWidget, OperatorsWidget);
} // namespace GUIOper
#endif