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