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.

69 lines
2.0 KiB
C

/**********************************************************************
* @file GraphEventOperator.h
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*********************************************************************/
#ifndef __GRAPHEVENTOPERATOR_H__
#define __GRAPHEVENTOPERATOR_H__
#include "FITK_Kernel/FITKCore/FITKAbstractOperator.h"
#include "OperatorsInterfaceAPI.h"
namespace EventOper
{
class OperatorsInterfaceAPI GraphEventOperator : public Core::FITKAbstractOperator
{
Q_OBJECT;
public:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
explicit GraphEventOperator() = default;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
virtual ~GraphEventOperator() = default;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
virtual void updateAll();
/**
* @brief
* @param[i] postDataID id
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
virtual void updateSingle(int postDataID);
/**
* @brief
* @param[i] dataID id
* @author BaGuijun (baguijun@163.com)
* @date 2024-10-16
*/
virtual void updateLight(int dataID);
/**
* @brief
* @param[i] postDataID id
* @param[i] isShow
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
virtual void updateShow(int postDataID, bool isShow);
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
virtual void reRender();
};
}
#endif