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/GUIMeshDialog/MeshGeoWidget.h

79 lines
1.9 KiB
C

/**
*
* @file MeshGeoWidget.h
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*
*/
#ifndef _MeshGeoWidget_H
#define _MeshGeoWidget_H
#include "GUIMeshDialogAPI.h"
#include "GUIWidget/GUIWidgetBase.h"
class QVBoxLayout;
namespace Ui {
class MeshGeoWidget;
}
namespace EventOper {
class ParaWidgetInterfaceOperator;
}
namespace GUI
{
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
class GUIMeshDialogAPI MeshGeoWidget :public GUIWidgetBase
{
Q_OBJECT;
public:
/**
* @brief Construct a new Mesh Geo Widget object
* @param[i] oper
* @param[i] parent
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
MeshGeoWidget(EventOper::ParaWidgetInterfaceOperator * oper, QWidget* parent = nullptr);
/**
* @brief Destroy the Mesh Geo Widget object
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
~MeshGeoWidget();
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
void init();
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-03
*/
void updateWidget();
private:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-14
*/
EventOper::ParaWidgetInterfaceOperator* _oper = nullptr;
/**
* @brief ui
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-02
*/
Ui::MeshGeoWidget* _ui = nullptr;
};
}
#endif