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