X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Displayer.cpp;h=736de32d2d7059deaafe0394e5b8e1d83f5cf0cd;hb=4fcd5da2d972334e887716499b0ea75d9d6c51c2;hp=83f70bf14547149dfb23246cc61dce5aef25c2f1;hpb=3868952ce179012a7ca56f6c8d1f271ecdb17f73;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Displayer.cpp b/src/XGUI/XGUI_Displayer.cpp index 83f70bf14..736de32d2 100644 --- a/src/XGUI/XGUI_Displayer.cpp +++ b/src/XGUI/XGUI_Displayer.cpp @@ -6,25 +6,29 @@ #include "XGUI_Viewer.h" #include "XGUI_Workshop.h" #include "XGUI_ViewerProxy.h" -#include "XGUI_Tools.h" #include #include #include +#include + +#include #include +#include #include #include #include #include #include - #include +#include +#include #include -const int MOUSE_SENSITIVITY_IN_PIXEL = 10; ///< defines the local context mouse selection sensitivity +const int MOUSE_SENSITIVITY_IN_PIXEL = 10; ///< defines the local context mouse selection sensitivity XGUI_Displayer::XGUI_Displayer(XGUI_Workshop* theWorkshop) { @@ -35,170 +39,180 @@ XGUI_Displayer::~XGUI_Displayer() { } -bool XGUI_Displayer::isVisible(FeaturePtr theFeature) +bool XGUI_Displayer::isVisible(ObjectPtr theObject) const { - FeaturePtr aFeature = XGUI_Tools::realFeature(theFeature); - return myFeature2AISObjectMap.find(aFeature) != myFeature2AISObjectMap.end(); + return myResult2AISObjectMap.find(theObject) != myResult2AISObjectMap.end(); } -bool XGUI_Displayer::display(FeaturePtr theFeature, bool isUpdateViewer) +void XGUI_Displayer::display(ObjectPtr theObject, bool isUpdateViewer) { - FeaturePtr aFeature = XGUI_Tools::realFeature(theFeature); - boost::shared_ptr aShapePtr = aFeature->data()->shape(); - - if (aShapePtr) { - boost::shared_ptr anAIS(new GeomAPI_AISObject()); - anAIS->createShape(aShapePtr); - return display(aFeature, anAIS, isUpdateViewer); + if (isVisible(theObject)) { + redisplay(theObject, isUpdateViewer); + } else { + AISObjectPtr anAIS; + + GeomPresentablePtr aPrs = boost::dynamic_pointer_cast(theObject); + bool isShading = false; + if (aPrs) { + anAIS = aPrs->getAISObject(AISObjectPtr()); + } else { + ResultPtr aResult = boost::dynamic_pointer_cast(theObject); + if (aResult) { + boost::shared_ptr aShapePtr = ModelAPI_Tools::shape(aResult); + if (aShapePtr) { + anAIS = AISObjectPtr(new GeomAPI_AISObject()); + anAIS->setImpl(new Handle(AIS_InteractiveObject)(new ModuleBase_ResultPrs(aResult))); + //anAIS->createShape(aShapePtr); + isShading = true; + } + } + } + if (anAIS) + display(theObject, anAIS, isShading, isUpdateViewer); } - return false; } -bool XGUI_Displayer::display(FeaturePtr theFeature, - boost::shared_ptr theAIS, bool isUpdateViewer) +void XGUI_Displayer::display(ObjectPtr theObject, AISObjectPtr theAIS, + bool isShading, bool isUpdateViewer) { Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; Handle(AIS_InteractiveObject) anAISIO = theAIS->impl(); if (!anAISIO.IsNull()) { - myFeature2AISObjectMap[theFeature] = theAIS; - aContext->Display(anAISIO, isUpdateViewer); - return true; + myResult2AISObjectMap[theObject] = theAIS; + aContext->Display(anAISIO, false); + aContext->SetDisplayMode(anAISIO, isShading? Shading : Wireframe, isUpdateViewer); } - return false; } - - -void XGUI_Displayer::erase(FeaturePtr theFeature, - const bool isUpdateViewer) +void XGUI_Displayer::erase(ObjectPtr theObject, const bool isUpdateViewer) { - FeaturePtr aFeature = XGUI_Tools::realFeature(theFeature); - - if (myFeature2AISObjectMap.find(aFeature) == myFeature2AISObjectMap.end()) + if (!isVisible(theObject)) return; Handle(AIS_InteractiveContext) aContext = AISContext(); - boost::shared_ptr anObject = myFeature2AISObjectMap[aFeature]; - if (anObject) { + if (aContext.IsNull()) + return; + AISObjectPtr anObject = myResult2AISObjectMap[theObject]; + if (anObject) { Handle(AIS_InteractiveObject) anAIS = anObject->impl(); if (!anAIS.IsNull()) { - aContext->Erase(anAIS, isUpdateViewer); - + aContext->Remove(anAIS, isUpdateViewer); } } - myFeature2AISObjectMap.erase(aFeature); + myResult2AISObjectMap.erase(theObject); } - -bool XGUI_Displayer::redisplay(FeaturePtr theFeature, - boost::shared_ptr theAIS, - const bool isUpdateViewer) +void XGUI_Displayer::redisplay(ObjectPtr theObject, bool isUpdateViewer) { - bool isCreated = false; - Handle(AIS_InteractiveObject) anAIS = - theAIS ? theAIS->impl() : Handle(AIS_InteractiveObject)(); - Handle(AIS_InteractiveContext) aContext = AISContext(); - // Open local context if there is no one - if (!aContext->HasOpenedContext()) { - aContext->ClearCurrents(false); - aContext->OpenLocalContext(false/*use displayed objects*/, true/*allow shape decomposition*/); - // set mouse sensitivity - //aContext->SetSensitivityMode(StdSelect_SM_WINDOW); - //aContext->SetPixelTolerance(MOUSE_SENSITIVITY_IN_PIXEL); - } - // display or redisplay presentation - boost::shared_ptr anObj = myFeature2AISObjectMap[theFeature]; - if (isVisible(theFeature) && anObj && !anObj->empty()) { - aContext->RecomputeSelectionOnly(anAIS); - } - else { - myFeature2AISObjectMap[theFeature] = theAIS; - aContext->Display(anAIS, false); - isCreated = true; + if (!isVisible(theObject)) + return; + + AISObjectPtr aAISObj = getAISObject(theObject); + Handle(AIS_InteractiveObject) aAISIO = aAISObj->impl(); + + GeomPresentablePtr aPrs = boost::dynamic_pointer_cast(theObject); + if (aPrs) { + AISObjectPtr aAIS_Obj = aPrs->getAISObject(aAISObj); + if (!aAIS_Obj) { + erase(theObject, isUpdateViewer); + return; + } + if (aAIS_Obj != aAISObj) { + myResult2AISObjectMap[theObject] = aAIS_Obj; + } + aAISIO = aAIS_Obj->impl(); } - if (isUpdateViewer) - updateViewer(); - return isCreated; + if (!aAISIO.IsNull()) { + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; + aContext->Redisplay(aAISIO, isUpdateViewer); + } } -bool XGUI_Displayer::redisplay(FeaturePtr theFeature, bool isUpdateViewer) +void XGUI_Displayer::deactivate(ObjectPtr theObject) { - FeaturePtr aFeature = XGUI_Tools::realFeature(theFeature); - if (!isVisible(aFeature)) - return false; + if (isVisible(theObject)) { + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; - boost::shared_ptr aShapePtr = aFeature->data()->shape(); - if (aShapePtr) { - boost::shared_ptr aAISObj = getAISObject(aFeature); - Handle(AIS_Shape) aAISShape = Handle(AIS_Shape)::DownCast(aAISObj->impl()); - if (!aAISShape.IsNull()) { - aAISShape->Set(aShapePtr->impl()); - AISContext()->Redisplay(aAISShape); - return true; - } + AISObjectPtr anObj = myResult2AISObjectMap[theObject]; + Handle(AIS_InteractiveObject) anAIS = anObj->impl(); + aContext->Deactivate(anAIS); } - return false; } -void XGUI_Displayer::activateInLocalContext(FeaturePtr theFeature, - const std::list& theModes, const bool isUpdateViewer) +void XGUI_Displayer::activate(ObjectPtr theObject, const QIntList& theModes) { - Handle(AIS_InteractiveContext) aContext = AISContext(); - // Open local context if there is no one - if (!aContext->HasOpenedContext()) { - aContext->ClearCurrents(false); - aContext->OpenLocalContext(false/*use displayed objects*/, true/*allow shape decomposition*/); - } - // display or redisplay presentation - Handle(AIS_InteractiveObject) anAIS; - if (isVisible(theFeature)) - { - boost::shared_ptr anObj = myFeature2AISObjectMap[theFeature]; - if (anObj) - anAIS = anObj->impl(); - } - - // Activate selection of objects from prs - if (!anAIS.IsNull()) { - aContext->Load(anAIS, -1, true/*allow decomposition*/); - aContext->Deactivate(anAIS); + if (isVisible(theObject)) { + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; - std::list::const_iterator anIt = theModes.begin(), aLast = theModes.end(); - for (; anIt != aLast; anIt++) - { - aContext->Activate(anAIS, (*anIt)); + AISObjectPtr anObj = myResult2AISObjectMap[theObject]; + Handle(AIS_InteractiveObject) anAIS = anObj->impl(); + if (aContext->HasOpenedContext()) { + aContext->Load(anAIS, -1, true); } + if (theModes.size() > 0) { + foreach(int aMode, theModes) { + aContext->Activate(anAIS, aMode); + } + } else + aContext->Activate(anAIS); } +} - if (isUpdateViewer) - updateViewer(); +bool XGUI_Displayer::isActive(ObjectPtr theObject) const +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return false; + if (!isVisible(theObject)) + return false; + + AISObjectPtr anObj = myResult2AISObjectMap.at(theObject); + Handle(AIS_InteractiveObject) anAIS = anObj->impl(); + + TColStd_ListOfInteger aModes; + aContext->ActivatedModes(anAIS, aModes); + return aModes.Extent() > 0; } -void XGUI_Displayer::stopSelection(const QFeatureList& theFeatures, const bool isStop, +void XGUI_Displayer::stopSelection(const QList& theResults, const bool isStop, const bool isUpdateViewer) { Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; Handle(AIS_Shape) anAIS; - QFeatureList::const_iterator anIt = theFeatures.begin(), aLast = theFeatures.end(); - FeaturePtr aFeature; + QList::const_iterator anIt = theResults.begin(), aLast = theResults.end(); + ObjectPtr aFeature; for (; anIt != aLast; anIt++) { aFeature = *anIt; if (isVisible(aFeature)) - anAIS = Handle(AIS_Shape)::DownCast(myFeature2AISObjectMap[aFeature]->impl()); + 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->SetColor( + Quantity_Color(aColor.red() / 255., aColor.green() / 255., aColor.blue() / 255., + Quantity_TOC_RGB)); anAIS->Redisplay(); - } - else { + } else { QColor aColor(Qt::red); - anAIS->SetColor(Quantity_Color(aColor.red()/255., aColor.green()/255., aColor.blue()/255., Quantity_TOC_RGB)); + anAIS->SetColor( + Quantity_Color(aColor.red() / 255., aColor.green() / 255., aColor.blue() / 255., + Quantity_TOC_RGB)); anAIS->Redisplay(); } } @@ -206,7 +220,7 @@ void XGUI_Displayer::stopSelection(const QFeatureList& theFeatures, const bool i updateViewer(); } -void XGUI_Displayer::setSelected(const QFeatureList& theFeatures, const bool isUpdateViewer) +void XGUI_Displayer::setSelected(const QList& theResults, const bool isUpdateViewer) { Handle(AIS_InteractiveContext) aContext = AISContext(); // we need to unhighligth objects manually in the current local context @@ -216,14 +230,13 @@ void XGUI_Displayer::setSelected(const QFeatureList& theFeatures, const bool isU aLocalContext->UnhilightLastDetected(myWorkshop->viewer()->activeView()); aContext->ClearSelected(); - foreach(FeaturePtr aFeature, theFeatures) { - FeaturePtr aRFeature = XGUI_Tools::realFeature(aFeature); - if (myFeature2AISObjectMap.find(aRFeature) == myFeature2AISObjectMap.end()) - return; + foreach(ObjectPtr aResult, theResults) + { + if (myResult2AISObjectMap.find(aResult) == myResult2AISObjectMap.end()) + continue; - boost::shared_ptr anObj = myFeature2AISObjectMap[aRFeature]; - if (anObj) - { + AISObjectPtr anObj = myResult2AISObjectMap[aResult]; + if (anObj) { Handle(AIS_InteractiveObject) anAIS = anObj->impl(); if (!anAIS.IsNull()) aContext->AddOrRemoveSelected(anAIS, false); @@ -234,78 +247,108 @@ void XGUI_Displayer::setSelected(const QFeatureList& theFeatures, const bool isU } -/*void XGUI_Displayer::EraseAll(const bool isUpdateViewer) +void XGUI_Displayer::clearSelected() { - Handle(AIS_InteractiveContext) ic = AISContext(); - - AIS_ListOfInteractive aList; - ic->DisplayedObjects(aList); - AIS_ListIteratorOfListOfInteractive anIter(aList); - for (; anIter.More(); anIter.Next()) { - if ((anIter.Value()->DynamicType() == STANDARD_TYPE(AIS_Trihedron))) - continue; - - // erase an object - Handle(AIS_InteractiveObject) anIO = anIter.Value(); - ic->Erase(anIO, false); + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext) { + aContext->UnhilightCurrents(false); + aContext->ClearSelected(); } - myFeature2AISObjectMap.clear(); - if (isUpdateViewer) - updateViewer(); -}*/ +} -void XGUI_Displayer::eraseDeletedFeatures(const bool isUpdateViewer) +void XGUI_Displayer::eraseAll(const bool isUpdateViewer) +{ + Handle(AIS_InteractiveContext) ic = AISContext(); + if (ic.IsNull()) + return; + + ResultToAISMap::iterator aIt; + for (aIt = myResult2AISObjectMap.begin(); aIt != myResult2AISObjectMap.end(); aIt++) { + // erase an object + AISObjectPtr aAISObj = (*aIt).second; + Handle(AIS_InteractiveObject) anIO = aAISObj->impl(); + if (!anIO.IsNull()) + ic->Remove(anIO, false); + } + myResult2AISObjectMap.clear(); + if (isUpdateViewer) + updateViewer(); + } + +void XGUI_Displayer::eraseDeletedResults(const bool isUpdateViewer) { Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; - FeatureToAISMap::const_iterator aFIt = myFeature2AISObjectMap.begin(), - aFLast = myFeature2AISObjectMap.end(); - std::list aRemoved; - for (; aFIt != aFLast; aFIt++) - { - FeaturePtr aFeature = (*aFIt).first; + ResultToAISMap::const_iterator aFIt = myResult2AISObjectMap.begin(), aFLast = + myResult2AISObjectMap.end(); + std::list aRemoved; + for (; aFIt != aFLast; aFIt++) { + ObjectPtr aFeature = (*aFIt).first; if (!aFeature || !aFeature->data() || !aFeature->data()->isValid()) { - boost::shared_ptr anObj = (*aFIt).second; - if (!anObj) continue; + AISObjectPtr anObj = (*aFIt).second; + if (!anObj) + continue; Handle(AIS_InteractiveObject) anAIS = anObj->impl(); if (!anAIS.IsNull()) { - aContext->Erase(anAIS, false); + aContext->Remove(anAIS, false); aRemoved.push_back(aFeature); } } } - std::list::const_iterator anIt = aRemoved.begin(), - aLast = aRemoved.end(); + std::list::const_iterator anIt = aRemoved.begin(), aLast = aRemoved.end(); for (; anIt != aLast; anIt++) { - myFeature2AISObjectMap.erase(myFeature2AISObjectMap.find(*anIt)); + myResult2AISObjectMap.erase(myResult2AISObjectMap.find(*anIt)); } if (isUpdateViewer) updateViewer(); } +void XGUI_Displayer::openLocalContext() +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; + // Open local context if there is no one + if (!aContext->HasOpenedContext()) { + aContext->ClearCurrents(false); + //aContext->OpenLocalContext(false/*use displayed objects*/, true/*allow shape decomposition*/); + aContext->OpenLocalContext(); + aContext->NotUseDisplayedObjects(); + } +} + void XGUI_Displayer::closeLocalContexts(const bool isUpdateViewer) { + AISContext()->ClearSelected(false); closeAllContexts(true); } -boost::shared_ptr XGUI_Displayer::getAISObject( - FeaturePtr theFeature) const +AISObjectPtr XGUI_Displayer::getAISObject(ObjectPtr theObject) const { - boost::shared_ptr anIO; - if (myFeature2AISObjectMap.find(theFeature) != myFeature2AISObjectMap.end()) - anIO = (myFeature2AISObjectMap.find(theFeature))->second; + AISObjectPtr anIO; + if (myResult2AISObjectMap.find(theObject) != myResult2AISObjectMap.end()) + anIO = (myResult2AISObjectMap.find(theObject))->second; return anIO; } -FeaturePtr XGUI_Displayer::getFeature(Handle(AIS_InteractiveObject) theIO) const +ObjectPtr XGUI_Displayer::getObject(const AISObjectPtr& theIO) const +{ + Handle(AIS_InteractiveObject) aRefAIS = theIO->impl(); + return getObject(aRefAIS); +} + +ObjectPtr XGUI_Displayer::getObject(const Handle(AIS_InteractiveObject)& theIO) const { - FeaturePtr aFeature; - FeatureToAISMap::const_iterator aFIt = myFeature2AISObjectMap.begin(), - aFLast = myFeature2AISObjectMap.end(); + ObjectPtr aFeature; + ResultToAISMap::const_iterator aFIt = myResult2AISObjectMap.begin(), aFLast = + myResult2AISObjectMap.end(); for (; aFIt != aFLast && !aFeature; aFIt++) { - boost::shared_ptr anObj = (*aFIt).second; - if (!anObj) continue; + AISObjectPtr anObj = (*aFIt).second; + if (!anObj) + continue; Handle(AIS_InteractiveObject) anAIS = anObj->impl(); if (anAIS != theIO) continue; @@ -331,7 +374,128 @@ void XGUI_Displayer::updateViewer() ic->UpdateCurrentViewer(); } -Handle(AIS_InteractiveContext) XGUI_Displayer::AISContext() const -{ - return myWorkshop->viewer()->AISContext(); +Handle(AIS_InteractiveContext) XGUI_Displayer::AISContext() const +{ + return myWorkshop->viewer()->AISContext(); +} + +void XGUI_Displayer::display(AISObjectPtr theAIS, bool isUpdate) +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + Handle(AIS_InteractiveObject) anAISIO = theAIS->impl(); + if (!anAISIO.IsNull()) + aContext->Display(anAISIO, isUpdate); +} + +void XGUI_Displayer::erase(AISObjectPtr theAIS, const bool isUpdate) +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + Handle(AIS_InteractiveObject) anAISIO = theAIS->impl(); + if (!anAISIO.IsNull()) { + aContext->Remove(anAISIO, 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(); + ResultToAISMap::iterator aIt; + Handle(AIS_InteractiveObject) anAISIO; + for (aIt = myResult2AISObjectMap.begin(); aIt != myResult2AISObjectMap.end(); aIt++) { + anAISIO = (*aIt).second->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) +{ + if (theMode == NoMode) + return; + + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; + + AISObjectPtr aAISObj = getAISObject(theObject); + if (!aAISObj) + return; + + Handle(AIS_InteractiveObject) aAISIO = aAISObj->impl(); + 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(); + if (aContext.IsNull()) + return NoMode; + + AISObjectPtr aAISObj = getAISObject(theObject); + if (!aAISObj) + return NoMode; + + Handle(AIS_InteractiveObject) aAISIO = aAISObj->impl(); + return (XGUI_Displayer::DisplayMode) aAISIO->DisplayMode(); +} + +void XGUI_Displayer::addSelectionFilter(const Handle(SelectMgr_Filter)& theFilter) +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; + aContext->AddFilter(theFilter); +} + +void XGUI_Displayer::removeSelectionFilter(const Handle(SelectMgr_Filter)& theFilter) +{ + Handle(AIS_InteractiveContext) aContext = AISContext(); + if (aContext.IsNull()) + return; + aContext->RemoveFilter(theFilter); }