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/GUIDialog/GUIGeometryDialog/GeometryDeleteDialog.h

89 lines
2.2 KiB
C

/**
*
* @file GeometryDeleteDialog.h
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*
*/
#ifndef GeometryDeleteDialog_H
#define GeometryDeleteDialog_H
#include "GUIGeometryDialogAPI.h"
#include "GUIWidget/GUIDialogBase.h"
namespace Ui {
class GeometryDeleteDialog;
}
namespace EventOper {
class ParaWidgetInterfaceOperator;
}
namespace Interface {
class FITKAbsGeoCommand;
}
namespace GUI
{
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
class GUIGeometryDialogAPI GeometryDeleteDialog : public GUIDialogBase
{
Q_OBJECT;
public:
/**
* @brief Construct a new Geometry Delete Dialog object
* @param[i] obj
* @param[i] oper
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
GeometryDeleteDialog(Interface::FITKAbsGeoCommand* obj, EventOper::ParaWidgetInterfaceOperator* oper);
/**
* @brief Destroy the Geometry Delete Dialog object
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
~GeometryDeleteDialog();
private slots:
;
/**
* @brief Ok
* @author BaGuijun (baguijun@163.com)
* @date 2024-07-16
*/
void on_pushButton_OK_clicked();
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-07-16
*/
void on_pushButton_Cancel_clicked();
protected:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
EventOper::ParaWidgetInterfaceOperator* _oper = nullptr;
/**
* @brief ui
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
Ui::GeometryDeleteDialog* _ui = nullptr;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
Interface::FITKAbsGeoCommand* _obj = nullptr;
};
}
#endif