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