X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Displayer.cpp;h=3f0846de18d86f9a4b894c193878ccf558bc29af;hb=dc158ea248a9bbd70675887f494388c93e1b3b4d;hp=74041948eb72e9a2ea85189a52c9dc2818612736;hpb=eb46781716082e5c57561426894fe4c0c989224e;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Displayer.cpp b/src/XGUI/XGUI_Displayer.cpp index 74041948e..3f0846de1 100644 --- a/src/XGUI/XGUI_Displayer.cpp +++ b/src/XGUI/XGUI_Displayer.cpp @@ -1,12 +1,15 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: XGUI_Displayer.cpp // Created: 20 Apr 2014 // Author: Natalia ERMOLAEVA #include "XGUI_Displayer.h" -#include "XGUI_Viewer.h" #include "XGUI_Workshop.h" #include "XGUI_ViewerProxy.h" +#include + #include #include #include @@ -16,6 +19,7 @@ #include #include +#include #include #include @@ -28,12 +32,39 @@ #include #include +#include +#include + #include const int MOUSE_SENSITIVITY_IN_PIXEL = 10; ///< defines the local context mouse selection sensitivity + +// Workaround for bug #25637 +void displayedObjects(const Handle(AIS_InteractiveContext)& theAIS, AIS_ListOfInteractive& theList) +{ + // Get from null point + theAIS->DisplayedObjects(theList, true); + if (theAIS->HasOpenedContext()) { + // get from local context + const Handle(AIS_LocalContext)& aLC = theAIS->LocalContext(); + TColStd_MapOfTransient aMap; + int NbDisp = aLC->DisplayedObjects(aMap); + TColStd_MapIteratorOfMapOfTransient aIt(aMap); + + Handle(AIS_InteractiveObject) curIO; + Handle(Standard_Transient) Tr; + for(; aIt.More(); aIt.Next()){ + Tr = aIt.Key(); + curIO = *((Handle(AIS_InteractiveObject)*) &Tr); + theList.Append(curIO); + } + } +} + + XGUI_Displayer::XGUI_Displayer(XGUI_Workshop* theWorkshop) - : myUseExternalObjects(false), myWorkshop(theWorkshop) + : myWorkshop(theWorkshop) { } @@ -55,13 +86,13 @@ void XGUI_Displayer::display(ObjectPtr theObject, bool isUpdateViewer) GeomPresentablePtr aPrs = std::dynamic_pointer_cast(theObject); bool isShading = false; - if (aPrs) { + if (aPrs.get() != NULL) { anAIS = aPrs->getAISObject(AISObjectPtr()); } else { ResultPtr aResult = std::dynamic_pointer_cast(theObject); - if (aResult) { + if (aResult.get() != NULL) { std::shared_ptr aShapePtr = ModelAPI_Tools::shape(aResult); - if (aShapePtr) { + if (aShapePtr.get() != NULL) { anAIS = AISObjectPtr(new GeomAPI_AISObject()); anAIS->setImpl(new Handle(AIS_InteractiveObject)(new ModuleBase_ResultPrs(aResult))); //anAIS->createShape(aShapePtr); @@ -74,6 +105,20 @@ void XGUI_Displayer::display(ObjectPtr theObject, bool isUpdateViewer) } } +bool canBeShaded(Handle(AIS_InteractiveObject) theAIS) +{ + Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(theAIS); + if (!aShapePrs.IsNull()) { + TopoDS_Shape aShape = aShapePrs->Shape(); + TopAbs_ShapeEnum aType = aShape.ShapeType(); + if ((aType == TopAbs_VERTEX) || (aType == TopAbs_EDGE) || (aType == TopAbs_WIRE)) + return false; + else + return true; + } + return false; +} + void XGUI_Displayer::display(ObjectPtr theObject, AISObjectPtr theAIS, bool isShading, bool isUpdateViewer) { @@ -84,20 +129,29 @@ void XGUI_Displayer::display(ObjectPtr theObject, AISObjectPtr theAIS, Handle(AIS_InteractiveObject) anAISIO = theAIS->impl(); if (!anAISIO.IsNull()) { myResult2AISObjectMap[theObject] = theAIS; + bool aCanBeShaded = canBeShaded(anAISIO); + // In order to avoid extra closing/opening context + if (aCanBeShaded) + closeLocalContexts(false); aContext->Display(anAISIO, false); - aContext->SetDisplayMode(anAISIO, isShading? Shading : Wireframe, isUpdateViewer); - if (aContext->HasOpenedContext()) { - if (myUseExternalObjects) { - if (myActiveSelectionModes.size() == 0) - aContext->Activate(anAISIO); - else { - foreach(int aMode, myActiveSelectionModes) { - aContext->Activate(anAISIO, aMode); - } - } - } + qDebug("### Display %i", (long)anAISIO.Access()); + + aContext->SetDisplayMode(anAISIO, isShading? Shading : Wireframe, false); + // Customization of presentation + FeaturePtr aFeature = ModelAPI_Feature::feature(theObject); + if (aFeature.get() != NULL) { + GeomCustomPrsPtr aCustPrs = std::dynamic_pointer_cast(aFeature); + if (aCustPrs.get() != NULL) + aCustPrs->customisePresentation(theAIS); } + if (aCanBeShaded) + openLocalContext(); + + aContext->Load(anAISIO, -1, true); + activate(theObject); } + if (isUpdateViewer) + updateViewer(); } void XGUI_Displayer::erase(ObjectPtr theObject, const bool isUpdateViewer) @@ -157,13 +211,13 @@ void XGUI_Displayer::deactivate(ObjectPtr theObject) AISObjectPtr anObj = myResult2AISObjectMap[theObject]; Handle(AIS_InteractiveObject) anAIS = anObj->impl(); aContext->Deactivate(anAIS); + qDebug("### Deactivate obj %i", (long)anAIS.Access()); } } void XGUI_Displayer::activate(ObjectPtr theFeature) { - QIntList aModes; - activate(theFeature, aModes); + activate(theFeature, myActiveSelectionModes); } void XGUI_Displayer::activate(ObjectPtr theObject, const QIntList& theModes) @@ -175,15 +229,91 @@ void XGUI_Displayer::activate(ObjectPtr theObject, const QIntList& theModes) AISObjectPtr anObj = myResult2AISObjectMap[theObject]; Handle(AIS_InteractiveObject) anAIS = anObj->impl(); - if (aContext->HasOpenedContext()) { - aContext->Load(anAIS, -1, true); - } + aContext->Deactivate(anAIS); + //if (aContext->HasOpenedContext()) { + // aContext->Load(anAIS, -1, true); + //} + // In order to clear active modes list if (theModes.size() > 0) { foreach(int aMode, theModes) { aContext->Activate(anAIS, aMode); + qDebug("### 1. Activate obj %i, %i", (long)anAIS.Access(), aMode); } - } else + } else { aContext->Activate(anAIS); + qDebug("### 2. Activate obj %i", (long)anAIS.Access()); + } + } +} + +void XGUI_Displayer::activateObjects(const QIntList& theModes) +{ + // In order to avoid doblications of selection modes + myActiveSelectionModes.clear(); + foreach (int aMode, theModes) { + if (!myActiveSelectionModes.contains(aMode)) + myActiveSelectionModes.append(aMode); + } + Handle(AIS_InteractiveContext) aContext = AISContext(); + // Open local context if there is no one + if (!aContext->HasOpenedContext()) + return; + + //aContext->UseDisplayedObjects(); + //myUseExternalObjects = true; + + AIS_ListOfInteractive aPrsList; + displayedObjects(aContext, aPrsList); + + Handle(AIS_Trihedron) aTrihedron; + AIS_ListIteratorOfListOfInteractive aLIt(aPrsList); + Handle(AIS_InteractiveObject) anAISIO; + for(aLIt.Initialize(aPrsList); aLIt.More(); aLIt.Next()){ + anAISIO = aLIt.Value(); + aContext->Deactivate(anAISIO); + aTrihedron = Handle(AIS_Trihedron)::DownCast(anAISIO); + //Deactivate trihedron which can be activated in local selector + if (aTrihedron.IsNull()) { + //aContext->Load(anAISIO, -1, true); + // In order to clear active modes list + if (myActiveSelectionModes.size() == 0) { + aContext->Activate(anAISIO); + qDebug("### 2. Activate all %i", (long)anAISIO.Access()); + } else { + foreach(int aMode, myActiveSelectionModes) { + aContext->Activate(anAISIO, aMode); + qDebug("### 1. Activate all %i, %i", (long)anAISIO.Access(), aMode); + } + } + } + } +} + + +void XGUI_Displayer::deactivateObjects() +{ + myActiveSelectionModes.clear(); + Handle(AIS_InteractiveContext) aContext = AISContext(); + // Open local context if there is no one + if (!aContext->HasOpenedContext()) + return; + + //aContext->NotUseDisplayedObjects(); + AIS_ListOfInteractive aPrsList; + displayedObjects(aContext, aPrsList); + + AIS_ListIteratorOfListOfInteractive aLIt; + Handle(AIS_Trihedron) aTrihedron; + Handle(AIS_InteractiveObject) anAISIO; + for(aLIt.Initialize(aPrsList); aLIt.More(); aLIt.Next()){ + anAISIO = aLIt.Value(); + aContext->Deactivate(anAISIO); + aTrihedron = Handle(AIS_Trihedron)::DownCast(anAISIO); + if (aTrihedron.IsNull()) { + //aContext->Load(anAISIO, -1, true); + qDebug("### Deactivate all %i", (long)anAISIO.Access()); + //aContext->Activate(anAISIO); + } } } @@ -242,20 +372,29 @@ void XGUI_Displayer::stopSelection(const QObjectPtrList& theResults, const bool void XGUI_Displayer::setSelected(const QObjectPtrList& theResults, const bool isUpdateViewer) { Handle(AIS_InteractiveContext) aContext = AISContext(); - // we need to unhighligth objects manually in the current local context - // in couple with the selection clear (TODO) - Handle(AIS_LocalContext) aLocalContext = aContext->LocalContext(); - if (!aLocalContext.IsNull()) - aLocalContext->UnhilightLastDetected(myWorkshop->viewer()->activeView()); - - aContext->ClearSelected(); - foreach(ObjectPtr aResult, theResults) - { - if (isVisible(aResult)) { - AISObjectPtr anObj = myResult2AISObjectMap[aResult]; - Handle(AIS_InteractiveObject) anAIS = anObj->impl(); - if (!anAIS.IsNull()) - aContext->SetSelected(anAIS, false); + if (aContext.IsNull()) + return; + if (aContext->HasOpenedContext()) { + aContext->UnhilightSelected(); + aContext->ClearSelected(); + foreach(ObjectPtr aResult, theResults) { + if (isVisible(aResult)) { + AISObjectPtr anObj = myResult2AISObjectMap[aResult]; + Handle(AIS_InteractiveObject) anAIS = anObj->impl(); + if (!anAIS.IsNull()) + aContext->SetSelected(anAIS, false); + } + } + } else { + aContext->UnhilightCurrents(); + aContext->ClearCurrents(); + foreach(ObjectPtr aResult, theResults) { + if (isVisible(aResult)) { + AISObjectPtr anObj = myResult2AISObjectMap[aResult]; + Handle(AIS_InteractiveObject) anAIS = anObj->impl(); + if (!anAIS.IsNull()) + aContext->SetCurrentObject(anAIS, false); + } } } if (isUpdateViewer) @@ -274,47 +413,47 @@ void XGUI_Displayer::clearSelected() void XGUI_Displayer::eraseAll(const bool isUpdateViewer) { - Handle(AIS_InteractiveContext) ic = AISContext(); - if (ic.IsNull()) + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) return; foreach (AISObjectPtr aAISObj, myResult2AISObjectMap) { // erase an object Handle(AIS_InteractiveObject) anIO = aAISObj->impl(); if (!anIO.IsNull()) - ic->Remove(anIO, false); + aContext->Remove(anIO, false); } myResult2AISObjectMap.clear(); if (isUpdateViewer) updateViewer(); } -void XGUI_Displayer::eraseDeletedResults(const bool isUpdateViewer) -{ - Handle(AIS_InteractiveContext) aContext = AISContext(); - if (aContext.IsNull()) - return; - - QObjectPtrList aRemoved; - foreach (ObjectPtr aFeature, myResult2AISObjectMap.keys()) { - if (!aFeature || !aFeature->data() || !aFeature->data()->isValid()) { - AISObjectPtr anObj = myResult2AISObjectMap[aFeature]; - if (!anObj) - continue; - Handle(AIS_InteractiveObject) anAIS = anObj->impl(); - if (!anAIS.IsNull()) { - aContext->Remove(anAIS, false); - aRemoved.append(aFeature); - } - } - } - foreach(ObjectPtr aObj, aRemoved) { - myResult2AISObjectMap.remove(aObj); - } - - if (isUpdateViewer) - updateViewer(); -} +//void XGUI_Displayer::eraseDeletedResults(const bool isUpdateViewer) +//{ +// Handle(AIS_InteractiveContext) aContext = AISContext(); +// if (aContext.IsNull()) +// return; +// +// QObjectPtrList aRemoved; +// foreach (ObjectPtr aFeature, myResult2AISObjectMap.keys()) { +// if (!aFeature || !aFeature->data() || !aFeature->data()->isValid()) { +// AISObjectPtr anObj = myResult2AISObjectMap[aFeature]; +// if (!anObj) +// continue; +// Handle(AIS_InteractiveObject) anAIS = anObj->impl(); +// if (!anAIS.IsNull()) { +// aContext->Remove(anAIS, false); +// aRemoved.append(aFeature); +// } +// } +// } +// foreach(ObjectPtr aObj, aRemoved) { +// myResult2AISObjectMap.remove(aObj); +// } +// +// if (isUpdateViewer) +// updateViewer(); +//} void XGUI_Displayer::openLocalContext() { @@ -328,53 +467,79 @@ void XGUI_Displayer::openLocalContext() //for (aContext->InitCurrent(); aContext->MoreCurrent(); aContext->NextCurrent()) // aAisList.Append(aContext->Current()); - aContext->ClearCurrents(); + // get the filters from the global context and append them to the local context + // a list of filters in the global context is not cleared and should be cleared here + SelectMgr_ListOfFilter aFilters; + aFilters.Assign(aContext->Filters()); + // it is important to remove the filters in the global context, because there is a code + // in the closeLocalContex, which restore the global context filters + aContext->RemoveFilters(); + + //aContext->ClearCurrents(); aContext->OpenLocalContext(); - aContext->NotUseDisplayedObjects(); + qDebug("### Open context"); + //aContext->NotUseDisplayedObjects(); - myUseExternalObjects = false; + //myUseExternalObjects = false; myActiveSelectionModes.clear(); + SelectMgr_ListIteratorOfListOfFilter aIt(aFilters); + for (;aIt.More(); aIt.Next()) { + aContext->AddFilter(aIt.Value()); + } // Restore selection - //AIS_ListIteratorOfListOfInteractive aIt(aAisList); - //for(; aIt.More(); aIt.Next()) { - // if (aContext->IsDisplayed(aIt.Value())) - // aContext->SetSelected(aIt.Value(), false); + //AIS_ListIteratorOfListOfInteractive aIt2(aAisList); + //for(; aIt2.More(); aIt2.Next()) { + // aContext->SetSelected(aIt2.Value(), false); //} } } void XGUI_Displayer::closeLocalContexts(const bool isUpdateViewer) { - Handle(AIS_InteractiveContext) ic = AISContext(); - if ( (!ic.IsNull()) && (ic->HasOpenedContext()) ) { + Handle(AIS_InteractiveContext) aContext = AISContext(); + if ( (!aContext.IsNull()) && (aContext->HasOpenedContext()) ) { // Preserve selected objects //AIS_ListOfInteractive aAisList; - //for (ic->InitSelected(); ic->MoreSelected(); ic->NextSelected()) - // aAisList.Append(ic->SelectedInteractive()); + //for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected()) + // aAisList.Append(aContext->SelectedInteractive()); + + // get the filters from the local context and append them to the global context + // a list of filters in the local context is cleared + SelectMgr_ListOfFilter aFilters; + aFilters.Assign(aContext->Filters()); - ic->ClearSelected(); - ic->CloseAllContexts(false); + //aContext->ClearSelected(); + aContext->CloseAllContexts(false); + qDebug("### Close context"); // Redisplay all object if they were displayed in localContext Handle(AIS_InteractiveObject) aAISIO; foreach (AISObjectPtr aAIS, myResult2AISObjectMap) { aAISIO = aAIS->impl(); - if (ic->DisplayStatus(aAISIO) != AIS_DS_Displayed) { - ic->Display(aAISIO, false); - ic->SetDisplayMode(aAISIO, Shading, false); + if (aContext->DisplayStatus(aAISIO) != AIS_DS_Displayed) { + aContext->Display(aAISIO, false); + aContext->SetDisplayMode(aAISIO, Shading, false); } } + + // Append the filters from the local selection in the global selection context + SelectMgr_ListIteratorOfListOfFilter aIt(aFilters); + for (;aIt.More(); aIt.Next()) { + Handle(SelectMgr_Filter) aFilter = aIt.Value(); + aContext->AddFilter(aFilter); + } + if (isUpdateViewer) updateViewer(); - myUseExternalObjects = false; + //myUseExternalObjects = false; myActiveSelectionModes.clear(); // Restore selection - //AIS_ListIteratorOfListOfInteractive aIt(aAisList); - //for(; aIt.More(); aIt.Next()) { - // if (ic->IsDisplayed(aIt.Value())) - // ic->SetCurrentObject(aIt.Value(), false); + //AIS_ListIteratorOfListOfInteractive aIt2(aAisList); + //for(; aIt2.More(); aIt2.Next()) { + // if (aContext->IsDisplayed(aIt2.Value())) + // aContext->SetCurrentObject(aIt2.Value(), false); //} } } @@ -407,14 +572,29 @@ ObjectPtr XGUI_Displayer::getObject(const Handle(AIS_InteractiveObject)& theIO) void XGUI_Displayer::updateViewer() { - Handle(AIS_InteractiveContext) ic = AISContext(); - if (!ic.IsNull()) - ic->UpdateCurrentViewer(); + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (!aContext.IsNull()) + aContext->UpdateCurrentViewer(); } Handle(AIS_InteractiveContext) XGUI_Displayer::AISContext() const { - return myWorkshop->viewer()->AISContext(); + Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext(); + if ((!aContext.IsNull()) && (!aContext->HasOpenedContext())) { + aContext->OpenLocalContext(); + qDebug("### Open context"); + } + return aContext; +} + +Handle(SelectMgr_AndFilter) XGUI_Displayer::GetFilter() +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (myAndFilter.IsNull() && !aContext.IsNull()) { + myAndFilter = new SelectMgr_AndFilter(); + aContext->AddFilter(myAndFilter); + } + return myAndFilter; } void XGUI_Displayer::displayAIS(AISObjectPtr theAIS, bool isUpdate) @@ -424,7 +604,7 @@ void XGUI_Displayer::displayAIS(AISObjectPtr theAIS, bool isUpdate) if (!anAISIO.IsNull()) { aContext->Display(anAISIO, isUpdate); if (aContext->HasOpenedContext()) { - if (myUseExternalObjects) { + //if (myUseExternalObjects) { if (myActiveSelectionModes.size() == 0) aContext->Activate(anAISIO); else { @@ -432,7 +612,7 @@ void XGUI_Displayer::displayAIS(AISObjectPtr theAIS, bool isUpdate) aContext->Activate(anAISIO, aMode); } } - } + //} } } } @@ -446,56 +626,6 @@ void XGUI_Displayer::eraseAIS(AISObjectPtr theAIS, const bool isUpdate) } } -void XGUI_Displayer::activateObjectsOutOfContext(const QIntList& theModes) -{ - Handle(AIS_InteractiveContext) aContext = AISContext(); - // Open local context if there is no one - if (!aContext->HasOpenedContext()) - return; - - aContext->UseDisplayedObjects(); - myUseExternalObjects = true; - myActiveSelectionModes = theModes; - - //Deactivate trihedron which can be activated in local selector - AIS_ListOfInteractive aPrsList; - aContext->DisplayedObjects(aPrsList, true); - - Handle(AIS_Trihedron) aTrihedron; - AIS_ListIteratorOfListOfInteractive aLIt(aPrsList); - for(; aLIt.More(); aLIt.Next()){ - aTrihedron = Handle(AIS_Trihedron)::DownCast(aLIt.Value()); - if (!aTrihedron.IsNull()) { - aContext->Deactivate(aTrihedron); - break; - } - } - - Handle(AIS_InteractiveObject) anAISIO; - foreach (AISObjectPtr aAIS, myResult2AISObjectMap) { - anAISIO = aAIS->impl(); - aContext->Load(anAISIO, -1, true); - if (theModes.size() == 0) - aContext->Activate(anAISIO); - else { - foreach(int aMode, theModes) { - aContext->Activate(anAISIO, aMode); - } - } - } -} - - -void XGUI_Displayer::deactivateObjectsOutOfContext() -{ - Handle(AIS_InteractiveContext) aContext = AISContext(); - // Open local context if there is no one - if (!aContext->HasOpenedContext()) - return; - - aContext->NotUseDisplayedObjects(); -} - void XGUI_Displayer::setDisplayMode(ObjectPtr theObject, DisplayMode theMode, bool toUpdate) { @@ -514,28 +644,6 @@ void XGUI_Displayer::setDisplayMode(ObjectPtr theObject, DisplayMode theMode, bo aContext->SetDisplayMode(aAISIO, theMode, toUpdate); } -void XGUI_Displayer::setSelectionModes(const QIntList& theModes) -{ - Handle(AIS_InteractiveContext) aContext = AISContext(); - if (aContext.IsNull()) - return; - if (!aContext->HasOpenedContext()) - return; - // Clear previous mode - const TColStd_ListOfInteger& aModes = aContext->ActivatedStandardModes(); - if (!aModes.IsEmpty()) { - TColStd_ListOfInteger aMModes; - aMModes.Assign(aModes); - TColStd_ListIteratorOfListOfInteger it(aMModes); - for(; it.More(); it.Next()) { - aContext->DeactivateStandardMode((TopAbs_ShapeEnum)it.Value()); - } - } - foreach(int aMode, theModes) { - aContext->ActivateStandardMode((TopAbs_ShapeEnum)aMode); - } -} - XGUI_Displayer::DisplayMode XGUI_Displayer::displayMode(ObjectPtr theObject) const { Handle(AIS_InteractiveContext) aContext = AISContext(); @@ -561,7 +669,7 @@ void XGUI_Displayer::addSelectionFilter(const Handle(SelectMgr_Filter)& theFilte if (theFilter.Access() == aIt.Value().Access()) return; } - aContext->AddFilter(theFilter); + GetFilter()->Add(theFilter); } void XGUI_Displayer::removeSelectionFilter(const Handle(SelectMgr_Filter)& theFilter) @@ -569,5 +677,27 @@ void XGUI_Displayer::removeSelectionFilter(const Handle(SelectMgr_Filter)& theFi Handle(AIS_InteractiveContext) aContext = AISContext(); if (aContext.IsNull()) return; - aContext->RemoveFilter(theFilter); + GetFilter()->Remove(theFilter); +} + +void XGUI_Displayer::removeFilters() +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; + GetFilter()->Clear(); +} + +void XGUI_Displayer::showOnly(const QObjectPtrList& theList) +{ + QObjectPtrList aDispList = myResult2AISObjectMap.keys(); + foreach(ObjectPtr aObj, aDispList) { + if (!theList.contains(aObj)) + erase(aObj, false); + } + foreach(ObjectPtr aObj, theList) { + if (!isVisible(aObj)) + display(aObj, false); + } + updateViewer(); }