Salome HOME
Create check box "Show constraints"
[modules/shaper.git] / src / PartSet / PartSet_SketcherMgr.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_SketcherMgr.cpp
4 // Created:     19 Dec 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "PartSet_SketcherMgr.h"
8 #include "PartSet_Module.h"
9 #include "PartSet_WidgetPoint2d.h"
10 #include "PartSet_WidgetPoint2dDistance.h"
11 #include "PartSet_Tools.h"
12 #include "PartSet_WidgetSketchLabel.h"
13
14 #include <ModuleBase_WidgetEditor.h>
15
16 #include <XGUI_ModuleConnector.h>
17 #include <XGUI_Displayer.h>
18 #include <XGUI_Workshop.h>
19 #include <XGUI_ContextMenuMgr.h>
20 #include <XGUI_Selection.h>
21 #include <XGUI_SelectionMgr.h>
22 #include <ModuleBase_ModelWidget.h>
23 #include <XGUI_ModuleConnector.h>
24 #include <XGUI_PropertyPanel.h>
25 #include <XGUI_ViewerProxy.h>
26
27 #include <AppElements_MainWindow.h>
28
29 #include <ModuleBase_IViewer.h>
30 #include <ModuleBase_IWorkshop.h>
31 #include <ModuleBase_IViewWindow.h>
32 #include <ModuleBase_Operation.h>
33 #include <ModuleBase_ISelection.h>
34 #include <ModuleBase_IPropertyPanel.h>
35 #include <ModuleBase_Operation.h>
36
37 #include <GeomDataAPI_Point2D.h>
38
39 #include <Events_Loop.h>
40
41 #include <SketchPlugin_Line.h>
42 #include <SketchPlugin_Sketch.h>
43 #include <SketchPlugin_Point.h>
44 #include <SketchPlugin_Arc.h>
45 #include <SketchPlugin_Circle.h>
46 #include <SketchPlugin_ConstraintLength.h>
47 #include <SketchPlugin_ConstraintDistance.h>
48 #include <SketchPlugin_ConstraintParallel.h>
49 #include <SketchPlugin_ConstraintPerpendicular.h>
50 #include <SketchPlugin_ConstraintRadius.h>
51 #include <SketchPlugin_ConstraintRigid.h>
52 #include <SketchPlugin_ConstraintHorizontal.h>
53 #include <SketchPlugin_ConstraintVertical.h>
54 #include <SketchPlugin_ConstraintEqual.h>
55 #include <SketchPlugin_ConstraintTangent.h>
56 #include <SketchPlugin_ConstraintCoincidence.h>
57 #include <SketchPlugin_ConstraintFillet.h>
58 #include <SketchPlugin_ConstraintMirror.h>
59
60 #include <SelectMgr_IndexedMapOfOwner.hxx>
61 #include <StdSelect_BRepOwner.hxx>
62
63 //#include <AIS_DimensionSelectionMode.hxx>
64 //#include <AIS_Shape.hxx>
65
66 #include <ModelAPI_Events.h>
67 #include <ModelAPI_Session.h>
68
69 #include <QMouseEvent>
70 #include <QApplication>
71
72
73 /// Returns list of unique objects by sum of objects from List1 and List2
74 /*QList<ModuleBase_ViewerPrs> getSumList(const QList<ModuleBase_ViewerPrs>& theList1,
75                                        const QList<ModuleBase_ViewerPrs>& theList2)
76 {
77   QList<ModuleBase_ViewerPrs> aRes;
78   foreach (ModuleBase_ViewerPrs aPrs, theList1) {
79     if (!aRes.contains(aPrs))
80       aRes.append(aPrs);
81   }
82   foreach (ModuleBase_ViewerPrs aPrs, theList2) {
83     if (!aRes.contains(aPrs))
84       aRes.append(aPrs);
85   }
86   return aRes;
87 }*/
88
89 void fillFeature2Attribute(const QList<ModuleBase_ViewerPrs>& theList,
90                            QMap<FeaturePtr, QList<AttributePtr> >& theFeature2AttributeMap,
91                            const FeaturePtr theSketch)
92 {
93   QList<ModuleBase_ViewerPrs> aRes;
94
95   QList<ModuleBase_ViewerPrs>::const_iterator anIt = theList.begin(),
96                                               aLast = theList.end();
97   for (; anIt != aLast; anIt++)
98   {
99     ModuleBase_ViewerPrs aPrs = *anIt;
100     FeaturePtr aFeature = ModelAPI_Feature::feature(aPrs.object());
101     if (aFeature.get() == NULL)
102       continue;
103
104     QList<AttributePtr> anAttributes;
105     if (theFeature2AttributeMap.contains(aFeature)) {
106       anAttributes = theFeature2AttributeMap[aFeature];
107     }
108     AttributePtr anAttr;
109     TopoDS_Shape aShape = aPrs.shape();
110     if (!aShape.IsNull()) {
111       if (aShape.ShapeType() == TopAbs_VERTEX) {
112         anAttr = PartSet_Tools::findAttributeBy2dPoint(aFeature, aShape, theSketch);
113         if (anAttr.get() != NULL && !anAttributes.contains(anAttr))
114           anAttributes.push_back(anAttr);
115       }
116     }
117     theFeature2AttributeMap[aFeature] = anAttributes;
118   }
119 }
120
121
122
123
124 PartSet_SketcherMgr::PartSet_SketcherMgr(PartSet_Module* theModule)
125   : QObject(theModule), myModule(theModule), myIsDragging(false), myDragDone(false),
126     myIsPropertyPanelValueChanged(false), myIsMouseOverWindow(false),
127     myIsMouseOverViewProcessed(true), myPreviousUpdateViewerEnabled(true),
128     myIsPopupMenuActive(false), myIsConstraintsShown(true)
129 {
130   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
131   ModuleBase_IViewer* aViewer = anIWorkshop->viewer();
132
133   myPreviousSelectionEnabled = true;//aViewer->isSelectionEnabled();
134
135   connect(aViewer, SIGNAL(mousePress(ModuleBase_IViewWindow*, QMouseEvent*)),
136           this, SLOT(onMousePressed(ModuleBase_IViewWindow*, QMouseEvent*)));
137
138   connect(aViewer, SIGNAL(mouseRelease(ModuleBase_IViewWindow*, QMouseEvent*)),
139           this, SLOT(onMouseReleased(ModuleBase_IViewWindow*, QMouseEvent*)));
140
141   connect(aViewer, SIGNAL(mouseMove(ModuleBase_IViewWindow*, QMouseEvent*)),
142           this, SLOT(onMouseMoved(ModuleBase_IViewWindow*, QMouseEvent*)));
143
144   connect(aViewer, SIGNAL(mouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)),
145           this, SLOT(onMouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)));
146
147   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
148   XGUI_Workshop* aWorkshop = aConnector->workshop();
149   connect(aWorkshop, SIGNAL(applicationStarted()), this, SLOT(onApplicationStarted()));
150 }
151
152 PartSet_SketcherMgr::~PartSet_SketcherMgr()
153 {
154   if (!myPlaneFilter.IsNull())
155     myPlaneFilter.Nullify();
156 }
157
158 void PartSet_SketcherMgr::onEnterViewPort()
159 {
160   if (!isNestedCreateOperation(getCurrentOperation()))
161     return;
162   // 1. if the mouse over window, update the next flag. Do not perform update visibility of
163   // created feature because it should be done in onMouseMove(). Some widgets watch
164   // the mouse move and use the cursor position to update own values. If the presentaion is
165   // redisplayed before this update, the feature presentation jumps from reset value to current.
166   myIsMouseOverWindow = true;
167   myIsPropertyPanelValueChanged = false;
168 }
169
170 void PartSet_SketcherMgr::onLeaveViewPort()
171 {
172   if (!isNestedCreateOperation(getCurrentOperation()))
173     return;
174   // the method should be performed if the popup menu is called,
175   // the reset of the current widget should not happen
176   if (myIsPopupMenuActive)
177     return;
178
179   myIsMouseOverViewProcessed = false;
180   myIsMouseOverWindow = false;
181
182   // 2. if the mouse IS NOT over window, reset the active widget value and hide the presentation
183   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
184   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
185   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
186   // disable the viewer update in order to avoid visualization of redisplayed feature in viewer
187   // obtained after reset value
188   bool isEnableUpdateViewer = aDisplayer->enableUpdateViewer(false);
189   ModuleBase_Operation* aOperation = getCurrentOperation();
190   ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
191   ModuleBase_ModelWidget* aActiveWgt = aPanel->activeWidget();
192   if (aActiveWgt) {
193     aActiveWgt->reset();
194   }
195   aDisplayer->enableUpdateViewer(isEnableUpdateViewer);
196
197   // hides the presentation of the current operation feature
198   myIsPropertyPanelValueChanged = false;
199   // the feature is to be erased here, but it is correct to call canDisplayObject because
200   // there can be additional check (e.g. editor widget in distance constraint)
201   FeaturePtr aFeature = getCurrentOperation()->feature();
202   visualizeFeature(aOperation, canDisplayObject(aFeature));
203 }
204
205 void PartSet_SketcherMgr::onBeforeValuesChangedInPropertyPanel()
206 {
207   if (isNestedCreateOperation(getCurrentOperation()))
208     return;
209   // it is necessary to save current selection in order to restore it after the values are modifed
210   storeSelection();
211
212   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
213   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
214   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
215   myPreviousUpdateViewerEnabled = aDisplayer->enableUpdateViewer(false);
216 }
217
218 void PartSet_SketcherMgr::onAfterValuesChangedInPropertyPanel()
219 {
220   if (isNestedCreateOperation(getCurrentOperation()))
221     return;
222   // it is necessary to restore current selection in order to restore it after the values are modified
223   restoreSelection();
224   myCurrentSelection.clear();
225
226   // 3. the flag to disable the update viewer should be set in order to avoid blinking in the 
227   // viewer happens by deselect/select the modified objects. The flag should be restored after
228   // the selection processing. The update viewer should be also called.
229   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
230   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
231   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
232   aDisplayer->enableUpdateViewer(myPreviousUpdateViewerEnabled);
233   aDisplayer->updateViewer();
234 }
235
236 void PartSet_SketcherMgr::onValuesChangedInPropertyPanel()
237 {
238   if (!isNestedCreateOperation(getCurrentOperation()))
239     return;
240
241   // visualize the current operation feature
242   myIsPropertyPanelValueChanged = true;
243   ModuleBase_Operation* aOperation = getCurrentOperation();
244   // the feature is to be erased here, but it is correct to call canDisplayObject because
245   // there can be additional check (e.g. editor widget in distance constraint)
246   FeaturePtr aFeature = getCurrentOperation()->feature();
247   visualizeFeature(aOperation, canDisplayObject(aFeature));
248 }
249
250 void PartSet_SketcherMgr::onMousePressed(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
251 {
252   get2dPoint(theWnd, theEvent, myClickedPoint);
253
254   if (!(theEvent->buttons() & Qt::LeftButton))
255     return;
256
257   // Clear dragging mode
258   myIsDragging = false;
259
260   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
261   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
262   if (!aViewer->canDragByMouse())
263     return;
264
265   ModuleBase_Operation* aOperation = getCurrentOperation();
266   if (aOperation && aOperation->isEditOperation()) {
267     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
268     ModuleBase_ModelWidget* aActiveWgt = aPanel->activeWidget();
269     // If the current widget is a selector, do do nothing, it processes the mouse press
270     if(aActiveWgt && aActiveWgt->isViewerSelector()) {
271       return;
272     }
273   }
274
275   // Use only for sketch operations
276   if (aOperation && myCurrentSketch) {
277     if (!PartSet_Tools::sketchPlane(myCurrentSketch))
278       return;
279
280     bool isSketcher = isSketchOperation(aOperation);
281     bool isSketchOpe = isNestedSketchOperation(aOperation);
282
283     // Avoid non-sketch operations
284     if ((!isSketchOpe) && (!isSketcher))
285       return;
286
287     bool isEditing = aOperation->isEditOperation();
288
289     // Ignore creation sketch operation
290     if ((!isSketcher) && (!isEditing))
291       return;
292
293     // MoveTo in order to highlight current object
294     aViewer->AISContext()->MoveTo(theEvent->x(), theEvent->y(), theWnd->v3dView());
295
296     // Remember highlighted objects for editing
297     ModuleBase_ISelection* aSelect = aWorkshop->selection();
298
299     bool aHasShift = (theEvent->modifiers() & Qt::ShiftModifier);
300     storeSelection(!aHasShift);
301
302     if (myCurrentSelection.empty()) {
303       if (isSketchOpe && (!isSketcher))
304         // commit previous operation
305         if (!aOperation->commit())
306           aOperation->abort();
307       return;
308     }
309
310     if (isSketcher) {
311       myIsDragging = true;
312       get2dPoint(theWnd, theEvent, myCurrentPoint);
313       myDragDone = false;
314       launchEditing();
315
316     } else if (isSketchOpe && isEditing) {
317       // If selected another object commit current result
318       aOperation->commit();
319
320       myIsDragging = true;
321       get2dPoint(theWnd, theEvent, myCurrentPoint);
322       myDragDone = false;
323
324       // This is necessary in order to finalize previous operation
325       QApplication::processEvents();
326       launchEditing();
327     }
328   }
329 }
330
331 void PartSet_SketcherMgr::onMouseReleased(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
332 {
333   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
334   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
335   if (!aViewer->canDragByMouse())
336     return;
337   ModuleBase_Operation* aOp = getCurrentOperation();
338   if (aOp) {
339     if (isNestedSketchOperation(aOp)) {
340       get2dPoint(theWnd, theEvent, myClickedPoint);
341
342       // Only for sketcher operations
343       if (myIsDragging) {
344         if (myDragDone) {
345           //aOp->commit();
346           myCurrentSelection.clear();
347           // Reselect edited object
348           /*aViewer->AISContext()->MoveTo(theEvent->x(), theEvent->y(), theWnd->v3dView());
349           if (theEvent->modifiers() & Qt::ShiftModifier)
350             aViewer->AISContext()->ShiftSelect();
351           else
352             aViewer->AISContext()->Select();
353             */
354         }
355       }
356     }
357   }
358   aWorkshop->viewer()->enableSelection(myPreviousSelectionEnabled);
359   myIsDragging = false;
360 }
361
362 void PartSet_SketcherMgr::onMouseMoved(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
363 {
364   if (isNestedCreateOperation(getCurrentOperation()) && !myIsMouseOverViewProcessed) {
365     myIsMouseOverViewProcessed = true;
366     // 1. perform the widget mouse move functionality and display the presentation
367     ModuleBase_Operation* aOperation = getCurrentOperation();
368     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
369     ModuleBase_ModelWidget* anActiveWdg = aPanel->activeWidget();
370     // the mouse move should be processed in the widget, if it can in order to visualize correct
371     // presentation. These widgets correct the feature attribute according to the mouse position
372     PartSet_WidgetPoint2D* aPoint2DWdg = dynamic_cast<PartSet_WidgetPoint2D*>(anActiveWdg);
373     if (aPoint2DWdg) {
374       aPoint2DWdg->onMouseMove(theWnd, theEvent);
375     }
376     PartSet_WidgetPoint2dDistance* aDistanceWdg = dynamic_cast<PartSet_WidgetPoint2dDistance*>
377                                                                 (anActiveWdg);
378     if (aDistanceWdg) {
379       aDistanceWdg->onMouseMove(theWnd, theEvent);
380     }
381     // the feature is to be erased here, but it is correct to call canDisplayObject because
382     // there can be additional check (e.g. editor widget in distance constraint)
383     FeaturePtr aFeature = getCurrentOperation()->feature();
384     visualizeFeature(aOperation, canDisplayObject(aFeature));
385   }
386
387   myClickedPoint.clear();
388
389   if (myIsDragging) {
390     // 1. the current selection is saved in the mouse press method in order to restore it after moving
391     // 2. the enable selection in the viewer should be temporary switched off in order to ignore
392     // mouse press signal in the viewer(it call Select for AIS context and the dragged objects are
393     // deselected). This flag should be restored in the slot, processed the mouse release signal.
394     ModuleBase_IViewer* aViewer = myModule->workshop()->viewer();
395     aViewer->enableSelection(false);
396
397     ModuleBase_Operation* aOperation = getCurrentOperation();
398     if (!aOperation)
399       return;
400     if (isSketchOperation(aOperation))
401       return; // No edit operation activated
402
403     Handle(V3d_View) aView = theWnd->v3dView();
404     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
405     double aX, aY;
406     PartSet_Tools::convertTo2D(aPoint, myCurrentSketch, aView, aX, aY);
407     double dX =  aX - myCurrentPoint.myCurX;
408     double dY =  aY - myCurrentPoint.myCurY;
409
410     ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
411     XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
412     XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
413     // 3. the flag to disable the update viewer should be set in order to avoid blinking in the 
414     // viewer happens by deselect/select the modified objects. The flag should be restored after
415     // the selection processing. The update viewer should be also called.
416     bool isEnableUpdateViewer = aDisplayer->enableUpdateViewer(false);
417
418     static Events_ID aMoveEvent = Events_Loop::eventByName(EVENT_OBJECT_MOVED);
419     //static Events_ID aUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
420     FeatureToSelectionMap::const_iterator anIt = myCurrentSelection.begin(),
421                                           aLast = myCurrentSelection.end();
422     // 4. the features and attributes modification(move)
423     for (; anIt != aLast; anIt++) {
424       FeaturePtr aFeature = anIt.key();
425
426       std::set<AttributePtr> anAttributes = anIt.value().first;
427       // Process selection by attribute: the priority to the attribute
428       if (!anAttributes.empty()) {
429         std::set<AttributePtr>::const_iterator anAttIt = anAttributes.begin(),
430                                                anAttLast = anAttributes.end();
431         for (; anAttIt != anAttLast; anAttIt++) {
432           AttributePtr anAttr = *anAttIt;
433           if (anAttr.get() == NULL)
434             continue;
435           std::string aAttrId = anAttr->id();
436           DataPtr aData = aFeature->data();
437           if (aData.get() != NULL) {
438             std::shared_ptr<GeomDataAPI_Point2D> aPoint = 
439               std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(aAttrId));
440             if (aPoint.get() != NULL) {
441               bool isImmutable = aPoint->setImmutable(true);
442               aPoint->move(dX, dY);
443               ModelAPI_EventCreator::get()->sendUpdated(aFeature, aMoveEvent);
444               aPoint->setImmutable(isImmutable);
445             }
446           }
447         }
448       } else {
449         // Process selection by feature
450         std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
451           std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
452         if (aSketchFeature) {
453           aSketchFeature->move(dX, dY);
454           ModelAPI_EventCreator::get()->sendUpdated(aSketchFeature, aMoveEvent);
455         }
456       }
457     }
458     Events_Loop::loop()->flush(aMoveEvent); // up all move events - to be processed in the solver
459     //Events_Loop::loop()->flush(aUpdateEvent); // up update events - to redisplay presentations
460
461     // 5. it is necessary to save current selection in order to restore it after the features moving
462     restoreSelection();
463     // 6. restore the update viewer flag and call this update
464     aDisplayer->enableUpdateViewer(isEnableUpdateViewer);
465     aDisplayer->updateViewer();
466
467     myDragDone = true;
468     myCurrentPoint.setValue(aX, aY);
469   }
470 }
471
472 void PartSet_SketcherMgr::onMouseDoubleClick(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
473 {
474   ModuleBase_Operation* aOperation = getCurrentOperation();
475   if (aOperation && aOperation->isEditOperation()) {
476     std::string aId = aOperation->id().toStdString();
477     if (isDistanceOperation(aOperation))
478     {
479       // Activate dimension value editing on double click
480       ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
481       QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
482       // Find corresponded widget to activate value editing
483       foreach (ModuleBase_ModelWidget* aWgt, aWidgets) {
484         if (aWgt->attributeID() == "ConstraintValue") {
485           aWgt->focusTo();
486           return;
487         }
488       }
489     }
490   }
491 }
492
493 void PartSet_SketcherMgr::onApplicationStarted()
494 {
495   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
496   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
497   XGUI_Workshop* aWorkshop = aConnector->workshop();
498   XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
499   if (aPropertyPanel) {
500     connect(aPropertyPanel, SIGNAL(beforeWidgetActivated(ModuleBase_ModelWidget*)),
501             this, SLOT(onBeforeWidgetActivated(ModuleBase_ModelWidget*)));
502   }
503
504   XGUI_ViewerProxy* aViewerProxy = aWorkshop->viewer();
505   connect(aViewerProxy, SIGNAL(enterViewPort()), this, SLOT(onEnterViewPort()));
506   connect(aViewerProxy, SIGNAL(leaveViewPort()), this, SLOT(onLeaveViewPort()));
507
508   XGUI_ContextMenuMgr* aContextMenuMgr = aWorkshop->contextMenuMgr();
509   connect(aContextMenuMgr, SIGNAL(beforeContextMenu()), this, SLOT(onBeforeContextMenu()));
510   connect(aContextMenuMgr, SIGNAL(afterContextMenu()), this, SLOT(onAfterContextMenu()));
511 }
512
513 void PartSet_SketcherMgr::onBeforeWidgetActivated(ModuleBase_ModelWidget* theWidget)
514 {
515   if (!myClickedPoint.myIsInitialized)
516     return;
517
518   ModuleBase_Operation* aOperation = getCurrentOperation();
519   // the distance constraint feature should not use the clickedd point
520   // this is workaround in order to don't throw down the flyout point value,
521   // set by execute() method of these type of features
522   if (isDistanceOperation(aOperation))
523     return;
524
525   PartSet_WidgetPoint2D* aPnt2dWgt = dynamic_cast<PartSet_WidgetPoint2D*>(theWidget);
526   if (aPnt2dWgt) {
527     aPnt2dWgt->setPoint(myClickedPoint.myCurX, myClickedPoint.myCurY);
528   }
529 }
530
531 void PartSet_SketcherMgr::onBeforeContextMenu()
532 {
533   myIsPopupMenuActive = true;
534 }
535
536 void PartSet_SketcherMgr::onAfterContextMenu()
537 {
538   myIsPopupMenuActive = false;
539 }
540
541 void PartSet_SketcherMgr::get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent, 
542                                      Point& thePoint)
543 {
544   Handle(V3d_View) aView = theWnd->v3dView();
545   gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
546   double aX, anY;
547   PartSet_Tools::convertTo2D(aPoint, myCurrentSketch, aView, aX, anY);
548   thePoint.setValue(aX, anY);
549 }
550
551 void PartSet_SketcherMgr::launchEditing()
552 {
553   // there should be activate the vertex selection mode because the edit can happens by the selected
554   // point
555   QIntList aModes;
556   aModes << TopAbs_VERTEX << TopAbs_EDGE;
557   // TODO: #391 - to be uncommented
558   /*aModes.append(AIS_DSM_Text);
559   aModes.append(AIS_DSM_Line);
560   aModes.append(AIS_Shape::SelectionMode((TopAbs_ShapeEnum) TopAbs_VERTEX));
561   aModes.append(AIS_Shape::SelectionMode((TopAbs_ShapeEnum) TopAbs_EDGE));*/
562
563   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
564   aConnector->activateSubShapesSelection(aModes);
565
566   if (!myCurrentSelection.empty()) {
567     FeaturePtr aFeature = myCurrentSelection.begin().key();
568     std::shared_ptr<SketchPlugin_Feature> aSPFeature = 
569               std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
570     if (aSPFeature) {
571       myModule->editFeature(aSPFeature);
572     }
573   }
574  
575 }
576
577
578 const QStringList& PartSet_SketcherMgr::sketchOperationIdList()
579 {
580   static QStringList aIds;
581   if (aIds.size() == 0) {
582     aIds << SketchPlugin_Line::ID().c_str();
583     aIds << SketchPlugin_Point::ID().c_str();
584     aIds << SketchPlugin_Arc::ID().c_str();
585     aIds << SketchPlugin_Circle::ID().c_str();
586     aIds << SketchPlugin_ConstraintLength::ID().c_str();
587     aIds << SketchPlugin_ConstraintDistance::ID().c_str();
588     aIds << SketchPlugin_ConstraintRigid::ID().c_str();
589     aIds << SketchPlugin_ConstraintRadius::ID().c_str();
590     aIds << SketchPlugin_ConstraintPerpendicular::ID().c_str();
591     aIds << SketchPlugin_ConstraintParallel::ID().c_str();
592     aIds << SketchPlugin_ConstraintHorizontal::ID().c_str();
593     aIds << SketchPlugin_ConstraintVertical::ID().c_str();
594     aIds << SketchPlugin_ConstraintEqual::ID().c_str();
595     aIds << SketchPlugin_ConstraintTangent::ID().c_str();
596     aIds << SketchPlugin_ConstraintCoincidence::ID().c_str();
597     aIds << SketchPlugin_ConstraintFillet::ID().c_str();
598     aIds << SketchPlugin_ConstraintMirror::ID().c_str();
599   }
600   return aIds;
601 }
602
603 const QStringList& PartSet_SketcherMgr::constraintsIdList()
604 {
605   static QStringList aIds;
606   if (aIds.size() == 0) {
607     aIds << SketchPlugin_ConstraintLength::ID().c_str();
608     aIds << SketchPlugin_ConstraintDistance::ID().c_str();
609     aIds << SketchPlugin_ConstraintRigid::ID().c_str();
610     aIds << SketchPlugin_ConstraintRadius::ID().c_str();
611     aIds << SketchPlugin_ConstraintPerpendicular::ID().c_str();
612     aIds << SketchPlugin_ConstraintParallel::ID().c_str();
613     aIds << SketchPlugin_ConstraintHorizontal::ID().c_str();
614     aIds << SketchPlugin_ConstraintVertical::ID().c_str();
615     aIds << SketchPlugin_ConstraintEqual::ID().c_str();
616     aIds << SketchPlugin_ConstraintTangent::ID().c_str();
617     aIds << SketchPlugin_ConstraintCoincidence::ID().c_str();
618     aIds << SketchPlugin_ConstraintMirror::ID().c_str();
619   }
620   return aIds;
621 }
622
623
624 bool PartSet_SketcherMgr::isSketchOperation(ModuleBase_Operation* theOperation)
625 {
626   return theOperation && theOperation->id().toStdString() == SketchPlugin_Sketch::ID();
627 }
628
629 bool PartSet_SketcherMgr::isNestedSketchOperation(ModuleBase_Operation* theOperation)
630 {
631   return theOperation &&
632          PartSet_SketcherMgr::sketchOperationIdList().contains(theOperation->id());
633 }
634
635 bool PartSet_SketcherMgr::isNestedCreateOperation(ModuleBase_Operation* theOperation)
636 {
637   return theOperation && !theOperation->isEditOperation() && isNestedSketchOperation(theOperation);
638 }
639
640 bool PartSet_SketcherMgr::isEntityOperation(ModuleBase_Operation* theOperation)
641 {
642   std::string aId = theOperation ? theOperation->id().toStdString() : "";
643
644   return (aId == SketchPlugin_Line::ID()) ||
645          (aId == SketchPlugin_Point::ID()) ||
646          (aId == SketchPlugin_Arc::ID()) ||
647          (aId == SketchPlugin_Circle::ID());
648 }
649
650 bool PartSet_SketcherMgr::isDistanceOperation(ModuleBase_Operation* theOperation)
651 {
652   std::string aId = theOperation ? theOperation->id().toStdString() : "";
653
654   return (aId == SketchPlugin_ConstraintLength::ID()) ||
655          (aId == SketchPlugin_ConstraintDistance::ID()) ||
656          (aId == SketchPlugin_ConstraintRadius::ID());
657 }
658
659 void PartSet_SketcherMgr::startSketch(ModuleBase_Operation* theOperation)
660 {
661   // Display all sketcher sub-Objects
662   myCurrentSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(theOperation->feature());
663   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
664   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
665
666   // Hide sketcher result
667   std::list<ResultPtr> aResults = myCurrentSketch->results();
668   std::list<ResultPtr>::const_iterator aIt;
669   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
670     aDisplayer->erase((*aIt), false);
671   }
672   aDisplayer->erase(myCurrentSketch, false);
673
674   // Display sketcher objects
675   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
676     FeaturePtr aFeature = myCurrentSketch->subFeature(i);
677     std::list<ResultPtr> aResults = aFeature->results();
678     std::list<ResultPtr>::const_iterator aIt;
679     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
680       aDisplayer->display((*aIt), false);
681     }
682     aDisplayer->display(aFeature, false);
683   }
684
685   if (myPlaneFilter.IsNull()) 
686     myPlaneFilter = new ModuleBase_ShapeInPlaneFilter();
687
688   myModule->workshop()->viewer()->addSelectionFilter(myPlaneFilter);
689   if (theOperation->isEditOperation()) {
690     // If it is editing of sketch then it means that plane is already defined
691     std::shared_ptr<GeomAPI_Pln> aPln = PartSet_Tools::sketchPlane(myCurrentSketch);
692     myPlaneFilter->setPlane(aPln->impl<gp_Pln>());
693   }
694   aDisplayer->updateViewer();
695 }
696
697 void PartSet_SketcherMgr::stopSketch(ModuleBase_Operation* theOperation)
698 {
699   myIsMouseOverWindow = false;
700
701   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
702   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
703
704   DataPtr aData = myCurrentSketch->data();
705   if ((!aData) || (!aData->isValid())) {
706     // The sketch was aborted
707     myCurrentSketch = CompositeFeaturePtr();
708     myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
709
710     // Erase all sketcher objects
711     QStringList aSketchIds = sketchOperationIdList();
712     QObjectPtrList aObjects = aDisplayer->displayedObjects();
713     foreach (ObjectPtr aObj, aObjects) {
714       DataPtr aObjData = aObj->data();
715       if ((!aObjData) || (!aObjData->isValid()))
716         aDisplayer->erase(aObj);
717     }
718     return; 
719   }
720   // Hide all sketcher sub-Objects
721   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
722     FeaturePtr aFeature = myCurrentSketch->subFeature(i);
723     std::list<ResultPtr> aResults = aFeature->results();
724     std::list<ResultPtr>::const_iterator aIt;
725     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
726       aDisplayer->erase((*aIt), false);
727     }
728     aDisplayer->erase(aFeature, false);
729   }
730   // Display sketcher result
731   std::list<ResultPtr> aResults = myCurrentSketch->results();
732   std::list<ResultPtr>::const_iterator aIt;
733   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
734     aDisplayer->display((*aIt), false);
735   }
736   aDisplayer->display(myCurrentSketch);
737     
738   myCurrentSketch = CompositeFeaturePtr();
739   myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
740   aDisplayer->updateViewer();
741 }
742
743 void PartSet_SketcherMgr::startNestedSketch(ModuleBase_Operation* )
744 {
745   connectToPropertyPanel(true);
746 }
747
748 void PartSet_SketcherMgr::stopNestedSketch(ModuleBase_Operation* theOp)
749 {
750   connectToPropertyPanel(false);
751   myIsPropertyPanelValueChanged = false;
752   myIsMouseOverViewProcessed = true;
753 }
754
755 void PartSet_SketcherMgr::commitNestedSketch(ModuleBase_Operation* theOperation)
756 {
757   if (isNestedCreateOperation(theOperation))
758     visualizeFeature(theOperation, true);
759
760   if (constraintsIdList().contains(theOperation->id())) {
761     // Show constraints if a constraint was created
762     onShowConstraintsToggle(true);
763   }
764 }
765
766 bool PartSet_SketcherMgr::canUndo() const
767 {
768   return isNestedCreateOperation(getCurrentOperation());
769 }
770
771 bool PartSet_SketcherMgr::canRedo() const
772 {
773   return isNestedCreateOperation(getCurrentOperation());
774 }
775
776 bool PartSet_SketcherMgr::canDisplayObject(const ObjectPtr& theObject) const
777 {
778   bool aCanDisplay = true;
779   // 1. the sketch feature should not be displayed during the sketch active operation
780   // it is hidden by a sketch operation start and shown by a sketch stop, just the sketch 
781   // nested features can be visualized
782   CompositeFeaturePtr aSketchFeature = activeSketch();
783   if (aSketchFeature.get() != NULL) {
784     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
785     if (aFeature.get() != NULL && aFeature == aSketchFeature)
786       aCanDisplay = false;
787   }
788   // 2. For created nested feature operation do not display the created feature if
789   // the mouse curstor leaves the OCC window.
790   // The correction cases, which ignores this condition:
791   // a. the property panel values modification
792   // b. the popup menu activated
793   // c. widget editor control
794   if (aCanDisplay) {
795     if (!isNestedCreateOperation(getCurrentOperation()))
796       return aCanDisplay;
797
798     ModuleBase_Operation* aOperation = getCurrentOperation();
799     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
800     ModuleBase_ModelWidget* anActiveWdg = aPanel ? aPanel->activeWidget() : 0;
801     // the active widget editor should not influence here. The presentation should be visible always
802     // when this widget is active.
803     if (anActiveWdg) {
804       ModuleBase_WidgetEditor* anEditorWdg = dynamic_cast<ModuleBase_WidgetEditor*>(anActiveWdg);
805       if (anEditorWdg) {
806         return aCanDisplay;
807       }
808     }
809     if (myIsPopupMenuActive)
810       return aCanDisplay;
811
812     // during a nested create operation, the feature is redisplayed only if the mouse over view
813     // of there was a value modified in the property panel after the mouse left the view
814     aCanDisplay = myIsPropertyPanelValueChanged || myIsMouseOverWindow;
815   }
816   return aCanDisplay;
817 }
818
819 bool PartSet_SketcherMgr::canSetAuxiliary(bool& theValue) const
820 {
821   bool anEnabled = false;
822   ModuleBase_Operation* anOperation = getCurrentOperation();
823
824   bool isActiveSketch = PartSet_SketcherMgr::isSketchOperation(anOperation) ||
825                         PartSet_SketcherMgr::isNestedSketchOperation(anOperation);
826   if (!isActiveSketch)
827     return anEnabled;
828
829   QObjectPtrList anObjects;
830   // 1. change auxiliary type of a created feature
831   if (PartSet_SketcherMgr::isNestedCreateOperation(anOperation) &&
832       PartSet_SketcherMgr::isEntityOperation(anOperation) ) {
833     anObjects.append(anOperation->feature());
834   }
835   else {
836     /// The operation should not be aborted here, because the method does not changed
837     /// the auxilliary state, but checks the possibility to perform this
838     ///if (PartSet_SketcherMgr::isNestedSketchOperation(anOperation))
839     ///  anOperation->abort();
840     // 2. change auxiliary type of selected sketch entities
841     ModuleBase_ISelection* aSelection = myModule->workshop()->selection();
842     anObjects = aSelection->selectedPresentations();
843   }
844   anEnabled = anObjects.size() > 0;
845
846   bool isNotAuxiliaryFound = false;
847   if (anObjects.size() > 0) {
848     QObjectPtrList::const_iterator anIt = anObjects.begin(), aLast = anObjects.end();
849     for (; anIt != aLast && !isNotAuxiliaryFound; anIt++) {
850       FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
851       if (aFeature.get() != NULL) {
852         std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
853                             std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
854         if (aSketchFeature.get() != NULL) {
855           std::string anAttribute = SketchPlugin_SketchEntity::AUXILIARY_ID();
856
857           std::shared_ptr<ModelAPI_AttributeBoolean> anAuxiliaryAttr = 
858             std::dynamic_pointer_cast<ModelAPI_AttributeBoolean>(aSketchFeature->data()->attribute(anAttribute));
859           if (anAuxiliaryAttr)
860             isNotAuxiliaryFound = !anAuxiliaryAttr->value();
861         }
862       }
863     }
864   }
865   theValue = anObjects.size() && !isNotAuxiliaryFound;
866   return anEnabled;
867 }
868   
869 void PartSet_SketcherMgr::setAuxiliary(const bool isChecked)
870 {
871   ModuleBase_Operation* anOperation = getCurrentOperation();
872
873   bool isActiveSketch = PartSet_SketcherMgr::isSketchOperation(anOperation) ||
874                         PartSet_SketcherMgr::isNestedSketchOperation(anOperation);
875   if (!isActiveSketch)
876     return;
877
878   QObjectPtrList anObjects;
879   bool isUseTransaction = false;
880   // 1. change auxiliary type of a created feature
881   if (PartSet_SketcherMgr::isNestedCreateOperation(anOperation) &&
882       PartSet_SketcherMgr::isEntityOperation(anOperation) ) {
883     anObjects.append(anOperation->feature());
884   }
885   else {
886     isUseTransaction = true;
887     // 2. change auxiliary type of selected sketch entities
888     ModuleBase_ISelection* aSelection = myModule->workshop()->selection();
889     anObjects = aSelection->selectedPresentations();
890   }
891
892   QAction* anAction = myModule->action("AUXILIARY_CMD");
893   SessionPtr aMgr = ModelAPI_Session::get();
894   if (isUseTransaction) {
895     if (PartSet_SketcherMgr::isNestedSketchOperation(anOperation))
896       anOperation->abort();
897     aMgr->startOperation(anAction->text().toStdString());
898   }
899   storeSelection();
900
901   if (anObjects.size() > 0) {
902     QObjectPtrList::const_iterator anIt = anObjects.begin(), aLast = anObjects.end();
903     for (; anIt != aLast; anIt++) {
904       FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
905       if (aFeature.get() != NULL) {
906         std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
907                             std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
908         if (aSketchFeature.get() != NULL) {
909           std::string anAttribute = SketchPlugin_SketchEntity::AUXILIARY_ID();
910
911           std::shared_ptr<ModelAPI_AttributeBoolean> anAuxiliaryAttr = 
912             std::dynamic_pointer_cast<ModelAPI_AttributeBoolean>(aSketchFeature->data()->attribute(anAttribute));
913           if (anAuxiliaryAttr)
914             anAuxiliaryAttr->setValue(isChecked);
915         }
916       }
917     }
918   }
919   if (isUseTransaction) {
920     aMgr->finishOperation();
921   }
922   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
923   restoreSelection();
924 }
925
926 void PartSet_SketcherMgr::onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>& thePln)
927 {
928   myPlaneFilter->setPlane(thePln->impl<gp_Pln>());
929 }
930
931 void PartSet_SketcherMgr::getCurrentSelection(const FeaturePtr& theFeature,
932                                               const FeaturePtr& theSketch,
933                                               ModuleBase_IWorkshop* theWorkshop,
934                                               FeatureToSelectionMap& theSelection)
935 {
936   if (theFeature.get() == NULL)
937     return;
938
939   std::set<AttributePtr> aSelectedAttributes;
940   std::set<ResultPtr> aSelectedResults;
941
942   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
943   Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
944   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
945   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
946
947   std::list<ResultPtr> aResults = theFeature->results();
948   std::list<ResultPtr>::const_iterator aIt;
949   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
950   {
951     ResultPtr aResult = *aIt;
952     AISObjectPtr aAISObj = aDisplayer->getAISObject(aResult);
953     if (aAISObj.get() == NULL)
954       continue;
955     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
956     for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected())
957     {
958       Handle(StdSelect_BRepOwner) aBRepOwner = Handle(StdSelect_BRepOwner)::DownCast(
959                                                                       aContext->SelectedOwner());
960       if (aBRepOwner.IsNull())
961         continue;
962       Handle(AIS_InteractiveObject) anIO = Handle(AIS_InteractiveObject)::DownCast(
963                                                                         aBRepOwner->Selectable());
964       if (anIO != anAISIO)
965         continue;
966
967       if (aBRepOwner->HasShape()) {
968         const TopoDS_Shape& aShape = aBRepOwner->Shape();
969         TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
970         if (aShapeType == TopAbs_VERTEX) {
971           AttributePtr aPntAttr = PartSet_Tools::findAttributeBy2dPoint(theFeature,
972                                                                         aShape, theSketch);
973           if (aPntAttr.get() != NULL)
974             aSelectedAttributes.insert(aPntAttr);
975         }
976         else if (aShapeType == TopAbs_EDGE &&
977                  aSelectedResults.find(aResult) == aSelectedResults.end()) {
978           aSelectedResults.insert(aResult);
979         }
980       }
981     }
982   }
983   theSelection[theFeature] = std::make_pair(aSelectedAttributes, aSelectedResults);
984 }
985
986 void PartSet_SketcherMgr::getSelectionOwners(const FeaturePtr& theFeature,
987                                              const FeaturePtr& theSketch,
988                                              ModuleBase_IWorkshop* theWorkshop,
989                                              const FeatureToSelectionMap& theSelection,
990                                              SelectMgr_IndexedMapOfOwner& anOwnersToSelect)
991 {
992   if (theFeature.get() == NULL)
993     return;
994
995   FeatureToSelectionMap::const_iterator anIt = theSelection.find(theFeature);
996   std::set<AttributePtr> aSelectedAttributes = anIt.value().first;
997   std::set<ResultPtr> aSelectedResults = anIt.value().second;
998
999   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
1000   Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
1001   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
1002   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
1003
1004   // 1. found the feature's owners. Check the AIS objects of the constructions
1005   AISObjectPtr aAISObj = aDisplayer->getAISObject(theFeature);
1006   if (aAISObj.get() != NULL && aSelectedAttributes.empty() && aSelectedResults.empty()) {
1007     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1008
1009     SelectMgr_IndexedMapOfOwner aSelectedOwners;  
1010     aConnector->workshop()->selector()->selection()->entityOwners(anAISIO, aSelectedOwners);
1011     for  (Standard_Integer i = 1, n = aSelectedOwners.Extent(); i <= n; i++) {
1012       Handle(SelectMgr_EntityOwner) anOwner = aSelectedOwners(i);
1013       if (!anOwner.IsNull())
1014         anOwnersToSelect.Add(anOwner);
1015     }
1016   }
1017
1018   // 2. found the feature results's owners
1019   std::list<ResultPtr> aResults = theFeature->results();
1020   std::list<ResultPtr>::const_iterator aIt;
1021   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
1022   {
1023     ResultPtr aResult = *aIt;
1024     AISObjectPtr aAISObj = aDisplayer->getAISObject(aResult);
1025     if (aAISObj.get() == NULL)
1026       continue; 
1027     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1028
1029     SelectMgr_IndexedMapOfOwner aSelectedOwners;  
1030     aConnector->workshop()->selector()->selection()->entityOwners(anAISIO, aSelectedOwners);
1031     for  ( Standard_Integer i = 1, n = aSelectedOwners.Extent(); i <= n; i++ ) {
1032       Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast(aSelectedOwners(i));
1033       if ( anOwner.IsNull() || !anOwner->HasShape() )
1034         continue;
1035       const TopoDS_Shape& aShape = anOwner->Shape();
1036       TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
1037       if (aShapeType == TopAbs_VERTEX) {
1038         AttributePtr aPntAttr = PartSet_Tools::findAttributeBy2dPoint(theFeature, aShape, theSketch);
1039         if (aPntAttr.get() != NULL &&
1040             aSelectedAttributes.find(aPntAttr) != aSelectedAttributes.end()) {
1041           anOwnersToSelect.Add(anOwner);
1042         }
1043       }
1044       else if (aShapeType == TopAbs_EDGE) {
1045         bool aFound = aSelectedResults.find(aResult) != aSelectedResults.end();
1046         if (aSelectedResults.find(aResult) != aSelectedResults.end() &&
1047             anOwnersToSelect.FindIndex(anOwner) <= 0)
1048           anOwnersToSelect.Add(anOwner);
1049       }
1050     }
1051   }
1052 }
1053
1054 void PartSet_SketcherMgr::connectToPropertyPanel(const bool isToConnect)
1055 {
1056   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
1057   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
1058   XGUI_Workshop* aWorkshop = aConnector->workshop();
1059   XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
1060   if (aPropertyPanel) {
1061     const QList<ModuleBase_ModelWidget*>& aWidgets = aPropertyPanel->modelWidgets();
1062     foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
1063       if (isToConnect) {
1064         connect(aWidget, SIGNAL(beforeValuesChanged()),
1065                 this, SLOT(onBeforeValuesChangedInPropertyPanel()));
1066         connect(aWidget, SIGNAL(valuesChanged()), this, SLOT(onValuesChangedInPropertyPanel()));
1067         connect(aWidget, SIGNAL(afterValuesChanged()),
1068                 this, SLOT(onAfterValuesChangedInPropertyPanel()));
1069       }
1070       else {
1071         disconnect(aWidget, SIGNAL(beforeValuesChanged()),
1072                    this, SLOT(onBeforeValuesChangedInPropertyPanel()));
1073         disconnect(aWidget, SIGNAL(valuesChanged()), this, SLOT(onValuesChangedInPropertyPanel()));
1074         disconnect(aWidget, SIGNAL(afterValuesChanged()),
1075                    this, SLOT(onAfterValuesChangedInPropertyPanel()));
1076       }
1077     }
1078   }
1079 }
1080
1081 ModuleBase_Operation* PartSet_SketcherMgr::getCurrentOperation() const
1082 {
1083   return myModule->workshop()->currentOperation();
1084 }
1085
1086 void PartSet_SketcherMgr::visualizeFeature(ModuleBase_Operation* theOperation,
1087                                            const bool isToDisplay)
1088 {
1089   if (!theOperation || theOperation->isEditOperation())
1090     return;
1091
1092   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1093   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1094   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
1095
1096   // 1. change visibility of the object itself, here the presentable object is processed,
1097   // e.g. constraints features
1098   FeaturePtr aFeature = theOperation->feature();
1099   std::list<ResultPtr> aResults = aFeature->results();
1100   if (isToDisplay)
1101     aDisplayer->display(aFeature, false);
1102   else
1103     aDisplayer->erase(aFeature, false);
1104
1105   // change visibility of the object results, e.g. non-constraint features
1106   std::list<ResultPtr>::const_iterator aIt;
1107   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
1108     if (isToDisplay) {
1109       aDisplayer->display(*aIt, false);
1110     }
1111     else {
1112       aDisplayer->erase(*aIt, false);
1113     }
1114   }
1115   aDisplayer->updateViewer();
1116 }
1117
1118 void PartSet_SketcherMgr::storeSelection(const bool theHighlightedOnly)
1119 {
1120   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1121   ModuleBase_ISelection* aSelect = aWorkshop->selection();
1122   QList<ModuleBase_ViewerPrs> aHighlighted = aSelect->getHighlighted();
1123     
1124   QMap<FeaturePtr, QList<AttributePtr> > aFeature2AttributeMap;
1125   if (theHighlightedOnly) {
1126     fillFeature2Attribute(aHighlighted, aFeature2AttributeMap, myCurrentSketch);
1127   }
1128   else {
1129     fillFeature2Attribute(aHighlighted, aFeature2AttributeMap, myCurrentSketch);
1130
1131     QList<ModuleBase_ViewerPrs> aSelected = aSelect->getSelected();
1132     fillFeature2Attribute(aSelected, aFeature2AttributeMap, myCurrentSketch);
1133   }
1134
1135   // 1. it is necessary to save current selection in order to restore it after the features moving
1136   myCurrentSelection.clear();
1137   QMap<FeaturePtr, QList<AttributePtr> >::const_iterator anIt = aFeature2AttributeMap.begin(),
1138                                                          aLast = aFeature2AttributeMap.end();
1139   for (; anIt != aLast; anIt++) {
1140     FeaturePtr aFeature = anIt.key();
1141     getCurrentSelection(aFeature, myCurrentSketch, aWorkshop, myCurrentSelection);
1142   }
1143   //qDebug(QString("  storeSelection: %1").arg(myCurrentSelection.size()).toStdString().c_str());
1144 }
1145
1146 void PartSet_SketcherMgr::restoreSelection()
1147 {
1148   //qDebug(QString("restoreSelection: %1").arg(myCurrentSelection.size()).toStdString().c_str());
1149   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1150   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1151   FeatureToSelectionMap::const_iterator aSIt = myCurrentSelection.begin(),
1152                                         aSLast = myCurrentSelection.end();
1153   SelectMgr_IndexedMapOfOwner anOwnersToSelect;
1154   for (; aSIt != aSLast; aSIt++) {
1155     anOwnersToSelect.Clear();
1156     getSelectionOwners(aSIt.key(), myCurrentSketch, aWorkshop, myCurrentSelection,
1157                         anOwnersToSelect);
1158     aConnector->workshop()->selector()->setSelectedOwners(anOwnersToSelect, false);
1159   }
1160 }
1161
1162 void PartSet_SketcherMgr::onShowConstraintsToggle(bool theOn)
1163 {
1164   if (myIsConstraintsShown == theOn)
1165     return;
1166   if (myCurrentSketch.get() == NULL)
1167     return;
1168
1169   myIsConstraintsShown = theOn;
1170
1171   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1172   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1173   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
1174
1175   const QStringList& aConstrIds = constraintsIdList();
1176   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
1177     FeaturePtr aSubFeature = myCurrentSketch->subFeature(i);
1178     if (aConstrIds.contains(QString(aSubFeature->getKind().c_str()))) {
1179       if (myIsConstraintsShown) 
1180         aDisplayer->display(aSubFeature, false);
1181       else
1182         aDisplayer->erase(aSubFeature, false);
1183     }
1184   }
1185   aDisplayer->updateViewer();
1186 }