Salome HOME
Update copyrights
[modules/shaper.git] / src / XGUI / XGUI_Displayer.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "XGUI_Displayer.h"
21
22 #include "XGUI_CustomPrs.h"
23 #include "XGUI_FacesPanel.h"
24 #include "XGUI_Selection.h"
25 #include "XGUI_SelectionActivate.h"
26 #include "XGUI_SelectionMgr.h"
27 #include "XGUI_ViewerProxy.h"
28 #include "XGUI_Workshop.h"
29
30 #ifndef HAVE_SALOME
31 #include <AppElements_Viewer.h>
32 #endif
33
34 #include <ModelAPI_Document.h>
35 #include <ModelAPI_Data.h>
36 #include <ModelAPI_Object.h>
37 #include <ModelAPI_Tools.h>
38 #include <ModelAPI_AttributeIntArray.h>
39 #include <ModelAPI_ResultBody.h>
40 #include <ModelAPI_ResultConstruction.h>
41
42 #include <ModuleBase_BRepOwner.h>
43 #include <ModuleBase_IModule.h>
44 #include <ModuleBase_Preferences.h>
45 #include <ModuleBase_ResultPrs.h>
46 #include <ModuleBase_Tools.h>
47 #include <ModuleBase_ViewerPrs.h>
48 #include <ModuleBase_IViewer.h>
49
50 #include <GeomAPI_Shape.h>
51 #include <GeomAPI_IPresentable.h>
52 #include <GeomAPI_ICustomPrs.h>
53 #include <GeomAPI_Pnt.h>
54 #include <GeomAPI_IScreenParams.h>
55
56 #include <SUIT_ResourceMgr.h>
57
58 #include <AIS_InteractiveContext.hxx>
59 #include <AIS_ListOfInteractive.hxx>
60 #include <AIS_ListIteratorOfListOfInteractive.hxx>
61 #include <AIS_DimensionSelectionMode.hxx>
62 #include <AIS_Shape.hxx>
63 #include <AIS_Dimension.hxx>
64 #include <AIS_Trihedron.hxx>
65 #ifdef BEFORE_TRIHEDRON_PATCH
66 #include <AIS_Axis.hxx>
67 #include <AIS_Plane.hxx>
68 #include <AIS_Point.hxx>
69 #endif
70 #include <AIS_Selection.hxx>
71 #include <Prs3d_Drawer.hxx>
72 #include <Prs3d_IsoAspect.hxx>
73 #include <SelectMgr_ListOfFilter.hxx>
74 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
75 #include <SelectMgr_SelectionManager.hxx>
76 #include <TColStd_ListIteratorOfListOfInteger.hxx>
77
78 #include <StdSelect_ViewerSelector3d.hxx>
79
80 #include <TColStd_MapOfTransient.hxx>
81 #include <TColStd_MapIteratorOfMapOfTransient.hxx>
82
83 #ifdef TINSPECTOR
84 #include <inspector/VInspectorAPI_CallBack.hxx>
85 #endif
86
87 #include <Events_Loop.h>
88 #include <ModelAPI_Events.h>
89 #include <Config_PropManager.h>
90
91 #include <set>
92
93 /// defines the local context mouse selection sensitivity
94 const int MOUSE_SENSITIVITY_IN_PIXEL = 10;
95
96 //#define DEBUG_DISPLAY
97 //#define DEBUG_FEATURE_REDISPLAY
98 //#define DEBUG_SELECTION_FILTERS
99
100 //#define DEBUG_COMPOSILID_DISPLAY
101
102 //#define DEBUG_OCCT_SHAPE_SELECTION
103
104 #define CLEAR_OUTDATED_SELECTION_BEFORE_REDISPLAY
105
106 //#define DEBUG_VIEWER_BLOCKED_COUNT
107
108 //**************************************************************
109 void displayedObjects(const Handle(AIS_InteractiveContext)& theAIS, AIS_ListOfInteractive& theList)
110 {
111   // Get from null point
112   theAIS->DisplayedObjects(theList, true);
113 }
114
115 QString qIntListInfo(const QIntList& theValues, const QString& theSeparator = QString(", "))
116 {
117   QStringList anInfo;
118   QIntList::const_iterator anIt = theValues.begin(), aLast = theValues.end();
119   for (; anIt != aLast; anIt++) {
120     anInfo.append(QString::number(*anIt));
121   }
122   return anInfo.join(theSeparator);
123 }
124
125 //**************************************************************
126 XGUI_Displayer::XGUI_Displayer(XGUI_Workshop* theWorkshop)
127 : myWorkshop(theWorkshop), myNeedUpdate(false),
128   myViewerBlockedRecursiveCount(0), myIsFirstAISContextUse(true)
129 {
130   myCustomPrs = std::shared_ptr<GeomAPI_ICustomPrs>(new XGUI_CustomPrs(theWorkshop));
131 }
132
133 //**************************************************************
134 XGUI_Displayer::~XGUI_Displayer()
135 {
136 }
137
138 //**************************************************************
139 bool XGUI_Displayer::isVisible(ObjectPtr theObject) const
140 {
141   return myResult2AISObjectMap.contains(theObject);
142 }
143
144 //**************************************************************
145 bool XGUI_Displayer::display(ObjectPtr theObject, bool theUpdateViewer)
146 {
147   bool aDisplayed = false;
148   if (isVisible(theObject)) {
149 #ifdef DEBUG_COMPOSILID_DISPLAY
150     ResultCompSolidPtr aCompsolidResult =
151       std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(theObject);
152     if (aCompsolidResult.get()) {
153       for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
154         ResultPtr aSubResult = aCompsolidResult->subResult(i);
155         if (aSubResult.get())
156           redisplay(aSubResult, false);
157       }
158       if (theUpdateViewer)
159         updateViewer();
160     }
161     else
162 #endif
163     aDisplayed = redisplay(theObject, theUpdateViewer);
164   } else {
165     AISObjectPtr anAIS;
166     GeomPresentablePtr aPrs = std::dynamic_pointer_cast<GeomAPI_IPresentable>(theObject);
167     bool isShading = false;
168     if (aPrs.get() != NULL) {
169       GeomScreenParamsPtr aScreen = std::dynamic_pointer_cast<GeomAPI_IScreenParams>(theObject);
170       if (aScreen.get()) {
171         aScreen->setScreenPlane(getScreenPlane());
172         aScreen->setViewScale(getViewScale());
173       }
174       anAIS = aPrs->getAISObject(anAIS);
175       //if (anAIS.get()) {
176         // correct deviation coefficient for
177         /*Handle(AIS_InteractiveObject) anAISPrs = anAIS->impl<Handle(AIS_InteractiveObject)>();
178         if (!anAISPrs.IsNull()) {
179           Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(anAISPrs);
180           if (!aShapePrs.IsNull()) {
181             TopoDS_Shape aShape = aShapePrs->Shape();
182             if (!aShape.IsNull())
183               //ModuleBase_Tools::setDefaultDeviationCoefficient(aShape, anAISPrs->Attributes());
184           }
185         }*/
186       //}
187     } else {
188       ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
189       if (aResult.get() != NULL) {
190 #ifdef DEBUG_COMPOSILID_DISPLAY
191         ResultCompSolidPtr aCompsolidResult =
192           std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(theObject);
193         if (aCompsolidResult.get()) {
194           for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
195             ResultPtr aSubResult = aCompsolidResult->subResult(i);
196             if (aSubResult.get())
197               display(aSubResult, false);
198           }
199           if (theUpdateViewer)
200             updateViewer();
201         }
202         else {
203 #endif
204         std::shared_ptr<GeomAPI_Shape> aShapePtr = ModelAPI_Tools::shape(aResult);
205         if (aShapePtr.get() != NULL) {
206           anAIS = AISObjectPtr(new GeomAPI_AISObject());
207           Handle(AIS_InteractiveObject) anAISPrs =
208             myWorkshop->module()->createPresentation(aResult);
209           if (anAISPrs.IsNull())
210             anAISPrs = new ModuleBase_ResultPrs(aResult);
211           else {
212             Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(anAISPrs);
213             if (!aShapePrs.IsNull())
214               ModuleBase_Tools::setPointBallHighlighting((AIS_Shape*) aShapePrs.get());
215           }
216           anAIS->setImpl(new Handle(AIS_InteractiveObject)(anAISPrs));
217           //anAIS->createShape(aShapePtr);
218           isShading = true;
219         }
220 #ifdef DEBUG_COMPOSILID_DISPLAY
221         } // close else
222 #endif
223       }
224     }
225     if (anAIS)
226       aDisplayed = display(theObject, anAIS, isShading, theUpdateViewer);
227   }
228   return aDisplayed;
229 }
230
231 //**************************************************************
232 bool canBeShaded(Handle(AIS_InteractiveObject) theAIS, ModuleBase_IModule* theModule)
233 {
234   Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(theAIS);
235   if (!aShapePrs.IsNull()) {
236     TopoDS_Shape aShape = aShapePrs->Shape();
237     if (aShape.IsNull())
238       return false;
239     TopAbs_ShapeEnum aType = aShape.ShapeType();
240     if ((aType == TopAbs_VERTEX) || (aType == TopAbs_EDGE) || (aType == TopAbs_WIRE))
241       return false;
242     else {
243       // Check that the presentation is not a sketch
244       return theModule->canBeShaded(theAIS);
245     }
246   }
247   return false;
248 }
249
250 //**************************************************************
251 bool XGUI_Displayer::display(ObjectPtr theObject, AISObjectPtr theAIS,
252                              bool isShading, bool theUpdateViewer)
253 {
254   bool aDisplayed = false;
255
256   Handle(AIS_InteractiveContext) aContext = AISContext();
257   if (aContext.IsNull())
258     return aDisplayed;
259
260   Handle(AIS_InteractiveObject) anAISIO = theAIS->impl<Handle(AIS_InteractiveObject)>();
261   if (!anAISIO.IsNull()) {
262     appendResultObject(theObject, theAIS);
263
264     bool isCustomized = customizeObject(theObject);
265
266     int aDispMode = isShading? Shading : Wireframe;
267     if (isShading)
268       anAISIO->Attributes()->SetFaceBoundaryDraw( Standard_True );
269     anAISIO->SetDisplayMode(aDispMode);
270     aContext->Display(anAISIO, aDispMode, 0, false, true, AIS_DS_Displayed);
271     #ifdef TINSPECTOR
272     if (getCallBack()) getCallBack()->Display(anAISIO);
273     #endif
274     aDisplayed = true;
275
276     emit objectDisplayed(theObject, theAIS);
277     selectionActivate()->activate(anAISIO, theUpdateViewer);
278   }
279   if (theUpdateViewer)
280     updateViewer();
281
282   return aDisplayed;
283 }
284
285 //**************************************************************
286 bool XGUI_Displayer::erase(ObjectPtr theObject, const bool theUpdateViewer)
287 {
288   bool aErased = false;
289   if (!isVisible(theObject))
290     return aErased;
291
292   Handle(AIS_InteractiveContext) aContext = AISContext();
293   if (aContext.IsNull())
294     return aErased;
295
296   AISObjectPtr anObject = myResult2AISObjectMap.value(theObject);
297   if (anObject) {
298     Handle(AIS_InteractiveObject) anAIS = anObject->impl<Handle(AIS_InteractiveObject)>();
299     if (!anAIS.IsNull()) {
300       emit beforeObjectErase(theObject, anObject);
301       aContext->Remove(anAIS, false/*update viewer*/);
302       #ifdef TINSPECTOR
303       if (getCallBack()) getCallBack()->Remove(anAIS);
304       #endif
305       aErased = true;
306     }
307   }
308   myResult2AISObjectMap.remove(theObject);
309
310 #ifdef DEBUG_DISPLAY
311   std::ostringstream aPtrStr;
312   aPtrStr << theObject.get();
313   qDebug(QString("erase object: %1").arg(aPtrStr.str().c_str()).toStdString().c_str());
314   qDebug(getResult2AISObjectMapInfo().c_str());
315 #endif
316
317   if (theUpdateViewer)
318     updateViewer();
319
320   return aErased;
321 }
322
323 //**************************************************************
324 bool XGUI_Displayer::redisplay(ObjectPtr theObject, bool theUpdateViewer)
325 {
326   bool aRedisplayed = false;
327   if (!isVisible(theObject))
328     return aRedisplayed;
329
330   AISObjectPtr aAISObj = getAISObject(theObject);
331   Handle(AIS_InteractiveObject) aAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
332
333   GeomPresentablePtr aPrs = std::dynamic_pointer_cast<GeomAPI_IPresentable>(theObject);
334   if (aPrs) {
335     GeomScreenParamsPtr aScreen = std::dynamic_pointer_cast<GeomAPI_IScreenParams>(theObject);
336     if (aScreen.get()) {
337       aScreen->setScreenPlane(getScreenPlane());
338       aScreen->setViewScale(getViewScale());
339     }
340     AISObjectPtr aAIS_Obj = aPrs->getAISObject(aAISObj);
341     if (!aAIS_Obj) {
342       aRedisplayed = erase(theObject, theUpdateViewer);
343       return aRedisplayed;
344     }
345     if (aAIS_Obj != aAISObj) {
346       erase(theObject, theUpdateViewer);
347       appendResultObject(theObject, aAIS_Obj);
348     }
349     aAISIO = aAIS_Obj->impl<Handle(AIS_InteractiveObject)>();
350   }
351
352   Handle(AIS_InteractiveContext) aContext = AISContext();
353   if (!aContext.IsNull() && !aAISIO.IsNull()) {
354     // Check that the visualized shape is the same and the redisplay is not necessary
355     // Redisplay of AIS object leads to this object selection compute and the selection
356     // in the browser is lost
357     // this check is not necessary anymore because the selection store/restore is realized
358     // before and after the values modification.
359     // Moreother, this check avoids customize and redisplay presentation if the presentable
360     // parameter is changed.
361     bool isEqualShapes = false;
362     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
363     if (aResult.get() != NULL) {
364       Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(aAISIO);
365       if (!aShapePrs.IsNull()) {
366         std::shared_ptr<GeomAPI_Shape> aShapePtr = ModelAPI_Tools::shape(aResult);
367         if (aShapePtr.get()) {
368           const TopoDS_Shape& aOldShape = aShapePrs->Shape();
369           if (!aOldShape.IsNull())
370             isEqualShapes = aOldShape.IsEqual(aShapePtr->impl<TopoDS_Shape>());
371         }
372       }
373     }
374     // Customization of presentation
375     bool isCustomized = customizeObject(theObject);
376     #ifdef DEBUG_FEATURE_REDISPLAY
377       qDebug(QString("Redisplay: %1, isEqualShapes=%2, isCustomized=%3").
378         arg(!isEqualShapes || isCustomized).arg(isEqualShapes)
379         .arg(isCustomized).toStdString().c_str());
380     #endif
381     if (!isEqualShapes || isCustomized) {
382       /// if shapes are equal and presentation are customized, selection should be restored
383       bool aNeedToRestoreSelection = isEqualShapes && isCustomized;
384       if (aNeedToRestoreSelection)
385         myWorkshop->module()->storeSelection();
386
387 #ifdef CLEAR_OUTDATED_SELECTION_BEFORE_REDISPLAY
388       myWorkshop->selector()->deselectPresentation(aAISIO);
389 #endif
390       if (aContext->IsDisplayed(aAISIO))
391         aContext->Redisplay(aAISIO, false);
392       else
393         aContext->Display(aAISIO, false);
394
395       #ifdef TINSPECTOR
396       if (getCallBack()) getCallBack()->Redisplay(aAISIO);
397       #endif
398
399       if (aNeedToRestoreSelection)
400         myWorkshop->module()->restoreSelection();
401
402       aRedisplayed = true;
403       #ifdef DEBUG_FEATURE_REDISPLAY
404         qDebug("  Redisplay happens");
405       #endif
406       if (theUpdateViewer)
407         updateViewer();
408     }
409   }
410   return aRedisplayed;
411 }
412
413 //**************************************************************
414 void XGUI_Displayer::redisplayObjects()
415 {
416   // redisplay objects visualized in the viewer
417   static Events_ID EVENT_DISP = Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY);
418   static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
419   QObjectPtrList aDisplayed = myWorkshop->displayer()->displayedObjects();
420   QObjectPtrList::const_iterator anIt = aDisplayed.begin(), aLast = aDisplayed.end();
421   for (; anIt != aLast; anIt++) {
422     aECreator->sendUpdated(*anIt, EVENT_DISP);
423   }
424   Events_Loop::loop()->flush(EVENT_DISP);
425 }
426
427 //**************************************************************
428 void XGUI_Displayer::deactivateObjects(const QObjectPtrList& theObjList,
429                                        const bool theUpdateViewer)
430 {
431   //Handle(AIS_InteractiveObject) aTrihedron = getTrihedron();
432   //if (!aTrihedron.IsNull())
433   //  deactivateAIS(aTrihedron);
434
435   QObjectPtrList::const_iterator anIt = theObjList.begin(), aLast = theObjList.end();
436   for (; anIt != aLast; anIt++) {
437     selectionActivate()->deactivate(*anIt, false);
438   }
439   //VSV It seems that there is no necessity to update viewer on deactivation
440   //if (theUpdateViewer)
441   //  updateViewer();
442 }
443
444 //**************************************************************
445 bool XGUI_Displayer::isVisible(XGUI_Displayer* theDisplayer, const ObjectPtr& theObject)
446 {
447   bool aVisible = false;
448   GeomPresentablePtr aPrs = std::dynamic_pointer_cast<GeomAPI_IPresentable>(theObject);
449   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
450   if (aPrs.get() || aResult.get()) {
451     aVisible = theDisplayer->isVisible(theObject);
452     // compsolid is not visualized in the viewer,
453     // but should have presentation when all sub solids are
454     // visible. It is useful for highlight presentation where compsolid shape is selectable
455     if (!aVisible && aResult.get() && aResult->groupName() == ModelAPI_ResultBody::group()) {
456       ResultBodyPtr aCompsolidResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
457       if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
458         int aNumberOfSubs = aCompsolidResult->numberOfSubs();
459         bool anAllSubsVisible = aNumberOfSubs > 0;
460         for(int i = 0; i < aNumberOfSubs && anAllSubsVisible; i++) {
461           anAllSubsVisible = theDisplayer->isVisible(aCompsolidResult->subResult(i));
462         }
463         aVisible = anAllSubsVisible;
464       }
465     }
466   }
467   // it is possible that feature is presentable and has results, so we should check visibility
468   // of results if presentation is not shown (e.g. Sketch Circle/Arc features)
469   if (!aVisible) {
470     // check if all results of the feature are visible
471     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
472     std::list<ResultPtr> aResults;
473     ModelAPI_Tools::allResults(aFeature, aResults);
474     std::list<ResultPtr>::const_iterator aIt;
475     aVisible = !aResults.empty();
476     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
477       aVisible = aVisible && theDisplayer->isVisible(*aIt);
478     }
479   }
480   return aVisible;
481 }
482
483 //**************************************************************
484 void XGUI_Displayer::setSelected(const  QList<ModuleBase_ViewerPrsPtr>& theValues,
485                                  bool theUpdateViewer)
486 {
487   Handle(AIS_InteractiveContext) aContext = AISContext();
488   if (aContext.IsNull())
489     return;
490   aContext->UnhilightSelected(false);
491   aContext->ClearSelected(false);
492   #ifdef TINSPECTOR
493   if (getCallBack()) getCallBack()->ClearSelected();
494   #endif
495   NCollection_DataMap<TopoDS_Shape, NCollection_Map<Handle(AIS_InteractiveObject)>>
496     aShapesToBeSelected;
497
498   foreach (ModuleBase_ViewerPrsPtr aPrs, theValues) {
499     const GeomShapePtr& aGeomShape = aPrs->shape();
500     if (aGeomShape.get() && !aGeomShape->isNull()) {
501       const TopoDS_Shape& aShape = aGeomShape->impl<TopoDS_Shape>();
502 #ifdef DEBUG_OCCT_SHAPE_SELECTION
503       // problem 1: performance
504       // problem 2: IO is not specified, so the first found owner is selected, as a result
505       // it might belong to another result
506       aContext->AddOrRemoveSelected(aShape, false);
507       #ifdef TINSPECTOR
508       if (getCallBack()) getCallBack()->AddOrRemoveSelected(aShape);
509       #endif
510 #else
511       NCollection_Map<Handle(AIS_InteractiveObject)> aPresentations;
512       if (aShapesToBeSelected.IsBound(aShape))
513         aPresentations = aShapesToBeSelected.Find(aShape);
514       ObjectPtr anObject = aPrs->object();
515       getPresentations(anObject, aPresentations);
516
517       aShapesToBeSelected.Bind(aShape, aPresentations);
518 #endif
519     } else {
520       ObjectPtr anObject = aPrs->object();
521       ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
522       if (aResult.get() && isVisible(aResult)) {
523         AISObjectPtr anObj = myResult2AISObjectMap.value(aResult);
524         Handle(AIS_InteractiveObject) anAIS = anObj->impl<Handle(AIS_InteractiveObject)>();
525         if (!anAIS.IsNull()) {
526           // The methods are replaced in order to provide multi-selection, e.g. restore selection
527           // by activating multi selector widget. It also gives an advantage that the multi
528           // selection in OB gives multi-selection in the viewer
529           //aContext->SetSelected(anAIS, false);
530           // The selection in the context was cleared, so the method sets the objects are selected
531           aContext->AddOrRemoveSelected(anAIS, false);
532           #ifdef TINSPECTOR
533           if (getCallBack()) getCallBack()->AddOrRemoveSelected(anAIS);
534           #endif
535         }
536       }
537     }
538   }
539   if (!aShapesToBeSelected.IsEmpty())
540     XGUI_Displayer::AddOrRemoveSelectedShapes(aContext, aShapesToBeSelected);
541
542   if (theUpdateViewer)
543     updateViewer();
544 }
545
546 //**************************************************************
547 void XGUI_Displayer::clearSelected(const bool theUpdateViewer)
548 {
549   Handle(AIS_InteractiveContext) aContext = AISContext();
550   if (!aContext.IsNull()) {
551     aContext->UnhilightSelected(false);//UnhilightCurrents(false);
552     aContext->ClearSelected(theUpdateViewer);
553     #ifdef TINSPECTOR
554     if (getCallBack()) getCallBack()->ClearSelected();
555     #endif
556   }
557 }
558
559 //**************************************************************
560 bool XGUI_Displayer::eraseAll(const bool theUpdateViewer)
561 {
562   bool aErased = false;
563   Handle(AIS_InteractiveContext) aContext = AISContext();
564   if (!aContext.IsNull()) {
565 #ifdef OPTIMIZE_PRS
566     foreach(ObjectPtr aObj, myResult2AISObjectMap.objects()) {
567       AISObjectPtr aAISObj = myResult2AISObjectMap.value(aObj);
568 #else
569     foreach(ObjectPtr aObj, myResult2AISObjectMap.keys()) {
570       AISObjectPtr aAISObj = myResult2AISObjectMap[aObj];
571 #endif
572       // erase an object
573       Handle(AIS_InteractiveObject) anIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
574       if (!anIO.IsNull()) {
575         emit beforeObjectErase(aObj, aAISObj);
576         aContext->Remove(anIO, false/*update viewer*/);
577         #ifdef TINSPECTOR
578         if (getCallBack()) getCallBack()->Remove(anIO);
579         #endif
580         aErased = true;
581       }
582     }
583     if (theUpdateViewer)
584       updateViewer();
585   }
586   myResult2AISObjectMap.clear();
587 #ifdef DEBUG_DISPLAY
588   qDebug("eraseAll");
589   qDebug(getResult2AISObjectMapInfo().c_str());
590 #endif
591   return aErased;
592 }
593
594
595 //**************************************************************
596 AISObjectPtr XGUI_Displayer::getAISObject(ObjectPtr theObject) const
597 {
598 #ifdef OPTIMIZE_PRS
599   return myResult2AISObjectMap.value(theObject);
600 #else
601   AISObjectPtr anIO;
602   if (myResult2AISObjectMap.contains(theObject))
603     anIO = myResult2AISObjectMap[theObject];
604   return anIO;
605 #endif
606 }
607
608 //**************************************************************
609 ObjectPtr XGUI_Displayer::getObject(const AISObjectPtr& theIO) const
610 {
611   Handle(AIS_InteractiveObject) aRefAIS = theIO->impl<Handle(AIS_InteractiveObject)>();
612   return getObject(aRefAIS);
613 }
614
615 //**************************************************************
616 ObjectPtr XGUI_Displayer::getObject(const Handle(AIS_InteractiveObject)& theIO) const
617 {
618 #ifdef OPTIMIZE_PRS
619   ObjectPtr anObject = myResult2AISObjectMap.value(theIO);
620 #else
621   ObjectPtr anObject;
622   ResultToAISMap::const_iterator aMapIter = myResult2AISObjectMap.cbegin();
623   for (; aMapIter != myResult2AISObjectMap.cend(); aMapIter++) {
624     const AISObjectPtr& aAIS = aMapIter.value();
625     Handle(AIS_InteractiveObject) anAIS = aAIS->impl<Handle(AIS_InteractiveObject)>();
626     if (anAIS == theIO)
627       anObject = aMapIter.key();
628     if (anObject.get())
629       break;
630   }
631 #endif
632   if (!anObject.get()) {
633     std::shared_ptr<GeomAPI_AISObject> anAISObj = AISObjectPtr(new GeomAPI_AISObject());
634     if (!theIO.IsNull()) {
635       anAISObj->setImpl(new Handle(AIS_InteractiveObject)(theIO));
636     }
637     anObject = myWorkshop->module()->findPresentedObject(anAISObj);
638   }
639   return anObject;
640 }
641
642 //**************************************************************
643 bool XGUI_Displayer::enableUpdateViewer(const bool isEnabled)
644 {
645   bool aWasEnabled = isUpdateEnabled();
646   if (isEnabled)
647     myViewerBlockedRecursiveCount--;
648   else
649     myViewerBlockedRecursiveCount++;
650
651 #ifdef DEBUG_VIEWER_BLOCKED_COUNT
652   std::cout << "myViewerBlockedRecursiveCount = " << myViewerBlockedRecursiveCount << std::endl;
653 #endif
654
655   if (myNeedUpdate && isUpdateEnabled()) {
656     updateViewer();
657     myNeedUpdate = false;
658   }
659   return aWasEnabled;
660 }
661
662 //**************************************************************
663 bool XGUI_Displayer::isUpdateEnabled() const
664 {
665   return myViewerBlockedRecursiveCount == 0;
666 }
667
668 //**************************************************************
669 void XGUI_Displayer::updateViewer() const
670 {
671   Handle(AIS_InteractiveContext) aContext = AISContext();
672
673 #ifdef DEBUG_VIEWER_BLOCKED_COUNT
674   std::cout << "updateViewer: " << (myViewerBlockedRecursiveCount == 0 ? " done" : " later")
675             << std::endl;
676 #endif
677
678   if (!aContext.IsNull() && isUpdateEnabled()) {
679     //myWorkshop->viewer()->Zfitall();
680     aContext->UpdateCurrentViewer();
681   } else {
682     myNeedUpdate = true;
683   }
684 }
685
686 //**************************************************************
687 Handle(AIS_InteractiveContext) XGUI_Displayer::AISContext() const
688 {
689   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
690   if (!aContext.IsNull() && myIsFirstAISContextUse/*&& !aContext->HasOpenedContext()*/) {
691     XGUI_Displayer* aDisplayer = (XGUI_Displayer*)this;
692     aDisplayer->myIsFirstAISContextUse = false;
693     if (!myWorkshop->selectionActivate()->isTrihedronActive())
694       selectionActivate()->deactivateTrihedron(true);
695     aContext->DefaultDrawer()->VIsoAspect()->SetNumber(0);
696     aContext->DefaultDrawer()->UIsoAspect()->SetNumber(0);
697
698     ModuleBase_IViewer::DefaultHighlightDrawer = aContext->HighlightStyle();
699     // Commented out according to discussion in bug #2825
700     //Handle(Prs3d_Drawer) aSelStyle = aContext->SelectionStyle();
701     //double aDeflection =
702     //  QString(ModelAPI_ResultConstruction::DEFAULT_DEFLECTION().c_str()).toDouble();
703     //try {
704     //  aDeflection = Config_PropManager::real("Visualization", "construction_deflection");
705     //} catch (...) {}
706
707     //ModuleBase_IViewer::DefaultHighlightDrawer->SetDeviationCoefficient(aDeflection);
708     //aSelStyle->SetDeviationCoefficient(aDeflection);
709   }
710   return aContext;
711 }
712
713 //**************************************************************
714 Handle(SelectMgr_AndFilter) XGUI_Displayer::GetFilter()
715 {
716   Handle(AIS_InteractiveContext) aContext = AISContext();
717   if (!aContext.IsNull() && myAndFilter.IsNull()) {
718     myAndFilter = new SelectMgr_AndFilter();
719     aContext->AddFilter(myAndFilter);
720   }
721   return myAndFilter;
722 }
723
724 //**************************************************************
725 bool XGUI_Displayer::displayAIS(AISObjectPtr theAIS, const bool toActivateInSelectionModes,
726                                 const Standard_Integer theDisplayMode, bool theUpdateViewer)
727 {
728   bool aDisplayed = false;
729   Handle(AIS_InteractiveContext) aContext = AISContext();
730   Handle(AIS_InteractiveObject) anAISIO = theAIS->impl<Handle(AIS_InteractiveObject)>();
731   if (!aContext.IsNull() && !anAISIO.IsNull()) {
732     aContext->Display(anAISIO, theDisplayMode, 0, false/*update viewer*/, true, AIS_DS_Displayed);
733     #ifdef TINSPECTOR
734     if (getCallBack()) getCallBack()->Display(anAISIO);
735     #endif
736     aDisplayed = true;
737     aContext->Deactivate(anAISIO);
738     #ifdef TINSPECTOR
739     if (getCallBack()) getCallBack()->Deactivate(anAISIO);
740     #endif
741     aContext->Load(anAISIO);
742     #ifdef TINSPECTOR
743     if (getCallBack()) getCallBack()->Load(anAISIO);
744     #endif
745     if (toActivateInSelectionModes)
746       myWorkshop->selectionActivate()->activateOnDisplay(anAISIO, theUpdateViewer);
747
748     if (theUpdateViewer)
749       updateViewer();
750   }
751   return aDisplayed;
752 }
753
754 //**************************************************************
755 bool XGUI_Displayer::eraseAIS(AISObjectPtr theAIS, const bool theUpdateViewer)
756 {
757   bool aErased = false;
758   Handle(AIS_InteractiveContext) aContext = AISContext();
759   if (!aContext.IsNull()) {
760     Handle(AIS_InteractiveObject) anAISIO = theAIS->impl<Handle(AIS_InteractiveObject)>();
761     if (!anAISIO.IsNull() && aContext->IsDisplayed(anAISIO)) {
762       aContext->Remove(anAISIO, false/*update viewer*/);
763       #ifdef TINSPECTOR
764       if (getCallBack()) getCallBack()->Remove(anAISIO);
765       #endif
766       aErased = true;
767     }
768   }
769   if (aErased && theUpdateViewer)
770     updateViewer();
771   return aErased;
772 }
773
774 //**************************************************************
775 void XGUI_Displayer::setDisplayMode(ObjectPtr theObject, DisplayMode theMode, bool theUpdateViewer)
776 {
777   if (theMode == NoMode)
778     return;
779
780   Handle(AIS_InteractiveContext) aContext = AISContext();
781   if (aContext.IsNull())
782     return;
783
784   AISObjectPtr aAISObj = getAISObject(theObject);
785   if (!aAISObj)
786     return;
787
788   Handle(AIS_InteractiveObject) aAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
789   aContext->SetDisplayMode(aAISIO, theMode, false);
790   // Redisplay in order to update new mode because it could be not computed before
791   if (theUpdateViewer)
792     updateViewer();
793 }
794
795 //**************************************************************
796 XGUI_Displayer::DisplayMode XGUI_Displayer::displayMode(ObjectPtr theObject) const
797 {
798   Handle(AIS_InteractiveContext) aContext = AISContext();
799   if (aContext.IsNull())
800     return NoMode;
801
802   AISObjectPtr aAISObj = getAISObject(theObject);
803   if (!aAISObj)
804     return NoMode;
805
806   Handle(AIS_InteractiveObject) aAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
807   return (XGUI_Displayer::DisplayMode) aAISIO->DisplayMode();
808 }
809
810 //**************************************************************
811 void XGUI_Displayer::deactivateSelectionFilters(const bool theAddFilterOnly)
812 {
813   Handle(AIS_InteractiveContext) aContext = AISContext();
814   if (!myAndFilter.IsNull()) {
815     bool aFound = false;
816     if (!aContext.IsNull()) {
817       const SelectMgr_ListOfFilter& aFilters = aContext->Filters();
818       SelectMgr_ListIteratorOfListOfFilter anIt(aFilters);
819       for (; anIt.More() && !aFound; anIt.Next()) {
820         Handle(SelectMgr_Filter) aFilter = anIt.Value();
821         aFound = aFilter == myAndFilter;
822       }
823       if (aFound)
824         aContext->RemoveFilter(myAndFilter);
825     }
826     myAndFilter.Nullify();
827   }
828 }
829
830 //**************************************************************
831 void XGUI_Displayer::addSelectionFilter(const Handle(SelectMgr_Filter)& theFilter)
832 {
833   Handle(AIS_InteractiveContext) aContext = AISContext();
834   if (aContext.IsNull() || hasSelectionFilter(theFilter))
835     return;
836
837   Handle(SelectMgr_CompositionFilter) aCompositeFilter = GetFilter();
838   if (!aCompositeFilter.IsNull()) {
839     aCompositeFilter->Add(theFilter);
840 #ifdef DEBUG_SELECTION_FILTERS
841     int aCount = aCompositeFilter->StoredFilters().Extent();
842     qDebug(QString("addSelectionFilter: filters.count() = %1").arg(aCount).toStdString().c_str());
843 #endif
844   }
845 }
846
847 //**************************************************************
848 void XGUI_Displayer::removeSelectionFilter(const Handle(SelectMgr_Filter)& theFilter)
849 {
850   Handle(AIS_InteractiveContext) aContext = AISContext();
851   if (aContext.IsNull())
852     return;
853
854   Handle(SelectMgr_AndFilter) aCompositeFilter = GetFilter();
855   if (!aCompositeFilter.IsNull() && aCompositeFilter->IsIn(theFilter)) {
856     aCompositeFilter->Remove(theFilter);
857 #ifdef DEBUG_SELECTION_FILTERS
858     int aCount = aCompositeFilter->StoredFilters().Extent();
859     qDebug(QString("removeSelectionFilter: filters.count() = %1")
860       .arg(aCount).toStdString().c_str());
861 #endif
862   }
863 }
864
865 //**************************************************************
866 bool XGUI_Displayer::hasSelectionFilter(const Handle(SelectMgr_Filter)& theFilter)
867 {
868   bool aFilterFound = false;
869
870   Handle(AIS_InteractiveContext) aContext = AISContext();
871   if (aContext.IsNull())
872     return aFilterFound;
873   const SelectMgr_ListOfFilter& aFilters = aContext->Filters();
874   SelectMgr_ListIteratorOfListOfFilter aIt(aFilters);
875   for (; aIt.More() && !aFilterFound; aIt.Next()) {
876     if (theFilter.get() == aIt.Value().get())
877       aFilterFound = true;
878   }
879   Handle(SelectMgr_CompositionFilter) aCompositeFilter = GetFilter();
880   if (!aCompositeFilter.IsNull()) {
881     const SelectMgr_ListOfFilter& aStoredFilters = aCompositeFilter->StoredFilters();
882     for (aIt.Initialize(aStoredFilters); aIt.More() && !aFilterFound; aIt.Next()) {
883       if (theFilter.get() == aIt.Value().get())
884         aFilterFound = true;
885     }
886   }
887   return aFilterFound;
888 }
889
890 //**************************************************************
891 void XGUI_Displayer::removeFilters()
892 {
893   Handle(AIS_InteractiveContext) aContext = AISContext();
894   if (aContext.IsNull())
895     return;
896
897   Handle(SelectMgr_CompositionFilter) aCompositeFilter = GetFilter();
898   if (!aCompositeFilter.IsNull())
899     aCompositeFilter->Clear();
900 }
901
902 //**************************************************************
903 void XGUI_Displayer::showOnly(const QObjectPtrList& theList)
904 {
905 #ifdef OPTIMIZE_PRS
906   QObjectPtrList aDispList = myResult2AISObjectMap.objects();
907 #else
908   QObjectPtrList aDispList = myResult2AISObjectMap.keys();
909 #endif
910   foreach(ObjectPtr aObj, aDispList) {
911     if (!theList.contains(aObj))
912       erase(aObj, false);
913   }
914   foreach(ObjectPtr aObj, theList) {
915     if (!isVisible(aObj))
916       display(aObj, false);
917   }
918   updateViewer();
919 }
920
921 //**************************************************************
922 bool XGUI_Displayer::canBeShaded(ObjectPtr theObject) const
923 {
924   if (!isVisible(theObject))
925     return false;
926
927   AISObjectPtr aAISObj = getAISObject(theObject);
928   if (aAISObj.get() == NULL)
929     return false;
930
931   Handle(AIS_InteractiveObject) anAIS = aAISObj->impl<Handle(AIS_InteractiveObject)>();
932   return ::canBeShaded(anAIS, myWorkshop->module());
933 }
934
935 //**************************************************************
936 bool XGUI_Displayer::customizeObject(ObjectPtr theObject)
937 {
938   AISObjectPtr anAISObj = getAISObject(theObject);
939   // correct the result's color it it has the attribute
940   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
941
942   // Customization of presentation
943   GeomCustomPrsPtr aCustomPrs;
944   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
945   if (aFeature.get() != NULL) {
946     GeomCustomPrsPtr aCustPrs = std::dynamic_pointer_cast<GeomAPI_ICustomPrs>(aFeature);
947     if (aCustPrs.get() != NULL)
948       aCustomPrs = aCustPrs;
949   }
950   if (aCustomPrs.get() == NULL) {
951     GeomPresentablePtr aPrs = std::dynamic_pointer_cast<GeomAPI_IPresentable>(theObject);
952     // we ignore presentable not customized objects
953     if (aPrs.get() == NULL)
954       aCustomPrs = myCustomPrs;
955   }
956   bool isCustomized = aCustomPrs.get() &&
957                       aCustomPrs->customisePresentation(aResult, anAISObj, myCustomPrs);
958   isCustomized = myWorkshop->module()->afterCustomisePresentation(aResult, anAISObj, myCustomPrs)
959                  || isCustomized;
960
961   // update presentation state if faces panel is active
962   if (anAISObj.get() && myWorkshop->facesPanel())
963     isCustomized = myWorkshop->facesPanel()->customizeObject(theObject, anAISObj) || isCustomized;
964
965   return isCustomized;
966 }
967
968 //**************************************************************
969 QColor XGUI_Displayer::setObjectColor(ObjectPtr theObject,
970                                       const QColor& theColor,
971                                       bool theUpdateViewer)
972 {
973   if (!isVisible(theObject))
974     return Qt::black;
975
976   AISObjectPtr anAISObj = getAISObject(theObject);
977   int aR, aG, aB;
978   anAISObj->getColor(aR, aG, aB);
979   anAISObj->setColor(theColor.red(), theColor.green(), theColor.blue());
980   if (theUpdateViewer)
981     updateViewer();
982   return QColor(aR, aG, aB);
983 }
984
985 //**************************************************************
986 void XGUI_Displayer::appendResultObject(ObjectPtr theObject, AISObjectPtr theAIS)
987 {
988 #ifdef OPTIMIZE_PRS
989   myResult2AISObjectMap.add(theObject, theAIS);
990 #else
991   myResult2AISObjectMap[theObject] = theAIS;
992 #endif
993
994 #ifdef DEBUG_DISPLAY
995   std::ostringstream aPtrStr;
996   aPtrStr << theObject.get();
997   qDebug(QString("display object: %1").arg(aPtrStr.str().c_str()).toStdString().c_str());
998   qDebug(getResult2AISObjectMapInfo().c_str());
999 #endif
1000 }
1001
1002 #ifdef _DEBUG
1003 //**************************************************************
1004 std::string XGUI_Displayer::getResult2AISObjectMapInfo() const
1005 {
1006   QStringList aContent;
1007 #ifdef OPTIMIZE_PRS
1008   foreach(ObjectPtr aObj, myResult2AISObjectMap.objects()) {
1009     AISObjectPtr aAISObj = myResult2AISObjectMap.value(aObj);
1010 #else
1011   foreach(ObjectPtr aObj, myResult2AISObjectMap.keys()) {
1012     AISObjectPtr aAISObj = myResult2AISObjectMap[aObj];
1013 #endif
1014     std::ostringstream aPtrStr;
1015     aPtrStr << "aObj = " << aObj.get() << ":";
1016     aPtrStr << "anAIS = " << aAISObj.get() << ":";
1017     aPtrStr << "[" << ModuleBase_Tools::objectInfo(aObj).toStdString().c_str() << "]";
1018
1019     aContent.append(aPtrStr.str().c_str());
1020   }
1021   return QString("myResult2AISObjectMap: size = %1\n%2\n").arg(myResult2AISObjectMap.size()).
1022                                             arg(aContent.join("\n")).toStdString().c_str();
1023 }
1024 #endif
1025
1026 //**************************************************************
1027 void XGUI_Displayer::getPresentations(const ObjectPtr& theObject,
1028                                   NCollection_Map<Handle(AIS_InteractiveObject)>& thePresentations)
1029 {
1030   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
1031   if (aResult.get()) {
1032     AISObjectPtr aAISObj = getAISObject(aResult);
1033     if (aAISObj.get() == NULL) {
1034       // if result is a result of a composite feature, it is visualized by visualization of
1035       // composite children, so we should get one of this presentations
1036       ResultBodyPtr aCompSolid = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
1037       if (aCompSolid.get() && aCompSolid->numberOfSubs() > 0) {
1038         aAISObj = getAISObject(aCompSolid->subResult(0));
1039       }
1040     }
1041     if (aAISObj.get() != NULL) {
1042       Handle(AIS_InteractiveObject) anAIS = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1043       if (!anAIS.IsNull() && !thePresentations.Contains(anAIS))
1044         thePresentations.Add(anAIS);
1045     }
1046   }
1047   else {
1048     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
1049     // find presentation of the feature
1050     AISObjectPtr aAISObj = getAISObject(aFeature);
1051     if (aAISObj.get() != NULL) {
1052       Handle(AIS_InteractiveObject) anAIS = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1053       if (!anAIS.IsNull() && !thePresentations.Contains(anAIS))
1054         thePresentations.Add(anAIS);
1055     }
1056     // find presentations of the feature results
1057     std::list<ResultPtr> aResults;
1058     ModelAPI_Tools::allResults(aFeature, aResults);
1059     std::list<ResultPtr>::const_iterator anIt = aResults.begin(), aLast = aResults.end();
1060     for (; anIt != aLast; ++anIt) {
1061       AISObjectPtr aAISObj = getAISObject(*anIt);
1062       if (aAISObj.get() != NULL) {
1063         Handle(AIS_InteractiveObject) anAIS = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1064         if (!anAIS.IsNull() && !thePresentations.Contains(anAIS))
1065           thePresentations.Add(anAIS);
1066       }
1067     }
1068   }
1069 }
1070
1071 //**************************************************************
1072 void XGUI_Displayer::displayTrihedron(bool theToDisplay) const
1073 {
1074   Handle(AIS_InteractiveContext) aContext = AISContext();
1075   if (aContext.IsNull())
1076     return;
1077
1078   Handle(AIS_Trihedron) aTrihedron = myWorkshop->viewer()->trihedron();
1079
1080   XGUI_SelectionActivate* aSelectionActive = selectionActivate();
1081   if (theToDisplay) {
1082     if (!aContext->IsDisplayed(aTrihedron))
1083       aContext->Display(aTrihedron,
1084                         0 /*wireframe*/,
1085                         -1 /* selection mode */,
1086                         Standard_True /* update viewer*/,
1087                         Standard_False /* allow decomposition */,
1088                         AIS_DS_Displayed /* xdisplay status */);
1089     #ifdef TINSPECTOR
1090     if (getCallBack()) getCallBack()->Display(aTrihedron);
1091     #endif
1092
1093     if (!aSelectionActive->isTrihedronActive())
1094       aSelectionActive->deactivateTrihedron(false);
1095     else
1096       aSelectionActive->activate(aTrihedron, false);
1097   } else {
1098     aSelectionActive->deactivateTrihedron(false);
1099
1100     aContext->Erase(aTrihedron, Standard_True);
1101     #ifdef TINSPECTOR
1102     if (getCallBack()) getCallBack()->Remove(aTrihedron);
1103     #endif
1104   }
1105
1106   updateViewer();
1107 }
1108
1109 //**************************************************************
1110 void XGUI_Displayer::AddOrRemoveSelectedShapes(Handle(AIS_InteractiveContext) theContext,
1111                            const NCollection_DataMap<TopoDS_Shape,
1112                            NCollection_Map<Handle(AIS_InteractiveObject)>>& theShapesToBeSelected)
1113 {
1114   NCollection_Map<Handle(AIS_InteractiveObject)> aCompsolidPresentations;
1115   NCollection_Map<Handle(AIS_InteractiveObject)> aSelectedPresentations;
1116
1117   NCollection_List<Handle(SelectBasics_EntityOwner)> anActiveOwners;
1118   theContext->MainSelector()->ActiveOwners(anActiveOwners);
1119   NCollection_List<Handle(SelectBasics_EntityOwner)>::Iterator anOwnersIt (anActiveOwners);
1120   Handle(SelectMgr_EntityOwner) anOwner;
1121
1122   /// It is very important to check that the owner is processed only once and has a map of
1123   /// processed owners because SetSelected works as a switch.
1124   /// If count of calls setSelectec is even, the object stays in the previous state
1125   /// (selected, deselected)
1126   /// OCCT: to write about the problem that active owners method returns one owner several times
1127   QList<size_t> aSelectedIds; // Remember of selected address in order to avoid duplicates
1128   for (; anOwnersIt.More(); anOwnersIt.Next()) {
1129     anOwner = Handle(SelectMgr_EntityOwner)::DownCast (anOwnersIt.Value());
1130     if (aSelectedIds.contains((size_t)anOwner.get()))
1131       continue;
1132     aSelectedIds.append((size_t)anOwner.get());
1133
1134     Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast(anOwner);
1135     if (!BROwnr.IsNull() && BROwnr->HasShape()) {
1136       const TopoDS_Shape& aShape = BROwnr->Shape();
1137       if (aShape.IsNull())
1138         continue;
1139
1140       Handle(ModuleBase_BRepOwner) aCustomOwner = Handle(ModuleBase_BRepOwner)::DownCast(anOwner);
1141
1142       NCollection_DataMap<TopoDS_Shape, NCollection_Map<Handle(AIS_InteractiveObject)> >
1143                                              ::Iterator aShapeIt(theShapesToBeSelected);
1144       for (; aShapeIt.More(); aShapeIt.Next()) {
1145         const TopoDS_Shape& aParameterShape = aShapeIt.Key();
1146         // isSame should be used here as it does not check orientation of shapes
1147         // despite on isEqual of shapes or IsBound for shape in QMap. Orientation is
1148         // different for Edges shapes in model shape and owner even if this is the same shape
1149         if (aParameterShape.IsSame(aShape)) {
1150           Handle(AIS_InteractiveObject) anOwnerPresentation =
1151                             Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
1152           NCollection_Map<Handle(AIS_InteractiveObject)> aPresentations =
1153                                       theShapesToBeSelected.Find(aParameterShape);
1154           if (aPresentations.Contains(anOwnerPresentation)) {
1155             theContext->AddOrRemoveSelected(anOwner, Standard_False);
1156             anOwner->SetSelected (Standard_True);
1157             // collect selected presentations to do not select them if compsolid is selected
1158             if (!aSelectedPresentations.Contains(anOwnerPresentation))
1159               aSelectedPresentations.Add(anOwnerPresentation);
1160           }
1161         }
1162         else if (!aCustomOwner.IsNull()) { // CompSolid processing #2219
1163           // shape of owner is compound, but shape to be selected is compsolid, so
1164           // we need to compare shape to AIS presentation of owner(rule of the owner creation)
1165           Handle(AIS_Shape) anOwnerPresentation =
1166                             Handle(AIS_Shape)::DownCast(anOwner->Selectable());
1167           const TopoDS_Shape& aPresentationShape = anOwnerPresentation->Shape();
1168           if (aParameterShape.IsSame(anOwnerPresentation->Shape()) &&
1169               !aCompsolidPresentations.Contains(anOwnerPresentation))
1170             aCompsolidPresentations.Add(anOwnerPresentation);
1171         }
1172       }
1173     }
1174   }
1175   // select CompSolid presentations if their owners was not selected yet
1176   NCollection_Map<Handle(AIS_InteractiveObject)>::Iterator anIt (aCompsolidPresentations);
1177   for (; anIt.More(); anIt.Next()) {
1178     if (aSelectedPresentations.Contains(anIt.Value()))
1179       continue;
1180     theContext->AddOrRemoveSelected(anIt.Value(), Standard_False);
1181   }
1182 }
1183
1184 //**************************************************************
1185 XGUI_SelectionActivate* XGUI_Displayer::selectionActivate() const
1186 {
1187   return myWorkshop->selectionActivate();
1188 }
1189
1190 //**************************************************************
1191 GeomPlanePtr XGUI_Displayer::getScreenPlane() const
1192 {
1193   GeomPlanePtr aResult;
1194   Handle(AIS_InteractiveContext) aContext = AISContext();
1195   if (!aContext.IsNull()) {
1196     Handle(V3d_Viewer) aViewer = aContext->CurrentViewer();
1197     Handle(V3d_View) aView;
1198     for (aViewer->InitActiveViews(); aViewer->MoreActiveViews(); aViewer->NextActiveViews()) {
1199       aView = aViewer->ActiveView();
1200       break;
1201     }
1202     if (!aView.IsNull()) {
1203       double aEyeX, aEyeY, aEyeZ;
1204       aView->Eye(aEyeX, aEyeY, aEyeZ);
1205
1206       double aProjX, aProjY, aProjZ;
1207       aView->Proj(aProjX, aProjY, aProjZ);
1208
1209       GeomPointPtr aPnt = GeomPointPtr(new GeomAPI_Pnt(aEyeX, aEyeY, aEyeZ));
1210       GeomDirPtr aDir = GeomDirPtr(new GeomAPI_Dir(aProjX, aProjY, aProjZ));
1211
1212       aResult = GeomPlanePtr(new GeomAPI_Pln(aPnt, aDir));
1213     }
1214   }
1215   return aResult;
1216 }
1217
1218 double XGUI_Displayer::getViewScale() const
1219 {
1220   Handle(AIS_InteractiveContext) aContext = AISContext();
1221   if (!aContext.IsNull()) {
1222     Handle(V3d_Viewer) aViewer = aContext->CurrentViewer();
1223     Handle(V3d_View) aView;
1224     for (aViewer->InitActiveViews(); aViewer->MoreActiveViews(); aViewer->NextActiveViews()) {
1225       aView = aViewer->ActiveView();
1226       break;
1227     }
1228     return aView->Camera()->Scale();
1229   }
1230   return 1;
1231 }