39 lines
619 B
C++
39 lines
619 B
C++
#ifndef CREATECYLINDRICALCOMPLEXDIALOG_H_
|
|
#define CREATECYLINDRICALCOMPLEXDIALOG_H_
|
|
|
|
#include "geometryWidgetsAPI.h"
|
|
#include "geoDialogBase.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class CreateCylindricalComplex;
|
|
}
|
|
|
|
namespace GeometryWidget
|
|
{
|
|
|
|
|
|
class GEOMETRYWIDGETSAPI CreateCylindricalComplexDialog : public GeoDialogBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CreateCylindricalComplexDialog(GUI::MainWindow* m, MainWidget::PreWindow* p);
|
|
~CreateCylindricalComplexDialog();
|
|
|
|
private:
|
|
|
|
void closeEvent(QCloseEvent *);
|
|
void reject() override;
|
|
void accept() override;
|
|
|
|
|
|
private:
|
|
Ui::CreateCylindricalComplex* _ui{};
|
|
|
|
|
|
};
|
|
}
|
|
|
|
|
|
|
|
#endif |