X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Displayer.cpp;h=bca8d2d24c37de2107155910d1d9fc51cca2d3a4;hb=622014f62af50bfd219fb242df168760849e2006;hp=d4ae6d5027f297a4579b557e6a812596d3a96cb0;hpb=26fd2a83901ae81ce09f2ceb0d078d8bd8a28de4;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Displayer.cpp b/src/XGUI/XGUI_Displayer.cpp index d4ae6d502..bca8d2d24 100644 --- a/src/XGUI/XGUI_Displayer.cpp +++ b/src/XGUI/XGUI_Displayer.cpp @@ -1,4 +1,4 @@ -// File: XGUI_Displayer.cxx +// File: XGUI_Displayer.cpp // Created: 20 Apr 2014 // Author: Natalia ERMOLAEVA @@ -8,6 +8,9 @@ #include #include +#include +#include + #include XGUI_Displayer::XGUI_Displayer(XGUI_Viewer* theViewer) @@ -19,24 +22,74 @@ XGUI_Displayer::~XGUI_Displayer() { } -void XGUI_Displayer::Display(boost::shared_ptr theFeature) +void XGUI_Displayer::Display(boost::shared_ptr theFeature, + const bool isUpdateViewer) { } void XGUI_Displayer::Display(boost::shared_ptr theFeature, - const TopoDS_Shape& theShape) + const TopoDS_Shape& theShape, const bool isUpdateViewer) { Handle(AIS_InteractiveContext) aContext = myViewer->AISContext(); Handle(AIS_Shape) anAIS = new AIS_Shape(theShape); + std::vector aDispAIS; + if (myFeature2AISObjectMap.find(theFeature) != myFeature2AISObjectMap.end()) { + aDispAIS = myFeature2AISObjectMap[theFeature]; + } + aDispAIS.push_back(anAIS); + myFeature2AISObjectMap[theFeature] = aDispAIS; + aContext->Display(anAIS, Standard_False); - aContext->UpdateCurrentViewer(); + if (isUpdateViewer) + aContext->UpdateCurrentViewer(); } void XGUI_Displayer::Erase(boost::shared_ptr theFeature, - const TopoDS_Shape& theShape) + const bool isUpdateViewer) { + if (myFeature2AISObjectMap.find(theFeature) == myFeature2AISObjectMap.end()) + return; + + std::vector aDispAIS = myFeature2AISObjectMap[theFeature]; + std::vector::const_iterator anIt = aDispAIS.begin(), + aLast = aDispAIS.end(); Handle(AIS_InteractiveContext) aContext = myViewer->AISContext(); - aContext->EraseAll(); + for (; anIt != aLast; anIt++) { + Handle(AIS_InteractiveObject) anAIS = *anIt; + Handle(AIS_Shape) anAISShape = Handle(AIS_Shape)::DownCast(anAIS); + if (anAISShape.IsNull()) + continue; + aContext->Erase(anAISShape); + } + + if (isUpdateViewer) + aContext->UpdateCurrentViewer(); } + +void XGUI_Displayer::LocalSelection(boost::shared_ptr theFeature, + const TopoDS_Shape& theShape, + const int theMode, const bool isUpdateViewer) +{ + Handle(AIS_InteractiveContext) aContext = myViewer->AISContext(); + + Handle(AIS_Shape) anAIS = new AIS_Shape(theShape); + std::vector aDispAIS; + if (myFeature2AISObjectMap.find(theFeature) != myFeature2AISObjectMap.end()) { + aDispAIS = myFeature2AISObjectMap[theFeature]; + } + aDispAIS.push_back(anAIS); + myFeature2AISObjectMap[theFeature] = aDispAIS; + aContext->Display(anAIS, Standard_False); + + AIS_ListOfInteractive anAISList; + anAISList.Append(anAIS); + myViewer->setLocalSelection(anAISList, theMode, true); +} + +void XGUI_Displayer::GlobalSelection(const bool isUpdateViewer) +{ + myViewer->setGlobalSelection(true); +} +