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