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.
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
#include "OperatorsDiscretization.h"
|
|
|
|
#include "GUIFrame/PropertyWidget.h"
|
|
#include "OperatorsInterface/TreeEventOperator.h"
|
|
#include "GUIDialog/GUICalculateDialog/DiscretizationWidget.h"
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAppFramework.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKGlobalData.h"
|
|
|
|
namespace ModelOper
|
|
{
|
|
OperatorsDiscretization::OperatorsDiscretization()
|
|
{
|
|
|
|
}
|
|
|
|
OperatorsDiscretization::~OperatorsDiscretization()
|
|
{
|
|
|
|
}
|
|
|
|
bool OperatorsDiscretization::execGUI()
|
|
{
|
|
GUI::MainWindow* mainWindow = dynamic_cast<GUI::MainWindow*>(FITKAPP->getGlobalData()->getMainWindow());
|
|
if (mainWindow == nullptr)return false;
|
|
GUI::PropertyWidget* propertyWidget = mainWindow->getPropertyWidget();
|
|
if (propertyWidget == nullptr)return false;
|
|
|
|
GUI::DiscretizationWidget* widget = new GUI::DiscretizationWidget(this, propertyWidget);
|
|
propertyWidget->setWidget(widget);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool OperatorsDiscretization::execProfession()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|