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
1009 B
C++
41 lines
1009 B
C++
#include "OperatorsSolution.h"
|
|
|
|
#include "GUIFrame/PropertyWidget.h"
|
|
#include "OperatorsInterface/TreeEventOperator.h"
|
|
#include "GUIDialog/GUICalculateDialog/SolutionWidget.h"
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAppFramework.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKGlobalData.h"
|
|
|
|
namespace ModelOper
|
|
{
|
|
OperatorsSolution::OperatorsSolution()
|
|
{
|
|
|
|
}
|
|
|
|
OperatorsSolution::~OperatorsSolution()
|
|
{
|
|
|
|
}
|
|
|
|
bool OperatorsSolution::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::SolutionWidget* widget = new GUI::SolutionWidget(this, propertyWidget);
|
|
propertyWidget->setWidget(widget);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool OperatorsSolution::execProfession()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|