}
}
-
aPanel->reset();
QStringList aList;
QStringList anEntryList;
myEditedObject->GetBoundaryPolyline();
if ( !aPrevPolyline.IsNull() )
{
- module()->removeObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, aPrevPolyline );
+ setObjectVisibility( aPrevPolyline, false );
anIsToUpdateViewer = true;
}
Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
if ( !aCtx.IsNull() )
{
- showObject( aNewPolyline, aCtx );
+ setObjectVisibility( aNewPolyline, true );
anIsToUpdateViewer = true;
}
}
if ( anIsToUpdateViewer )
- aViewer->update();
+ module()->update( UF_OCCViewer );
}
}
}
if ( anObject.IsNull() )
continue;
- module()->removeObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, anObject );
+ setObjectVisibility( anObject, false );
myEditedObject->RemoveGeometryObject( anObject );
}
+ module()->update( UF_OCCViewer );
aPanel->excludeGeomObjects( aSelectedList );
}
HYDROData_SequenceOfObjects::Iterator aZonesIter( aZones );
for ( ; aZonesIter.More(); aZonesIter.Next() )
{
- if ( theIsVisible )
- {
- showObject( aZonesIter.Value(), aCtx );
- }
- else
- {
- module()->removeObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, aZonesIter.Value() );
- }
+ setObjectVisibility( aZonesIter.Value(), theIsVisible );
}
}
}
}
- aViewer->update();
+ module()->update( UF_OCCViewer );
}
}
}
HYDROData_SequenceOfObjects::Iterator anIter( aSeq );
for ( ; anIter.More(); anIter.Next() )
{
- showObject( anIter.Value(), aCtx );
+ setObjectVisibility( anIter.Value(), true );
}
//Process the draw events for viewer
vw->onTopView();
}
- aViewer->update();
+ module()->update( UF_OCCViewer );
}
}
-void HYDROGUI_CalculationOp::showObject( Handle(HYDROData_Entity) theEntity, Handle(AIS_InteractiveContext) theCtx )
+void HYDROGUI_CalculationOp::setObjectVisibility( Handle(HYDROData_Entity) theEntity, const bool theIsVisible )
{
- if ( !theEntity.IsNull() )
- {
- HYDROGUI_Shape* aShape = module()->getObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, theEntity );
- if ( !aShape )
- {
- aShape = new HYDROGUI_Shape( theCtx, theEntity );
- module()->setObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, theEntity, aShape );
- }
- aShape->update( false );
+ if ( theEntity.IsNull() || !myPreviewViewManager ) {
+ return;
+ }
+
+ OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer();
+ if ( aViewer ) {
+ module()->setObjectVisible( (size_t)aViewer, theEntity, theIsVisible );
}
}
if( myPreviewViewManager )
{
+ // Hide all the displayed objects in the preview view
+ OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer();
+ if ( aViewer ) {
+ size_t aViewId = (size_t)aViewer;
+ HYDROData_Iterator anIterator( doc() );
+ for( ; anIterator.More(); anIterator.Next() ) {
+ Handle(HYDROData_Entity) anObject = anIterator.Current();
+ if( !anObject.IsNull() ) {
+ module()->setObjectVisible( aViewId, anObject, false );
+ }
+ }
+ }
+
disconnect( myPreviewViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
this, SLOT( onLastViewClosed( SUIT_ViewManager* ) ) );