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.
AppFlow/GUIFrame/ActionEventHandler.h

59 lines
1.1 KiB
C

/**
*
* @file ActionEventHandler.h
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2023-03-28
*
*/
#ifndef __EVENTOPERATOR_H__
#define __EVENTOPERATOR_H__
#include <QObject>
namespace Core
{
class FITKActionOperator;
}
namespace GUI
{
class EventOperator;
/**
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2023-03-28
*/
class ActionEventHandler : public QObject
{
Q_OBJECT
public:
ActionEventHandler() = default;
~ActionEventHandler() = default;
public slots:
/**
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2023-03-28
*/
void execOperator();
private:
/**
* @brief
* @param object
* @return Core::FITKActionOperator*
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2023-04-06
*/
Core::FITKActionOperator* getOperator(QObject* object);
};
} // namespace EventOper
#endif