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