X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_FacesPanel.cpp;h=e623a7e9098b3b67b19b11989838f67f036fa694;hb=d5c7ad3c50f89a2ddc2de1866ffb7f09397f3be2;hp=67e3a5aa34bba9cb54fa0ea0c5e3f0f3cf1a035e;hpb=5856257e3199c10ed82ced04e56d3a0ad4f30f6f;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_FacesPanel.cpp b/src/XGUI/XGUI_FacesPanel.cpp index 67e3a5aa3..e623a7e90 100644 --- a/src/XGUI/XGUI_FacesPanel.cpp +++ b/src/XGUI/XGUI_FacesPanel.cpp @@ -50,6 +50,7 @@ #include #include #include +#include static const int LayoutMargin = 3; @@ -70,7 +71,19 @@ bool getGroup(ModuleBase_ViewerPrsPtr thePrs, ResultGroupPtr& theResGroup, if (theGroupFeature.get()) theResGroup = std::dynamic_pointer_cast(theGroupFeature->firstResult()); } - return true; + return theGroupFeature.get() && theResGroup.get(); +} + +//******************************************************************** +void updateHiddenShapes(Handle(ModuleBase_ResultPrs) thePrs, const TopoDS_ListOfShape& theShapes) +{ + TopoDS_ListOfShape aAlreadyHidden = thePrs->hiddenSubShapes(); + TopoDS_ListOfShape::Iterator aShPIt(theShapes); + for (; aShPIt.More(); aShPIt.Next()) { + if (aAlreadyHidden.Contains(aShPIt.Value())) + aAlreadyHidden.Remove(aShPIt.Value()); + } + thePrs->setSubShapeHidden(aAlreadyHidden); } //******************************************************************** @@ -78,6 +91,8 @@ XGUI_FacesPanel::XGUI_FacesPanel(QWidget* theParent, XGUI_Workshop* theWorkshop) : QDockWidget(theParent), myIsActive(false), myWorkshop(theWorkshop) { setWindowTitle(tr("Hide Faces")); + setObjectName("Hide Faces"); + QAction* aViewAct = toggleViewAction(); setStyleSheet("::title { position: relative; padding-left: 5px; text-align: left center }"); @@ -97,6 +112,10 @@ XGUI_FacesPanel::XGUI_FacesPanel(QWidget* theParent, XGUI_Workshop* theWorkshop) myListView->getControl()->setFocusPolicy(Qt::StrongFocus); myListView->getControl()->viewport()->installEventFilter(this); + + XGUI_Displayer* aDisplayer = myWorkshop->displayer(); + connect(aDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)), + SLOT(onObjectDisplay(ObjectPtr, AISObjectPtr))); } //******************************************************************** @@ -107,7 +126,7 @@ void XGUI_FacesPanel::reset(const bool isToFlushRedisplay) std::map anObjectToShapes; std::map anObjectToPrs; - QMap >::const_iterator aIt; + QMap::const_iterator aIt; for (aIt = myItems.cbegin(); aIt != myItems.cend(); aIt++) { getObjectsMapFromPrs(aIt.value(), anObjectToShapes, anObjectToPrs); } @@ -119,7 +138,7 @@ void XGUI_FacesPanel::reset(const bool isToFlushRedisplay) aObjects.insert(aPrsIt->first); aPrsIt->second->setSubShapeHidden(anEmpty); } - std::set >::const_iterator aGrpIt; + std::set::const_iterator aGrpIt; for (aGrpIt = myHiddenGroups.cbegin(); aGrpIt != myHiddenGroups.cend(); aGrpIt++) (*aGrpIt)->setDisplayed(true); myHiddenGroups.clear(); @@ -221,14 +240,9 @@ void XGUI_FacesPanel::restoreObjects(const std::set& theHiddenObjects } // remove from myItes container - for (std::set::const_iterator aToBeRemovedIt = anIndicesToBeRemoved.begin(); - aToBeRemovedIt != anIndicesToBeRemoved.end(); aToBeRemovedIt++) - { - myItems.remove(*aToBeRemovedIt); - } + removeItems(anIndicesToBeRemoved); if (!anIndicesToBeRemoved.empty()) // means that myItems has been changed updateProcessedObjects(myItems, myItemObjects); - myListView->removeItems(anIndicesToBeRemoved); // remove from container of hidden objects for (std::set::const_iterator aHiddenIt = theHiddenObjects.begin(); @@ -331,7 +345,7 @@ void XGUI_FacesPanel::getObjectsMapFromPrs(ModuleBase_ViewerPrsPtr thePrs, void XGUI_FacesPanel::processSelection() { QList aSelected = - myWorkshop->selector()->selection()->getSelected(ModuleBase_ISelection::AllControls); + myWorkshop->selector()->selection()->getSelected(ModuleBase_ISelection::Viewer); if (aSelected.size() == 0) return; @@ -437,12 +451,7 @@ void XGUI_FacesPanel::processSelection() } // Remove duplicate items - if (aToRemove.size() > 0) { - myListView->removeItems(aToRemove); - std::set::const_iterator aIntIt; - for (aIntIt = aToRemove.cbegin(); aIntIt != aToRemove.cend(); aIntIt++) - myItems.remove(*aIntIt); - } + removeItems(aToRemove); if (isModified) { updateProcessedObjects(myItems, myItemObjects); flushRedisplay(); @@ -480,7 +489,7 @@ bool XGUI_FacesPanel::processDelete() ResultGroupPtr aResGroup; FeaturePtr aGroupFeature; if (getGroup((*aIt), aResGroup, aGroupFeature)) { - std::set >::iterator aGrpIt = myHiddenGroups.find(aResGroup); + std::set::iterator aGrpIt = myHiddenGroups.find(aResGroup); if (aGrpIt != myHiddenGroups.end()) { aResGroup->setDisplayed(true); myHiddenGroups.erase(aGrpIt); @@ -511,7 +520,7 @@ bool XGUI_FacesPanel::processDelete() //******************************************************************** bool XGUI_FacesPanel::redisplayObjects( - const std::set >& theObjects) + const std::set& theObjects) { if (theObjects.empty()) return false; @@ -538,24 +547,21 @@ void XGUI_FacesPanel::updateProcessedObjects(QMap for (QMap::const_iterator anIt = theItems.begin(); anIt != theItems.end(); anIt++) { ModuleBase_ViewerPrsPtr aPrs = anIt.value(); - ObjectPtr anObject = aPrs.get() ? aPrs->object() : ObjectPtr(); - if (anObject.get()) { - ResultGroupPtr aResGroup = std::dynamic_pointer_cast(anObject); - if (aResGroup.get()) { - FeaturePtr aGroupFeature = ModelAPI_Feature::feature(aResGroup); - AttributeSelectionListPtr aSelectionList = aGroupFeature->selectionList("group_list"); - for (int i = 0; i < aSelectionList->size(); i++) { - AttributeSelectionPtr aSelection = aSelectionList->value(i); - ResultPtr aRes = aSelection->context(); - if (theObjects.find(aRes) == theObjects.end()) - theObjects.insert(aRes); - } - } - else { - if (theObjects.find(anObject) == theObjects.end()) - theObjects.insert(anObject); + ResultGroupPtr aResGroup; + FeaturePtr aGroupFeature; + if (getGroup(aPrs, aResGroup, aGroupFeature)) { + AttributeSelectionListPtr aSelectionList = aGroupFeature->selectionList("group_list"); + for (int i = 0; i < aSelectionList->size(); i++) { + AttributeSelectionPtr aSelection = aSelectionList->value(i); + ResultPtr aRes = aSelection->context(); + if (theObjects.find(aRes) == theObjects.end()) + theObjects.insert(aRes); } } + else { + if (theObjects.find(aPrs->object()) == theObjects.end()) + theObjects.insert(aPrs->object()); + } } } @@ -577,7 +583,7 @@ void XGUI_FacesPanel::onTransparencyChanged() { std::map anObjectToShapes; std::map anObjectToPrs; - QMap >::const_iterator aIt; + QMap::const_iterator aIt; for (aIt = myItems.cbegin(); aIt != myItems.cend(); aIt++) { getObjectsMapFromPrs(aIt.value(), anObjectToShapes, anObjectToPrs); } @@ -610,3 +616,97 @@ void XGUI_FacesPanel::flushRedisplay() const anObjectBrowser->updateAllIndexes(); myWorkshop->viewer()->update(); } + + +//******************************************************************** +void XGUI_FacesPanel::onObjectDisplay(ObjectPtr theObject, AISObjectPtr theAIS) +{ + bool aContains = false; + QMap::iterator aIt; + for (aIt = myItems.begin(); aIt != myItems.end(); aIt++) { + ModuleBase_ViewerPrsPtr aPrs = aIt.value(); + if (aPrs->object() == theObject) { + aContains = true; + break; + } + } + if (aContains) { + ResultGroupPtr aResGroup; + FeaturePtr aGroupFeature; + std::map aObjectToShapes; + std::map aObjectToPrs; + std::set aObjects; + std::set aIdsToRem; + + TopoDS_ListOfShape aHideShapes; + std::map::const_iterator aSIt; + for (aIt = myItems.begin(); aIt != myItems.end(); aIt++) { + ModuleBase_ViewerPrsPtr aPrs = aIt.value(); + if (getGroup(aPrs, aResGroup, aGroupFeature)) { + getObjectsMapFromResult(aResGroup, aGroupFeature, aObjectToShapes, aObjectToPrs); + if (aResGroup == theObject) { + // If group is displayed it means that it has to be deleted from the Faces list and all + // corresponded faces have been restored + for (aSIt = aObjectToShapes.begin(); aSIt != aObjectToShapes.end(); aSIt++) { + TopoDS_ListOfShape aShapes = aSIt->second; + Handle(ModuleBase_ResultPrs) aPrs = aObjectToPrs[aSIt->first]; + TopoDS_ListOfShape aAlreadyHidden = aPrs->hiddenSubShapes(); + TopoDS_ListOfShape::Iterator aShPIt(aShapes); + for (; aShPIt.More(); aShPIt.Next()) { + if (aAlreadyHidden.Contains(aShPIt.Value())) + aAlreadyHidden.Remove(aShPIt.Value()); + } + aPrs->setSubShapeHidden(aAlreadyHidden); + aObjects.insert(aSIt->first); + } + aIdsToRem.insert(aIt.key()); + } + else { + std::map::iterator aPIt = + aObjectToPrs.find(theObject); + if (aPIt != aObjectToPrs.end()) { + ObjectPtr aObj = aPIt->first; + if (aObj == theObject) { + Handle(ModuleBase_ResultPrs) aPrs = aPIt->second; + TopoDS_ListOfShape aShapes = aObjectToShapes[aObj]; + aHideShapes.Append(aShapes); + aObjects.insert(aObj); + } + } + } + } + else { + if (aPrs->object() == theObject) { + TopoDS_Shape aShape = aPrs->shape()->impl(); + if (!aShape.IsNull()) + aHideShapes.Append(aShape); + aPrs->setInteractive(theAIS->impl()); + } + } + } + double aTransp = transparency(); + if (aHideShapes.Size() > 0) { + Handle(ModuleBase_ResultPrs) aResultPrs = Handle(ModuleBase_ResultPrs)::DownCast( + theAIS->impl()); + if (!aResultPrs.IsNull()) { + aResultPrs->setSubShapeHidden(aHideShapes); + aResultPrs->setHiddenSubShapeTransparency(aTransp); + aObjects.insert(theObject); + } + } + removeItems(aIdsToRem); + myWorkshop->selector()->clearSelection(); + if (redisplayObjects(aObjects)) + QTimer::singleShot(50, this, SLOT(flushRedisplay())); + } +} + +void XGUI_FacesPanel::removeItems(std::set theIds) +{ + if (theIds.empty()) + return; + myListView->removeItems(theIds); + std::set::const_iterator aRIt; + for (aRIt = theIds.begin(); aRIt != theIds.end(); aRIt++) + myItems.remove(*aRIt); +}