mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-22 15:40:32 +05:00
Mantis issue 0021367: EDF 1969 GEOM: Edit group / Show only selected.
This commit is contained in:
parent
acda0a492c
commit
92fe1b6a78
@ -617,11 +617,14 @@ void GroupGUI_GroupDlg::showOnlySelected()
|
|||||||
GEOM_Displayer* aDisplayer = getDisplayer();
|
GEOM_Displayer* aDisplayer = getDisplayer();
|
||||||
|
|
||||||
if (send == myHideSelBtn) {
|
if (send == myHideSelBtn) {
|
||||||
aDisplayer->Erase(aSelList, false, true);
|
aDisplayer->Erase(aSelList, /*forced=*/false, /*updateViewer=*/true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
aDisplayer->EraseAll();
|
aDisplayer->EraseAll(/*forced = false, updateViewer = true*/);
|
||||||
aDisplayer->Display(aSelList, true);
|
aDisplayer->Display(aSelList, true);
|
||||||
|
|
||||||
|
// for the case when selected ids were not displayed in the viewer: Mantis issue 0021367
|
||||||
|
highlightSubShapes();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -851,6 +854,7 @@ void GroupGUI_GroupDlg::activateSelection()
|
|||||||
SALOME_Prs* aPrs = aDisplayer->buildSubshapePresentation(aSubShape, anEntry, aView);
|
SALOME_Prs* aPrs = aDisplayer->buildSubshapePresentation(aSubShape, anEntry, aView);
|
||||||
if (aPrs) {
|
if (aPrs) {
|
||||||
displayPreview(aPrs, true, false); // append, do not update
|
displayPreview(aPrs, true, false); // append, do not update
|
||||||
|
// TODO: map or delete Prs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -959,16 +963,17 @@ void GroupGUI_GroupDlg::highlightSubShapes()
|
|||||||
SALOME_View* aView = dynamic_cast<SALOME_View*>(aViewModel);
|
SALOME_View* aView = dynamic_cast<SALOME_View*>(aViewModel);
|
||||||
if (aView == 0) return;
|
if (aView == 0) return;
|
||||||
|
|
||||||
// TODO: use here GEOMBase_Helper::myPreview instead of ic->DisplayedObjects()
|
// TODO??: use here GEOMBase_Helper::myPreview instead of ic->DisplayedObjects()
|
||||||
|
|
||||||
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)aViewManager)->getOCCViewer();
|
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)aViewManager)->getOCCViewer();
|
||||||
Handle(AIS_InteractiveContext) ic = v3d->getAISContext();
|
Handle(AIS_InteractiveContext) ic = v3d->getAISContext();
|
||||||
AIS_ListOfInteractive List;
|
AIS_ListOfInteractive List;
|
||||||
ic->DisplayedObjects(List);
|
//ic->DisplayedObjects(List);
|
||||||
|
ic->ObjectsInside(List); // Mantis issue 0021367
|
||||||
|
|
||||||
SALOME_ListIO aSelList;
|
SALOME_ListIO aSelList;
|
||||||
|
|
||||||
// To highlight the selected subshape in Object Browser, if it's already pudlished under the main shape
|
// To highlight the selected subshape in Object Browser, if it's already published under the main shape
|
||||||
GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations(getStudyId());
|
GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations(getStudyId());
|
||||||
QMap<int, QString> childsMap;
|
QMap<int, QString> childsMap;
|
||||||
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
|
||||||
|
Loading…
Reference in New Issue
Block a user