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.
34 lines
994 B
C++
34 lines
994 B
C++
#include "OperatorsExtremum.h"
|
|
|
|
#include "GUIFrame/MainWindow.h"
|
|
#include "GUIFrame/MainTreeWidget.h"
|
|
#include "GUIWidget/TreeWidget.h"
|
|
#include "GUIDialog/ExtremumDialog.h"
|
|
|
|
#include "OperatorsInterface/GraphEventOperator.h"
|
|
#include "OperatorsInterface/ParaWidgetInterfaceOperator.h"
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAppFramework.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKGlobalData.h"
|
|
|
|
namespace OperModel
|
|
{
|
|
bool OperatorsExtremum::execGUI()
|
|
{
|
|
GUI::MainWindow* mainWin = dynamic_cast<GUI::MainWindow*>(FITKAPP->getGlobalData()->getMainWindow());
|
|
if (mainWin == nullptr)return false;
|
|
GUI::TreeWidget* treeWidget = mainWin->getTreeWidget()->getTreeWidget();
|
|
if (treeWidget == nullptr)return false;
|
|
|
|
GUI::ExtremumDialog* dialog = new GUI::ExtremumDialog(treeWidget->getCurrentDataID(), this);
|
|
dialog->show();
|
|
return false;
|
|
}
|
|
|
|
bool OperatorsExtremum::execProfession()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|