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