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.
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
#include "GUIWidgetBase.h"
|
|
|
|
#include "OperatorsInterface/GraphEventOperator.h"
|
|
#include "PostGraphAdaptor/PostGraphObjectBase.h"
|
|
#include "PostGraphAdaptor/PostGraphProperty.h"
|
|
#include "PostGraphAdaptor/PostGraphObjectManager.h"
|
|
|
|
#include "FITK_Interface/FITKInterfaceCFDPost/FITKAbstractCFDPostData.h"
|
|
#include "FITK_Interface/FITKInterfaceCFDPost/FITKCFDPost3DManager.h"
|
|
#include "FITK_Interface/FITKInterfaceCFDPost/FITKCFDPostData.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAppFramework.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKGlobalData.h"
|
|
#include "FITK_Kernel/FITKCore/FITKOperatorRepo.h"
|
|
|
|
namespace GUI
|
|
{
|
|
GUIWidgetBase::GUIWidgetBase(QWidget * parent) :
|
|
Core::FITKWidget(parent)
|
|
{
|
|
_postDataManager = FITKAPP->getGlobalData()->getPostData<Interface::FITKCFDPostData>()->getPostDataManager();
|
|
_postLightManager = FITKAPP->getGlobalData()->getPostData<Interface::FITKCFDPostData>()->getPostLightManager();
|
|
_postGraphManager = Interface::PostGraphObjectManager::getInstance();
|
|
}
|
|
|
|
GUIWidgetBase::~GUIWidgetBase()
|
|
{
|
|
|
|
}
|
|
|
|
void GUIWidgetBase::reRender()
|
|
{
|
|
EventOper::GraphEventOperator* graphOper = FITKOPERREPO->getOperatorT<EventOper::GraphEventOperator>("OperGraphPreprocess");
|
|
if (graphOper == nullptr)return;
|
|
graphOper->reRender();
|
|
}
|
|
}
|
|
|