/********************************************************************** * @file OperatorsGlyph.h * @brief 图像符号管理器 * @author BaGuijun (baguijun@163.com) * @date 2024-09-12 *********************************************************************/ #ifndef _OperatorsGlyph_H_ #define _OperatorsGlyph_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 OperatorsGlyph : public OperatorsBase { Q_OBJECT; public: /** * @brief Construct a new Operators Open object * @author BaGuijun (baguijun@163.com) * @date 2024-09-04 */ explicit OperatorsGlyph(); /** * @brief Destroy the Operators Open object * @author BaGuijun (baguijun@163.com) * @date 2024-09-04 */ ~OperatorsGlyph( ) = 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(actionGlyphCreate, OperatorsGlyph); Register2FITKOPeratorRepo(actionGlyphEdit, OperatorsGlyph); } #endif