X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Displayer.cpp;h=8dd2d2e25f8388fe9bfa1a9a30b20ec45e2a5d23;hb=5e6c61f177b2d7f07fcf94abaf96de4f8366f27b;hp=dfed75b1f041ee037f09167fd1128a0e3186d839;hpb=a07cdcdf600fc224bc862686439dfbe01d72524a;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Displayer.cpp b/src/XGUI/XGUI_Displayer.cpp index dfed75b1f..8dd2d2e25 100644 --- a/src/XGUI/XGUI_Displayer.cpp +++ b/src/XGUI/XGUI_Displayer.cpp @@ -7,6 +7,8 @@ #include "XGUI_Displayer.h" #include "XGUI_Workshop.h" #include "XGUI_ViewerProxy.h" +#include "XGUI_SelectionMgr.h" +#include "XGUI_Selection.h" #include @@ -32,13 +34,41 @@ #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) { + enableUpdateViewer(true); } XGUI_Displayer::~XGUI_Displayer() @@ -78,6 +108,25 @@ 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 { + // Check that the presentation is not a sketch + Handle(ModuleBase_ResultPrs) aPrs = Handle(ModuleBase_ResultPrs)::DownCast(theAIS); + if (!aPrs.IsNull()) + return !aPrs->isSketchMode(); + return true; + } + } + return false; +} + void XGUI_Displayer::display(ObjectPtr theObject, AISObjectPtr theAIS, bool isShading, bool isUpdateViewer) { @@ -88,25 +137,28 @@ 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 + SelectMgr_IndexedMapOfOwner aSelectedOwners; + if (aCanBeShaded) { + myWorkshop->selector()->selection()->selectedOwners(aSelectedOwners); + closeLocalContexts(false); + } aContext->Display(anAISIO, false); - aContext->SetDisplayMode(anAISIO, isShading? Shading : Wireframe, false); + 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 (aContext->HasOpenedContext()) { - if (myUseExternalObjects) { - if (myActiveSelectionModes.size() == 0) - aContext->Activate(anAISIO); - else { - foreach(int aMode, myActiveSelectionModes) { - aContext->Activate(anAISIO, aMode); - } - } - } + if (aCanBeShaded) { + openLocalContext(); + activateObjects(myActiveSelectionModes); + myWorkshop->selector()->setSelectedOwners(aSelectedOwners, false); } } if (isUpdateViewer) @@ -156,7 +208,28 @@ void XGUI_Displayer::redisplay(ObjectPtr theObject, bool isUpdateViewer) Handle(AIS_InteractiveContext) aContext = AISContext(); if (aContext.IsNull()) return; - aContext->Redisplay(aAISIO, isUpdateViewer); + // Check that the visualized shape is the same and the redisplay is not necessary + // Redisplay of AIS object leads to this object selection compute and the selection + // in the browser is lost + // become + ResultPtr aResult = std::dynamic_pointer_cast(theObject); + if (aResult.get() != NULL) { + Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(aAISIO); + if (!aShapePrs.IsNull()) { + std::shared_ptr aShapePtr = ModelAPI_Tools::shape(aResult); + if (aShapePtr.get()) { + const TopoDS_Shape& aShape = aShapePrs->Shape(); + std::shared_ptr anAISShapePtr(new GeomAPI_Shape()); + anAISShapePtr->setImpl(new TopoDS_Shape(aShape)); + + if (aShapePtr->isEqual(anAISShapePtr)) + return; + } + } + } + aContext->Redisplay(aAISIO, false); + if (isUpdateViewer) + updateViewer(); } } @@ -170,13 +243,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) @@ -188,16 +261,116 @@ 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); + aContext->Load(anAIS, -1, true); + // In order to clear active modes list if (theModes.size() > 0) { foreach(int aMode, theModes) { + //aContext->Load(anAIS, aMode, true); aContext->Activate(anAIS, aMode); + qDebug("### 1. Activate obj %i, %i", (long)anAIS.Access(), aMode); } - } else + } else { + //aContext->Load(anAIS, 0, true); aContext->Activate(anAIS); + qDebug("### 2. Activate obj %i", (long)anAIS.Access()); + } + } +} + +void XGUI_Displayer::getModesOfActivation(ObjectPtr theObject, QIntList& theModes) +{ + if (!isVisible(theObject)) + return; + + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; + + AISObjectPtr aAISObj = getAISObject(theObject); + + if (aAISObj.get() != NULL) { + Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl(); + TColStd_ListOfInteger aTColModes; + aContext->ActivatedModes(anAISIO, aTColModes); + TColStd_ListIteratorOfListOfInteger itr( aTColModes ); + for (; itr.More(); itr.Next() ) { + theModes.append(itr.Value()); + } + } +} + +void XGUI_Displayer::activateObjects(const QIntList& theModes) +{ + // In order to avoid doblications of selection modes + QIntList aNewModes; + foreach (int aMode, theModes) { + if (!aNewModes.contains(aMode)) + aNewModes.append(aMode); + } + myActiveSelectionModes = aNewModes; + 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->Load(anAISIO, -1, true); + 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->Load(anAISIO, 0, true); + aContext->Activate(anAISIO); + qDebug("### 2. Activate all %i", (long)anAISIO.Access()); + } else { + foreach(int aMode, myActiveSelectionModes) { + //aContext->Load(anAISIO, aMode, true); + 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()) { + // qDebug("### Deactivate all %i", (long)anAISIO.Access()); + // //aContext->Activate(anAISIO); + //} } } @@ -217,42 +390,6 @@ bool XGUI_Displayer::isActive(ObjectPtr theObject) const return aModes.Extent() > 0; } -void XGUI_Displayer::stopSelection(const QObjectPtrList& theResults, const bool isStop, - const bool isUpdateViewer) -{ - Handle(AIS_InteractiveContext) aContext = AISContext(); - if (aContext.IsNull()) - return; - - Handle(AIS_Shape) anAIS; - QObjectPtrList::const_iterator anIt = theResults.begin(), aLast = theResults.end(); - ObjectPtr aFeature; - for (; anIt != aLast; anIt++) { - aFeature = *anIt; - if (isVisible(aFeature)) - anAIS = Handle(AIS_Shape)::DownCast( - myResult2AISObjectMap[aFeature]->impl()); - if (anAIS.IsNull()) - continue; - - if (isStop) { - QColor aColor(Qt::white); - anAIS->SetColor( - Quantity_Color(aColor.red() / 255., aColor.green() / 255., aColor.blue() / 255., - Quantity_TOC_RGB)); - anAIS->Redisplay(); - } else { - QColor aColor(Qt::red); - anAIS->SetColor( - Quantity_Color(aColor.red() / 255., aColor.green() / 255., aColor.blue() / 255., - Quantity_TOC_RGB)); - anAIS->Redisplay(); - } - } - if (isUpdateViewer) - updateViewer(); -} - void XGUI_Displayer::setSelected(const QObjectPtrList& theResults, const bool isUpdateViewer) { Handle(AIS_InteractiveContext) aContext = AISContext(); @@ -312,36 +449,9 @@ void XGUI_Displayer::eraseAll(const bool 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() { - Handle(AIS_InteractiveContext) aContext = AISContext(); + Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext(); if (aContext.IsNull()) return; // Open local context if there is no one @@ -361,13 +471,10 @@ void XGUI_Displayer::openLocalContext() //aContext->ClearCurrents(); aContext->OpenLocalContext(); + qDebug("### Open context"); + //aContext->NotUseDisplayedObjects(); - qDebug("### Open Local context"); - - aContext->NotUseDisplayedObjects(); - - myUseExternalObjects = false; - myActiveSelectionModes.clear(); + //myUseExternalObjects = false; SelectMgr_ListIteratorOfListOfFilter aIt(aFilters); for (;aIt.More(); aIt.Next()) { @@ -397,8 +504,7 @@ void XGUI_Displayer::closeLocalContexts(const bool isUpdateViewer) //aContext->ClearSelected(); aContext->CloseAllContexts(false); - - qDebug("### Close Local context"); + qDebug("### Close context"); // Redisplay all object if they were displayed in localContext Handle(AIS_InteractiveObject) aAISIO; @@ -419,8 +525,7 @@ void XGUI_Displayer::closeLocalContexts(const bool isUpdateViewer) if (isUpdateViewer) updateViewer(); - myUseExternalObjects = false; - myActiveSelectionModes.clear(); + //myUseExternalObjects = false; // Restore selection //AIS_ListIteratorOfListOfInteractive aIt2(aAisList); @@ -457,16 +562,30 @@ ObjectPtr XGUI_Displayer::getObject(const Handle(AIS_InteractiveObject)& theIO) return aFeature; } +bool XGUI_Displayer::enableUpdateViewer(const bool isEnabled) +{ + bool aWasEnabled = myEnableUpdateViewer; + + myEnableUpdateViewer = isEnabled; + + return aWasEnabled; +} + void XGUI_Displayer::updateViewer() { Handle(AIS_InteractiveContext) aContext = AISContext(); - if (!aContext.IsNull()) + if (!aContext.IsNull() && myEnableUpdateViewer) 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() @@ -486,8 +605,7 @@ void XGUI_Displayer::displayAIS(AISObjectPtr theAIS, bool isUpdate) if (!anAISIO.IsNull()) { aContext->Display(anAISIO, isUpdate); if (aContext->HasOpenedContext()) { - if (myUseExternalObjects) { - aContext->Deactivate(anAISIO); + //if (myUseExternalObjects) { if (myActiveSelectionModes.size() == 0) aContext->Activate(anAISIO); else { @@ -495,7 +613,7 @@ void XGUI_Displayer::displayAIS(AISObjectPtr theAIS, bool isUpdate) aContext->Activate(anAISIO, aMode); } } - } + //} } } } @@ -509,52 +627,6 @@ void XGUI_Displayer::eraseAIS(AISObjectPtr theAIS, const bool isUpdate) } } -void XGUI_Displayer::activateObjects(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); - - AIS_ListIteratorOfListOfInteractive aLIt(aPrsList); - Handle(AIS_InteractiveObject) anAISIO; - Handle(AIS_Trihedron) aTrihedron; - for(aLIt.Initialize(aPrsList); aLIt.More(); aLIt.Next()){ - anAISIO = aLIt.Value(); - aTrihedron = Handle(AIS_Trihedron)::DownCast(anAISIO); - aContext->Deactivate(anAISIO); - if (aTrihedron.IsNull()) { - aContext->Load(anAISIO, -1, true); - if (theModes.size() == 0) - aContext->Activate(anAISIO); - else { - foreach(int aMode, theModes) { - aContext->Activate(anAISIO, aMode); - } - } - } - } -} - - -void XGUI_Displayer::deactivateObjects() -{ - 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) { @@ -570,7 +642,21 @@ void XGUI_Displayer::setDisplayMode(ObjectPtr theObject, DisplayMode theMode, bo return; Handle(AIS_InteractiveObject) aAISIO = aAISObj->impl(); - aContext->SetDisplayMode(aAISIO, theMode, toUpdate); + bool aCanBeShaded = ::canBeShaded(aAISIO); + // In order to avoid extra closing/opening context + SelectMgr_IndexedMapOfOwner aSelectedOwners; + if (aCanBeShaded) { + myWorkshop->selector()->selection()->selectedOwners(aSelectedOwners); + closeLocalContexts(false); + } + aContext->SetDisplayMode(aAISIO, theMode, false); + if (aCanBeShaded) { + openLocalContext(); + activateObjects(myActiveSelectionModes); + myWorkshop->selector()->setSelectedOwners(aSelectedOwners, false); + } + if (toUpdate) + updateViewer(); } XGUI_Displayer::DisplayMode XGUI_Displayer::displayMode(ObjectPtr theObject) const @@ -630,3 +716,16 @@ void XGUI_Displayer::showOnly(const QObjectPtrList& theList) } updateViewer(); } + +bool XGUI_Displayer::canBeShaded(ObjectPtr theObject) const +{ + if (!isVisible(theObject)) + return false; + + AISObjectPtr aAISObj = getAISObject(theObject); + if (aAISObj.get() == NULL) + return false; + + Handle(AIS_InteractiveObject) anAIS = aAISObj->impl(); + return ::canBeShaded(anAIS); +}