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.
61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
/**********************************************************************
|
|
* @file OperatorsStreamLine.h
|
|
* @brief 流线操作器
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-12
|
|
*********************************************************************/
|
|
#ifndef _OperatorsStreamLine_H_
|
|
#define _OperatorsStreamLine_H_
|
|
|
|
#include "FITK_Kernel/FITKCore/FITKActionOperator.h"
|
|
#include "FITK_Kernel/FITKCore/FITKOperatorRepo.h"
|
|
#include "FITK_Kernel/FITKCore/FITKThreadTask.h"
|
|
#include "OperatorsBase.h"
|
|
|
|
namespace OperModel
|
|
{
|
|
/**
|
|
* @brief 流线管理器
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-12
|
|
*/
|
|
class OperatorsStreamLine : public OperatorsBase
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
/**
|
|
* @brief Construct a new Operators Open object
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-04
|
|
*/
|
|
explicit OperatorsStreamLine() = default;
|
|
/**
|
|
* @brief Destroy the Operators Open object
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-04
|
|
*/
|
|
~OperatorsStreamLine( ) = default;
|
|
/**
|
|
* @brief ui事件
|
|
* @return true 成功
|
|
* @return false 失败
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-04
|
|
*/
|
|
virtual bool execGUI( ) override;
|
|
/**
|
|
* @brief 执行结果处理
|
|
* @return true 成功
|
|
* @return false 失败
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-04
|
|
*/
|
|
virtual bool execProfession();
|
|
};
|
|
|
|
//根据按钮的ObjectName进行注册按钮事件
|
|
Register2FITKOPeratorRepo(actionStreamlineCreate, OperatorsStreamLine);
|
|
Register2FITKOPeratorRepo(actionStreamlineEdit, OperatorsStreamLine);
|
|
}
|
|
|
|
#endif |