HYDROGUI_PolylineOp::HYDROGUI_PolylineOp( HYDROGUI_Module* theModule, bool theIsEdit )
: HYDROGUI_Operation( theModule ), myIsEdit(theIsEdit), myCurve(NULL),
- myViewManager(NULL), myCurveDisplayer(NULL)
+ myViewManager(NULL)
{
setName( theIsEdit ? tr( "EDIT_POLYLINE" ) : tr( "CREATE_POLYLINE" ) );
}
}
aPolylineObj->SetPolylineData(aPolylineData);
+ // the viewer should be release from the widget before the module update it
+ // because it has an opened local context and updated presentation should not be displayed in it
+ if ( aPanel )
+ aPanel->setOCCViewer( 0 );
+
if( !myIsEdit )
module()->setObjectVisible( HYDROGUI_Tool::GetActiveOCCViewId( module() ), aPolylineObj, true );
return;
if( !myCurve )
return;
- if( !myCurveDisplayer )
+ CurveCreator_Displayer* aDisplayer = myCurve->getDisplayer();
+ if( !aDisplayer )
return;
QList<int> aSelSections = aPanel->getSelectedSections();
for( int i = 0 ; i < myCurve->getNbSections() ; i++ ){
bool aIsHl = false;
if( aSelSections.contains(i) ){
- myCurveDisplayer->highlight( myCurve->constructSection(i), aIsHl );
+ aDisplayer->highlight( myCurve->constructSection(i), aIsHl );
}
}
}
Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
if( !aCtx.IsNull() )
{
- myCurveDisplayer = new CurveCreator_Displayer( aCtx );
- myCurve->setDisplayer( myCurveDisplayer );
- myCurveDisplayer->display( myCurve->constructWire() );
+ CurveCreator_Displayer* aDisplayer = new CurveCreator_Displayer( aCtx );
+ myCurve->setDisplayer( aDisplayer );
+ aDisplayer->display( myCurve->constructWire() );
}
}
}
void HYDROGUI_PolylineOp::erasePreview()
{
- if( myViewManager )
+ CurveCreator_Displayer* aDisplayer = myCurve ? myCurve->getDisplayer() : 0;
+ if( myViewManager && aDisplayer )
{
if( OCCViewer_Viewer* aViewer = myViewManager->getOCCViewer() )
{
Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
- if( !aCtx.IsNull() && myCurveDisplayer )
+ if( !aCtx.IsNull() )
{
- myCurveDisplayer->erase();
- delete myCurveDisplayer;
- myCurveDisplayer = 0;
+ aDisplayer->erase();
}
}
}