Salome HOME
Set font of the Root Label the same as in Tree View
[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_SketcherReetntrantMgr.h"
9 #include "PartSet_Module.h"
10 #include "PartSet_WidgetPoint2d.h"
11 #include "PartSet_WidgetPoint2dDistance.h"
12 #include "PartSet_Tools.h"
13 #include "PartSet_WidgetSketchLabel.h"
14 #include "PartSet_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 <XGUI_ModuleConnector.h>
23 #include <XGUI_PropertyPanel.h>
24 #include <XGUI_ViewerProxy.h>
25 #include <XGUI_OperationMgr.h>
26
27 #include <ModuleBase_IPropertyPanel.h>
28 #include <ModuleBase_ISelection.h>
29 #include <ModuleBase_IViewer.h>
30 #include <ModuleBase_IWorkshop.h>
31 #include <ModuleBase_IViewWindow.h>
32 #include <ModuleBase_ModelWidget.h>
33 #include <ModuleBase_Operation.h>
34 #include <ModuleBase_OperationFeature.h>
35 #include <ModuleBase_Operation.h>
36 #include <ModuleBase_WidgetEditor.h>
37
38 #include <GeomDataAPI_Point2D.h>
39
40 #include <Events_Loop.h>
41
42 #include <SketchPlugin_Line.h>
43 #include <SketchPlugin_Sketch.h>
44 #include <SketchPlugin_Point.h>
45 #include <SketchPlugin_Arc.h>
46 #include <SketchPlugin_Circle.h>
47 #include <SketchPlugin_ConstraintLength.h>
48 #include <SketchPlugin_ConstraintDistance.h>
49 #include <SketchPlugin_ConstraintParallel.h>
50 #include <SketchPlugin_ConstraintPerpendicular.h>
51 #include <SketchPlugin_ConstraintRadius.h>
52 #include <SketchPlugin_ConstraintRigid.h>
53 #include <SketchPlugin_ConstraintHorizontal.h>
54 #include <SketchPlugin_ConstraintVertical.h>
55 #include <SketchPlugin_ConstraintEqual.h>
56 #include <SketchPlugin_ConstraintTangent.h>
57 #include <SketchPlugin_ConstraintCoincidence.h>
58 #include <SketchPlugin_ConstraintFillet.h>
59 #include <SketchPlugin_ConstraintMirror.h>
60 #include <SketchPlugin_ConstraintAngle.h>
61 #include <SketchPlugin_MultiRotation.h>
62 #include <SketchPlugin_MultiTranslation.h>
63
64 #include <SketcherPrs_Tools.h>
65
66 #include <SelectMgr_IndexedMapOfOwner.hxx>
67 #include <StdSelect_BRepOwner.hxx>
68
69 //#include <AIS_DimensionSelectionMode.hxx>
70 #include <AIS_Shape.hxx>
71
72 #include <ModelAPI_Events.h>
73 #include <ModelAPI_Session.h>
74 #include <ModelAPI_AttributeString.h>
75
76 #include <QMouseEvent>
77 #include <QApplication>
78
79 //#define DEBUG_DO_NOT_BY_ENTER
80
81 /// Returns list of unique objects by sum of objects from List1 and List2
82 /*QList<ModuleBase_ViewerPrs> getSumList(const QList<ModuleBase_ViewerPrs>& theList1,
83                                        const QList<ModuleBase_ViewerPrs>& theList2)
84 {
85   QList<ModuleBase_ViewerPrs> aRes;
86   foreach (ModuleBase_ViewerPrs aPrs, theList1) {
87     if (!aRes.contains(aPrs))
88       aRes.append(aPrs);
89   }
90   foreach (ModuleBase_ViewerPrs aPrs, theList2) {
91     if (!aRes.contains(aPrs))
92       aRes.append(aPrs);
93   }
94   return aRes;
95 }*/
96
97 // Fills the list of features the list of selected presentations.
98 // \param theList a list of selected presentations
99 // \param theSketch a sketch to project a vertex shape of a presentation to the plane
100 // and find the corresponded attribute
101 // \param theFeatureList  an output list of features
102 void fillFeatureList(const QList<ModuleBase_ViewerPrs>& theList,
103                      const FeaturePtr theSketch,
104                      QList<FeaturePtr>& theFeatureList)
105 {
106   QList<ModuleBase_ViewerPrs> aRes;
107
108   QList<ModuleBase_ViewerPrs>::const_iterator anIt = theList.begin(),
109                                               aLast = theList.end();
110   for (; anIt != aLast; anIt++)
111   {
112     ModuleBase_ViewerPrs aPrs = *anIt;
113     FeaturePtr aFeature = ModelAPI_Feature::feature(aPrs.object());
114     if (aFeature.get()  && !theFeatureList.contains(aFeature))
115       theFeatureList.append(aFeature);
116   }
117 }
118
119 /// Fills attribute and result lists by the selected owner. In case if the attribute is found,
120 /// by the owner shape, it is put to the list. Otherwise if type of owner shape is edge, put the function
121 /// result as is to the list of results.
122 /// \param theOwner a viewer selected owner
123 /// \param theFeature a feature, where the attribute is searched
124 /// \param theSketch a current sketch
125 /// \param theSelectedAttribute an output list of attributes
126 /// \param theSelectedResults an output list of edge results
127 void getAttributesOrResults(const Handle(SelectMgr_EntityOwner)& theOwner,
128                             const FeaturePtr& theFeature, const FeaturePtr& theSketch,
129                             const ResultPtr& theResult,
130                             std::set<AttributePtr>& aSelectedAttributes,
131                             std::set<ResultPtr>& aSelectedResults)
132 {
133   Handle(StdSelect_BRepOwner) aBRepOwner = Handle(StdSelect_BRepOwner)::DownCast(theOwner);
134   if (aBRepOwner.IsNull())
135     return;
136   Handle(AIS_InteractiveObject) anIO = Handle(AIS_InteractiveObject)::DownCast(
137                                                                     aBRepOwner->Selectable());
138   if (aBRepOwner->HasShape()) {
139     const TopoDS_Shape& aShape = aBRepOwner->Shape();
140     TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
141     if (aShapeType == TopAbs_VERTEX) {
142       AttributePtr aPntAttr = PartSet_Tools::findAttributeBy2dPoint(theFeature,
143                                                                     aShape, theSketch);
144       if (aPntAttr.get() != NULL)
145         aSelectedAttributes.insert(aPntAttr);
146     }
147     else if (aShapeType == TopAbs_EDGE &&
148              aSelectedResults.find(theResult) == aSelectedResults.end()) {
149       aSelectedResults.insert(theResult);
150     }
151   }
152 }
153
154 PartSet_SketcherMgr::PartSet_SketcherMgr(PartSet_Module* theModule)
155   : QObject(theModule), myModule(theModule), myIsDragging(false), myDragDone(false),
156     myIsMouseOverWindow(false),
157     myIsMouseOverViewProcessed(true), myPreviousUpdateViewerEnabled(true),
158     myIsPopupMenuActive(false), myIsConstraintsShown(true)
159 {
160   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
161   ModuleBase_IViewer* aViewer = anIWorkshop->viewer();
162
163   myPreviousDrawModeEnabled = true;//aViewer->isSelectionEnabled();
164
165   connect(aViewer, SIGNAL(mousePress(ModuleBase_IViewWindow*, QMouseEvent*)),
166           this, SLOT(onMousePressed(ModuleBase_IViewWindow*, QMouseEvent*)));
167
168   connect(aViewer, SIGNAL(mouseRelease(ModuleBase_IViewWindow*, QMouseEvent*)),
169           this, SLOT(onMouseReleased(ModuleBase_IViewWindow*, QMouseEvent*)));
170
171   connect(aViewer, SIGNAL(mouseMove(ModuleBase_IViewWindow*, QMouseEvent*)),
172           this, SLOT(onMouseMoved(ModuleBase_IViewWindow*, QMouseEvent*)));
173
174   connect(aViewer, SIGNAL(mouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)),
175           this, SLOT(onMouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)));
176
177   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
178   XGUI_Workshop* aWorkshop = aConnector->workshop();
179   connect(aWorkshop, SIGNAL(applicationStarted()), this, SLOT(onApplicationStarted()));
180 }
181
182 PartSet_SketcherMgr::~PartSet_SketcherMgr()
183 {
184   if (!myPlaneFilter.IsNull())
185     myPlaneFilter.Nullify();
186 }
187
188 void PartSet_SketcherMgr::onEnterViewPort()
189 {
190   // 1. if the mouse over window, update the next flag. Do not perform update visibility of
191   // created feature because it should be done in onMouseMove(). Some widgets watch
192   // the mouse move and use the cursor position to update own values. If the presentaion is
193   // redisplayed before this update, the feature presentation jumps from reset value to current.
194   myIsMouseOverWindow = true;
195
196   #ifdef DEBUG_DO_NOT_BY_ENTER
197   return;
198   #endif
199
200   if (canChangeCursor(getCurrentOperation()))
201     QApplication::setOverrideCursor(QCursor(Qt::CrossCursor));
202
203   if (!isNestedCreateOperation(getCurrentOperation()))
204     return;
205
206   operationMgr()->onValidateOperation();
207
208   // we need change displayed state of the current operation feature
209   // if the feature is presentable, e.g. distance construction. It has no results, so workshop does
210   // not accept a signal about the result created. Nothing is shown until mouse is moved out/in view
211   // port. If the isDisplayed flag is true, the presentable feature is displayed as soon as the
212   // presentation becomes valid and redisplay happens
213   //ModuleBase_Operation* aOperation = getCurrentOperation();
214   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
215                                                                            (getCurrentOperation());
216   if (aFOperation) {
217     FeaturePtr aFeature = aFOperation->feature();
218     if (aFeature.get() && aFeature->data()->isValid()) {
219       visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature), false);
220     }
221   }
222 }
223
224 void PartSet_SketcherMgr::onLeaveViewPort()
225 {
226   myIsMouseOverViewProcessed = false;
227   myIsMouseOverWindow = false;
228   // it is important to validate operation here only if sketch entity create operation is active
229   // because at this operation we reacts to the mouse leave/enter view port
230   //operationMgr()->onValidateOperation();
231
232   #ifdef DEBUG_DO_NOT_BY_ENTER
233   return;
234   #endif
235
236   if (canChangeCursor(getCurrentOperation()))
237     QApplication::restoreOverrideCursor();
238
239   if (!isNestedCreateOperation(getCurrentOperation()))
240     return;
241
242   // the method should be performed if the popup menu is called,
243   // the reset of the current widget should not happen
244   if (myIsPopupMenuActive)
245     return;
246
247   operationMgr()->onValidateOperation();
248
249   // 2. if the mouse IS NOT over window, reset the active widget value and hide the presentation
250   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
251   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
252   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
253   // disable the viewer update in order to avoid visualization of redisplayed feature in viewer
254   // obtained after reset value
255   bool isEnableUpdateViewer = aDisplayer->enableUpdateViewer(false);
256   ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
257   if (anActiveWidget)
258     anActiveWidget->reset();
259   aDisplayer->enableUpdateViewer(isEnableUpdateViewer);
260
261   // hides the presentation of the current operation feature
262   // the feature is to be erased here, but it is correct to call canDisplayObject because
263   // there can be additional check (e.g. editor widget in distance constraint)
264   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
265                                                                            (getCurrentOperation());
266   if (aFOperation) {
267     FeaturePtr aFeature = aFOperation->feature();
268     visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature));
269   }
270 }
271
272 void PartSet_SketcherMgr::onBeforeValuesChangedInPropertyPanel()
273 {
274   if (isNestedCreateOperation(getCurrentOperation()))
275     return;
276   // it is necessary to save current selection in order to restore it after the values are modifed
277   storeSelection();
278
279   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
280   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
281   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
282   myPreviousUpdateViewerEnabled = aDisplayer->enableUpdateViewer(false);
283 }
284
285 void PartSet_SketcherMgr::onAfterValuesChangedInPropertyPanel()
286 {
287   if (isNestedCreateOperation(getCurrentOperation()))
288     return;
289   // it is necessary to restore current selection in order to restore it after the values are modified
290   restoreSelection();
291   myCurrentSelection.clear();
292
293   // 3. the flag to disable the update viewer should be set in order to avoid blinking in the 
294   // viewer happens by deselect/select the modified objects. The flag should be restored after
295   // the selection processing. The update viewer should be also called.
296   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
297   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
298   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
299   aDisplayer->enableUpdateViewer(myPreviousUpdateViewerEnabled);
300   aDisplayer->updateViewer();
301 }
302
303 void PartSet_SketcherMgr::onMousePressed(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
304 {
305   if (myModule->sketchReentranceMgr()->processMousePressed(theWnd, theEvent))
306     return;
307
308   get2dPoint(theWnd, theEvent, myClickedPoint);
309
310   if (!(theEvent->buttons() & Qt::LeftButton))
311     return;
312
313   // Clear dragging mode
314   myIsDragging = false;
315
316   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
317   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
318   if (!aViewer->canDragByMouse())
319     return;
320
321   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
322                                                                (getCurrentOperation());
323   if (!aFOperation)
324     return;
325
326   if (aFOperation->isEditOperation()) {
327     // If the current widget is a selector, do nothing, it processes the mouse press
328     ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
329     if(anActiveWidget && anActiveWidget->isViewerSelector()) {
330       return;
331     }
332   }
333
334   // Use only for sketch operations
335   if (myCurrentSketch) {
336     if (!PartSet_Tools::sketchPlane(myCurrentSketch))
337       return;
338
339     bool isSketcher = isSketchOperation(aFOperation);
340     bool isSketchOpe = isNestedSketchOperation(aFOperation);
341
342     // Avoid non-sketch operations
343     if ((!isSketchOpe) && (!isSketcher))
344       return;
345
346     bool isEditing = aFOperation->isEditOperation();
347
348     // Ignore creation sketch operation
349     if ((!isSketcher) && (!isEditing))
350       return;
351
352     Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
353     if (!aContext.IsNull()) {
354       // MoveTo in order to highlight current object
355       aContext->MoveTo(theEvent->x(), theEvent->y(), theWnd->v3dView());
356     }
357     // Remember highlighted objects for editing
358     ModuleBase_ISelection* aSelect = aWorkshop->selection();
359
360     bool aHasShift = (theEvent->modifiers() & Qt::ShiftModifier);
361     storeSelection(!aHasShift);
362
363     if (myCurrentSelection.empty()) {
364       if (isSketchOpe && (!isSketcher))
365         // commit previous operation
366         if (!aFOperation->commit())
367           aFOperation->abort();
368       return;
369     }
370     // Init flyout point for radius rotation
371     FeaturePtr aFeature = myCurrentSelection.begin().key();
372
373     if (isSketcher) {
374       myIsDragging = true;
375       get2dPoint(theWnd, theEvent, myCurrentPoint);
376       myDragDone = false;
377       // TODO: Has to be uncommented when SALOME patch on draw mode become avialable
378       myPreviousDrawModeEnabled = aViewer->enableDrawMode(false);
379       launchEditing();
380       if (aFeature.get() != NULL) {
381         std::shared_ptr<SketchPlugin_Feature> aSPFeature = 
382                   std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
383       if (aSPFeature.get() && aSPFeature->getKind() == SketchPlugin_ConstraintRadius::ID()) {
384           DataPtr aData = aSPFeature->data();
385           AttributePtr aAttr = aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT());
386           std::shared_ptr<GeomDataAPI_Point2D> aFPAttr = 
387             std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aAttr);
388           aFPAttr->setValue(myCurrentPoint.myCurX, myCurrentPoint.myCurY);
389         }
390       }
391     } else if (isSketchOpe && isEditing) {
392       // If selected another object commit current result
393       aFOperation->commit();
394
395       myIsDragging = true;
396       get2dPoint(theWnd, theEvent, myCurrentPoint);
397       myDragDone = false;
398       // TODO: Has to be uncommented when SALOME patch on draw mode become avialable
399       myPreviousDrawModeEnabled = aViewer->enableDrawMode(false);
400
401       // This is necessary in order to finalize previous operation
402       QApplication::processEvents();
403       launchEditing();
404     }
405   }
406 }
407
408 void PartSet_SketcherMgr::onMouseReleased(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
409 {
410   if (myModule->sketchReentranceMgr()->processMouseReleased(theWnd, theEvent))
411     return;
412
413   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
414   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
415   if (!aViewer->canDragByMouse())
416     return;
417   ModuleBase_Operation* aOp = getCurrentOperation();
418   if (aOp) {
419     if (isNestedSketchOperation(aOp)) {
420       get2dPoint(theWnd, theEvent, myClickedPoint);
421
422       // Only for sketcher operations
423       if (myIsDragging) {
424         if (myDragDone) {
425           //aOp->commit();
426           myCurrentSelection.clear();
427           /*Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
428           if (!aContext.IsNull()) {
429           // Reselect edited object
430           aContext->MoveTo(theEvent->x(), theEvent->y(), theWnd->v3dView());
431           if (theEvent->modifiers() & Qt::ShiftModifier)
432             aContext->ShiftSelect();
433           else
434             aContext->Select();
435           */
436         }
437       }
438     }
439   }
440       // TODO: Has to be uncommented when SALOME patch on draw mode become avialable
441   aWorkshop->viewer()->enableDrawMode(myPreviousDrawModeEnabled);
442   //aWorkshop->viewer()->enableSelection(myPreviousDrawModeEnabled);
443   myIsDragging = false;
444 }
445
446 void PartSet_SketcherMgr::onMouseMoved(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
447 {
448   if (myModule->sketchReentranceMgr()->processMouseMoved(theWnd, theEvent))
449     return;
450
451   if (isNestedCreateOperation(getCurrentOperation()) && !myIsMouseOverViewProcessed) {
452     myIsMouseOverViewProcessed = true;
453     // 1. perform the widget mouse move functionality and display the presentation
454     // the mouse move should be processed in the widget, if it can in order to visualize correct
455     // presentation. These widgets correct the feature attribute according to the mouse position
456     ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
457     PartSet_WidgetPoint2D* aPoint2DWdg = dynamic_cast<PartSet_WidgetPoint2D*>(anActiveWidget);
458     if (aPoint2DWdg) {
459       aPoint2DWdg->onMouseMove(theWnd, theEvent);
460     }
461     PartSet_WidgetPoint2dDistance* aDistanceWdg = dynamic_cast<PartSet_WidgetPoint2dDistance*>
462                                                                 (anActiveWidget);
463     if (aDistanceWdg) {
464       aDistanceWdg->onMouseMove(theWnd, theEvent);
465     }
466     // the feature is to be erased here, but it is correct to call canDisplayObject because
467     // there can be additional check (e.g. editor widget in distance constraint)
468     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
469                                                                              (getCurrentOperation());
470     if (aFOperation) {
471       FeaturePtr aFeature = aFOperation->feature();
472       visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature));
473     }
474   }
475
476   myClickedPoint.clear();
477
478   if (myIsDragging) {
479     // 1. the current selection is saved in the mouse press method in order to restore it after moving
480     // 2. the enable selection in the viewer should be temporary switched off in order to ignore
481     // mouse press signal in the viewer(it call Select for AIS context and the dragged objects are
482     // deselected). This flag should be restored in the slot, processed the mouse release signal.
483
484     // TODO: Has to be commented out when SALOME patch on draw mode become avialable
485     //ModuleBase_IViewer* aViewer = myModule->workshop()->viewer();
486     //aViewer->enableSelection(false);
487
488     ModuleBase_Operation* aCurrentOperation = getCurrentOperation();
489     if (!aCurrentOperation)
490       return;
491     if (isSketchOperation(aCurrentOperation))
492       return; // No edit operation activated
493
494     Handle(V3d_View) aView = theWnd->v3dView();
495     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
496     double aX, aY;
497     PartSet_Tools::convertTo2D(aPoint, myCurrentSketch, aView, aX, aY);
498     double dX =  aX - myCurrentPoint.myCurX;
499     double dY =  aY - myCurrentPoint.myCurY;
500
501     ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
502     XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
503     XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
504     // 3. the flag to disable the update viewer should be set in order to avoid blinking in the 
505     // viewer happens by deselect/select the modified objects. The flag should be restored after
506     // the selection processing. The update viewer should be also called.
507     bool isEnableUpdateViewer = aDisplayer->enableUpdateViewer(false);
508
509     static Events_ID aMoveEvent = Events_Loop::eventByName(EVENT_OBJECT_MOVED);
510     //static Events_ID aUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
511     FeatureToSelectionMap::const_iterator anIt = myCurrentSelection.begin(),
512                                           aLast = myCurrentSelection.end();
513     // 4. the features and attributes modification(move)
514     bool isModified = false;
515     for (; anIt != aLast; anIt++) {
516       FeaturePtr aFeature = anIt.key();
517
518       std::set<AttributePtr> anAttributes = anIt.value().first;
519       // Process selection by attribute: the priority to the attribute
520       if (!anAttributes.empty()) {
521         std::set<AttributePtr>::const_iterator anAttIt = anAttributes.begin(),
522                                                anAttLast = anAttributes.end();
523         for (; anAttIt != anAttLast; anAttIt++) {
524           AttributePtr anAttr = *anAttIt;
525           if (anAttr.get() == NULL)
526             continue;
527           std::string aAttrId = anAttr->id();
528           DataPtr aData = aFeature->data();
529           if (aData->isValid()) {
530             std::shared_ptr<GeomDataAPI_Point2D> aPoint = 
531               std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(aAttrId));
532             if (aPoint.get() != NULL) {
533               bool isImmutable = aPoint->setImmutable(true);
534               aPoint->move(dX, dY);
535               isModified = true;
536               ModelAPI_EventCreator::get()->sendUpdated(aFeature, aMoveEvent);
537               aPoint->setImmutable(isImmutable);
538             }
539           }
540         }
541       } else {
542         // Process selection by feature
543         std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
544           std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
545         if (aSketchFeature) {
546           aSketchFeature->move(dX, dY);
547           isModified = true;
548           ModelAPI_EventCreator::get()->sendUpdated(aSketchFeature, aMoveEvent);
549         }
550       }
551     }
552     // the modified state of the current operation should be updated if there are features, which
553     // were changed here
554     if (isModified) {
555       aCurrentOperation->onValuesChanged();
556     }
557     Events_Loop::loop()->flush(aMoveEvent); // up all move events - to be processed in the solver
558     //Events_Loop::loop()->flush(aUpdateEvent); // up update events - to redisplay presentations
559
560     // 5. it is necessary to save current selection in order to restore it after the features moving
561     restoreSelection();
562     // 6. restore the update viewer flag and call this update
563     aDisplayer->enableUpdateViewer(isEnableUpdateViewer);
564     aDisplayer->updateViewer();
565
566     myDragDone = true;
567     myCurrentPoint.setValue(aX, aY);
568   }
569 }
570
571 void PartSet_SketcherMgr::onMouseDoubleClick(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
572 {
573   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
574                                                                (getCurrentOperation());
575   if (aFOperation && aFOperation->isEditOperation()) {
576     std::string aId = aFOperation->id().toStdString();
577     if (isDistanceOperation(aFOperation))
578     {
579       // Activate dimension value editing on double click
580       ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
581       QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
582       // Find corresponded widget to activate value editing
583       foreach (ModuleBase_ModelWidget* aWgt, aWidgets) {
584         if (aWgt->attributeID() == "ConstraintValue") {
585           PartSet_WidgetEditor* anEditor = dynamic_cast<PartSet_WidgetEditor*>(aWgt);
586           if (anEditor)
587             anEditor->showPopupEditor();
588           return;
589         }
590       }
591     }
592   }
593 }
594
595 void PartSet_SketcherMgr::onApplicationStarted()
596 {
597   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
598   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
599   XGUI_Workshop* aWorkshop = aConnector->workshop();
600   PartSet_SketcherReetntrantMgr* aReentranceMgr = myModule->sketchReentranceMgr();
601
602   XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
603   if (aPropertyPanel) {
604     connect(aPropertyPanel, SIGNAL(beforeWidgetActivated(ModuleBase_ModelWidget*)),
605             this, SLOT(onBeforeWidgetActivated(ModuleBase_ModelWidget*)));
606
607     connect(aPropertyPanel, SIGNAL(noMoreWidgets(const std::string&)),
608             aReentranceMgr, SLOT(onNoMoreWidgets(const std::string&)));
609     connect(aPropertyPanel, SIGNAL(widgetActivated(ModuleBase_ModelWidget*)),
610             aReentranceMgr, SLOT(onWidgetActivated()));
611   }
612
613   XGUI_ViewerProxy* aViewerProxy = aWorkshop->viewer();
614   connect(aViewerProxy, SIGNAL(enterViewPort()), this, SLOT(onEnterViewPort()));
615   connect(aViewerProxy, SIGNAL(leaveViewPort()), this, SLOT(onLeaveViewPort()));
616
617   XGUI_ContextMenuMgr* aContextMenuMgr = aWorkshop->contextMenuMgr();
618   connect(aContextMenuMgr, SIGNAL(beforeContextMenu()), this, SLOT(onBeforeContextMenu()));
619   connect(aContextMenuMgr, SIGNAL(afterContextMenu()), this, SLOT(onAfterContextMenu()));
620 }
621
622 void PartSet_SketcherMgr::onBeforeWidgetActivated(ModuleBase_ModelWidget* theWidget)
623 {
624   if (!myClickedPoint.myIsInitialized)
625     return;
626
627   ModuleBase_Operation* aOperation = getCurrentOperation();
628   // the distance constraint feature should not use the clickedd point
629   // this is workaround in order to don't throw down the flyout point value,
630   // set by execute() method of these type of features
631   if (isDistanceOperation(aOperation))
632     return;
633
634   PartSet_WidgetPoint2D* aPnt2dWgt = dynamic_cast<PartSet_WidgetPoint2D*>(theWidget);
635   if (aPnt2dWgt) {
636     aPnt2dWgt->setPoint(myClickedPoint.myCurX, myClickedPoint.myCurY);
637   }
638 }
639
640 void PartSet_SketcherMgr::onBeforeContextMenu()
641 {
642   myIsPopupMenuActive = true;
643 }
644
645 void PartSet_SketcherMgr::onAfterContextMenu()
646 {
647   myIsPopupMenuActive = false;
648 }
649
650 void PartSet_SketcherMgr::get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent, 
651                                      Point& thePoint)
652 {
653   Handle(V3d_View) aView = theWnd->v3dView();
654   gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
655   double aX, anY;
656   PartSet_Tools::convertTo2D(aPoint, myCurrentSketch, aView, aX, anY);
657   thePoint.setValue(aX, anY);
658 }
659
660 void PartSet_SketcherMgr::launchEditing()
661 {
662   if (!myCurrentSelection.empty()) {
663     FeaturePtr aFeature = myCurrentSelection.begin().key();
664     std::shared_ptr<SketchPlugin_Feature> aSPFeature = 
665               std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
666     if (aSPFeature) {
667       myModule->editFeature(aSPFeature);
668     }
669   }
670 }
671
672 bool PartSet_SketcherMgr::sketchSolverError()
673 {
674   bool anError = false;
675   CompositeFeaturePtr aSketch = activeSketch();
676   if (aSketch.get()) {
677     AttributeStringPtr aAttributeString = aSketch->string(SketchPlugin_Sketch::SOLVER_ERROR());
678     anError = !aAttributeString->value().empty();
679   }
680   return anError;
681 }
682
683 QString PartSet_SketcherMgr::getFeatureError(const FeaturePtr& theFeature, const bool isCheckGUI)
684 {
685   QString anError = "";
686   if (!theFeature.get() || !theFeature->data()->isValid())
687     return anError;
688
689   CompositeFeaturePtr aSketch = activeSketch();
690   if (aSketch.get() && aSketch == theFeature) {
691     AttributeStringPtr aAttributeString = aSketch->string(SketchPlugin_Sketch::SOLVER_ERROR());
692     anError = aAttributeString->value().c_str();
693   }
694   else {
695     ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
696     if (isCheckGUI && anActiveWidget) {
697       ModuleBase_ModelWidget::ValueState aState = anActiveWidget->getValueState();
698       if (aState != ModuleBase_ModelWidget::Stored) {
699         AttributePtr anAttr = anActiveWidget->feature()->attribute(anActiveWidget->attributeID());
700         if (anAttr.get()) {
701           QString anAttributeName = anAttr->id().c_str();
702           switch (aState) {
703             case ModuleBase_ModelWidget::ModifiedInPP:
704               anError = "Attribute \"" + anAttributeName +
705                         "\" modification is not applyed. Please click \"Enter\" or \"Tab\".";
706               break;
707             case ModuleBase_ModelWidget::ModifiedInViewer:
708               anError = "Attribute \"" + anAttributeName +
709                         "\" is locked by modification value in the viewer.";
710               break;
711             case ModuleBase_ModelWidget::Reset:
712               anError = "Attribute \"" + anAttributeName + "\" is not initialized.";
713               break;
714           }
715         }
716       }
717     }
718   }
719   return anError;
720 }
721
722 void PartSet_SketcherMgr::clearClickedFlags()
723 {
724   return;
725   myClickedPoint.clear();
726   myCurrentPoint.clear();
727 }
728
729 const QStringList& PartSet_SketcherMgr::sketchOperationIdList()
730 {
731   static QStringList aIds;
732   if (aIds.size() == 0) {
733     aIds << SketchPlugin_Line::ID().c_str();
734     aIds << SketchPlugin_Point::ID().c_str();
735     aIds << SketchPlugin_Arc::ID().c_str();
736     aIds << SketchPlugin_Circle::ID().c_str();
737     aIds << SketchPlugin_ConstraintFillet::ID().c_str();
738     aIds.append(constraintsIdList());
739   }
740   return aIds;
741 }
742
743 const QStringList& PartSet_SketcherMgr::constraintsIdList()
744 {
745   static QStringList aIds;
746   if (aIds.size() == 0) {
747     aIds << SketchPlugin_ConstraintLength::ID().c_str();
748     aIds << SketchPlugin_ConstraintDistance::ID().c_str();
749     aIds << SketchPlugin_ConstraintRigid::ID().c_str();
750     aIds << SketchPlugin_ConstraintRadius::ID().c_str();
751     aIds << SketchPlugin_ConstraintPerpendicular::ID().c_str();
752     aIds << SketchPlugin_ConstraintParallel::ID().c_str();
753     aIds << SketchPlugin_ConstraintHorizontal::ID().c_str();
754     aIds << SketchPlugin_ConstraintVertical::ID().c_str();
755     aIds << SketchPlugin_ConstraintEqual::ID().c_str();
756     aIds << SketchPlugin_ConstraintTangent::ID().c_str();
757     aIds << SketchPlugin_ConstraintCoincidence::ID().c_str();
758     aIds << SketchPlugin_ConstraintMirror::ID().c_str();
759     aIds << SketchPlugin_ConstraintAngle::ID().c_str();
760     aIds << SketchPlugin_MultiRotation::ID().c_str();
761     aIds << SketchPlugin_MultiTranslation::ID().c_str();
762   }
763   return aIds;
764 }
765
766 void PartSet_SketcherMgr::sketchSelectionModes(QIntList& theModes)
767 {
768   theModes.clear();
769
770   theModes.append(SketcherPrs_Tools::Sel_Dimension_Text);
771   theModes.append(SketcherPrs_Tools::Sel_Dimension_Line);
772   theModes.append(SketcherPrs_Tools::Sel_Constraint);
773   theModes.append(TopAbs_VERTEX);
774   theModes.append(TopAbs_EDGE);
775 }
776
777 bool PartSet_SketcherMgr::isSketchOperation(ModuleBase_Operation* theOperation)
778 {
779   return theOperation && theOperation->id().toStdString() == SketchPlugin_Sketch::ID();
780 }
781
782 bool PartSet_SketcherMgr::isNestedSketchOperation(ModuleBase_Operation* theOperation)
783 {
784   return theOperation &&
785          PartSet_SketcherMgr::sketchOperationIdList().contains(theOperation->id());
786 }
787
788 bool PartSet_SketcherMgr::isNestedCreateOperation(ModuleBase_Operation* theOperation)
789 {
790   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
791                                                                (theOperation);
792   return aFOperation && !aFOperation->isEditOperation() && isNestedSketchOperation(aFOperation);
793 }
794
795 bool PartSet_SketcherMgr::isEntity(const std::string& theId)
796 {
797   return (theId == SketchPlugin_Line::ID()) ||
798          (theId == SketchPlugin_Point::ID()) ||
799          (theId == SketchPlugin_Arc::ID()) ||
800          (theId == SketchPlugin_Circle::ID());
801 }
802
803 bool PartSet_SketcherMgr::isDistanceOperation(ModuleBase_Operation* theOperation)
804 {
805   std::string aId = theOperation ? theOperation->id().toStdString() : "";
806
807   return (aId == SketchPlugin_ConstraintLength::ID()) ||
808          (aId == SketchPlugin_ConstraintDistance::ID()) ||
809          (aId == SketchPlugin_ConstraintRadius::ID()) ||
810          (aId == SketchPlugin_ConstraintAngle::ID());
811 }
812
813 void PartSet_SketcherMgr::startSketch(ModuleBase_Operation* theOperation)
814 {
815   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
816                                                                (getCurrentOperation());
817   if (!aFOperation)
818     return;
819
820   myModule->onViewTransformed();
821
822   // Display all sketcher sub-Objects
823   myCurrentSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFOperation->feature());
824   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
825
826   // Hide sketcher result
827   std::list<ResultPtr> aResults = myCurrentSketch->results();
828   std::list<ResultPtr>::const_iterator aIt;
829   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
830     (*aIt)->setDisplayed(false);
831   }
832   myCurrentSketch->setDisplayed(false);
833
834   // Display sketcher objects
835   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
836     FeaturePtr aFeature = myCurrentSketch->subFeature(i);
837     std::list<ResultPtr> aResults = aFeature->results();
838     std::list<ResultPtr>::const_iterator aIt;
839     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
840       (*aIt)->setDisplayed(true);
841     }
842     aFeature->setDisplayed(true);
843   }
844
845   if (myPlaneFilter.IsNull()) 
846     myPlaneFilter = new ModuleBase_ShapeInPlaneFilter();
847
848   myModule->workshop()->viewer()->addSelectionFilter(myPlaneFilter);
849
850   bool aHasPlane = false;
851   std::shared_ptr<GeomAPI_Pln> aPln;
852   if (aFOperation->isEditOperation()) {
853     // If it is editing of sketch then it means that plane is already defined
854     aPln = PartSet_Tools::sketchPlane(myCurrentSketch);
855     if (aPln.get())
856       aHasPlane = true;
857   }
858   myPlaneFilter->setPlane(aPln);
859
860   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
861   // all sketch objects should be activated in the sketch selection modes by edit operation start
862   // in case of creation operation, there is an active widget, which activates own selection mode
863   if (aFOperation->isEditOperation() && aHasPlane)
864     aConnector->activateModuleSelectionModes();
865 }
866
867 void PartSet_SketcherMgr::stopSketch(ModuleBase_Operation* theOperation)
868 {
869   myIsMouseOverWindow = false;
870   myIsConstraintsShown = true;
871
872   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
873
874   DataPtr aData = myCurrentSketch->data();
875   if (!aData->isValid()) {
876     XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
877     // The sketch was aborted
878     myCurrentSketch = CompositeFeaturePtr();
879     myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
880
881     // Erase all sketcher objects
882     QStringList aSketchIds = sketchOperationIdList();
883     QObjectPtrList aObjects = aDisplayer->displayedObjects();
884     foreach (ObjectPtr aObj, aObjects) {
885       DataPtr aObjData = aObj->data();
886       if (!aObjData->isValid())
887         aObj->setDisplayed(false);
888     }
889   }
890   else {
891     // Hide all sketcher sub-Objects
892     for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
893       FeaturePtr aFeature = myCurrentSketch->subFeature(i);
894       std::list<ResultPtr> aResults = aFeature->results();
895       std::list<ResultPtr>::const_iterator aIt;
896       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
897         (*aIt)->setDisplayed(false);
898       }
899       aFeature->setDisplayed(false);
900     }
901     // Display sketcher result
902     std::list<ResultPtr> aResults = myCurrentSketch->results();
903     std::list<ResultPtr>::const_iterator aIt;
904     Events_Loop* aLoop = Events_Loop::loop();
905     static Events_ID aDispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
906
907     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
908                                                                            (theOperation);
909     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
910       if (!aFOperation->isDisplayedOnStart(*aIt)) {
911         (*aIt)->setDisplayed(true);
912         // this display event is needed because sketch already may have "displayed" state,
913         // but not displayed while it is still active (issue 613, abort of existing sketch)
914         ModelAPI_EventCreator::get()->sendUpdated(*aIt, aDispEvent);
915       }
916     }
917     if (!aFOperation->isDisplayedOnStart(myCurrentSketch))
918       myCurrentSketch->setDisplayed(true);
919     
920     myCurrentSketch = CompositeFeaturePtr();
921     myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
922
923     Events_Loop::loop()->flush(aDispEvent);
924   }
925   // restore the module selection modes, which were changed on startSketch
926   aConnector->activateModuleSelectionModes();
927 }
928
929 void PartSet_SketcherMgr::startNestedSketch(ModuleBase_Operation* theOperation)
930 {
931   if (canChangeCursor(theOperation) && myIsMouseOverWindow)
932     QApplication::setOverrideCursor(QCursor(Qt::CrossCursor));
933 }
934
935 void PartSet_SketcherMgr::stopNestedSketch(ModuleBase_Operation* theOperation)
936 {
937   myIsMouseOverViewProcessed = true;
938   operationMgr()->onValidateOperation();
939   if (canChangeCursor(theOperation))
940     QApplication::restoreOverrideCursor();
941 }
942
943 void PartSet_SketcherMgr::commitNestedSketch(ModuleBase_Operation* theOperation)
944 {
945   if (isNestedCreateOperation(theOperation)) {
946     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
947                                                                              (theOperation);
948     if (aFOperation) {
949       FeaturePtr aFeature = aFOperation->feature();
950       // it is necessary to check the the feature data validity because
951       // some kind of features are removed by an operation commit(the macro state of a feature)
952       if (aFeature.get() && aFeature->data()->isValid()) {
953         visualizeFeature(aFeature, aFOperation->isEditOperation(), true);
954       }
955     }
956   }
957 }
958
959 bool PartSet_SketcherMgr::canUndo() const
960 {
961   return isNestedCreateOperation(getCurrentOperation());
962 }
963
964 bool PartSet_SketcherMgr::canRedo() const
965 {
966   return isNestedCreateOperation(getCurrentOperation());
967 }
968
969 bool PartSet_SketcherMgr::canEraseObject(const ObjectPtr& theObject) const
970 {
971   bool aCanErase = true;
972   // when the sketch operation is active, results of sketch sub-feature can not be hidden
973   if (myCurrentSketch.get()) {
974     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
975     if (aResult.get()) {
976       // Display sketcher objects
977       for (int i = 0; i < myCurrentSketch->numberOfSubs() && aCanErase; i++) {
978
979         FeaturePtr aFeature = myCurrentSketch->subFeature(i);
980         std::list<ResultPtr> aResults = aFeature->results();
981         std::list<ResultPtr>::const_iterator anIt;
982         for (anIt = aResults.begin(); anIt != aResults.end() && aCanErase; ++anIt) {
983           aCanErase = *anIt != aResult;
984         }
985       }
986     }
987   }
988   return aCanErase;
989 }
990
991 bool PartSet_SketcherMgr::canDisplayObject(const ObjectPtr& theObject) const
992 {
993   bool aCanDisplay = true;
994
995   bool aHasActiveSketch = activeSketch().get() != NULL;
996   if (aHasActiveSketch) {
997     // 1. the sketch feature should not be displayed during the sketch active operation
998     // it is hidden by a sketch operation start and shown by a sketch stop, just the sketch 
999     // nested features can be visualized
1000     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1001     if (aFeature.get() != NULL && aFeature == activeSketch()) {
1002       aCanDisplay = false;
1003     }
1004   }
1005   else { // there are no an active sketch
1006     // 2. sketch sub-features should not be visualized if the sketch operation is not active
1007     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1008     if (aFeature.get() != NULL) {
1009       std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
1010                               std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
1011       if (aSketchFeature.get()) {
1012         aCanDisplay = false;
1013       }
1014     }
1015   }
1016
1017   // 3. the method should not filter the objects, which are not related to the current operation.
1018   // The object is filtered just if it is a current operation feature or this feature result
1019   bool isObjectFound = false;
1020   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1021                                                                (getCurrentOperation());
1022   if (aFOperation) {
1023     FeaturePtr aFeature = aFOperation->feature();
1024     if (aFeature.get()) {
1025       std::list<ResultPtr> aResults = aFeature->results();
1026       if (theObject == aFeature)
1027         isObjectFound = true;
1028       else {
1029         std::list<ResultPtr>::const_iterator anIt = aResults.begin(), aLast = aResults.end();
1030         for (; anIt != aLast && !isObjectFound; anIt++) {
1031           isObjectFound = *anIt == theObject;
1032         }
1033       }
1034     }
1035   }
1036   if (!isObjectFound) 
1037     return aCanDisplay;
1038   
1039   // 4. For created nested feature operation do not display the created feature if
1040   // the mouse curstor leaves the OCC window.
1041   // The correction cases, which ignores this condition:
1042   // a. the property panel values modification
1043   // b. the popup menu activated
1044   // c. widget editor control
1045   #ifndef DEBUG_DO_NOT_BY_ENTER
1046   if (aCanDisplay && isNestedCreateOperation(getCurrentOperation())) {
1047     ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
1048     ModuleBase_WidgetEditor* anEditorWdg = anActiveWidget ? dynamic_cast<ModuleBase_WidgetEditor*>(anActiveWidget) : 0;
1049     // the active widget editor should not influence here. The presentation should be visible always
1050     // when this widget is active.
1051     if (!anEditorWdg && !myIsPopupMenuActive) {
1052       // during a nested create operation, the feature is redisplayed only if the mouse over view
1053       // of there was a value modified in the property panel after the mouse left the view
1054       aCanDisplay = canDisplayCurrentCreatedFeature();
1055     }
1056   }
1057   #endif
1058   return aCanDisplay;
1059 }
1060
1061 bool PartSet_SketcherMgr::canDisplayCurrentCreatedFeature() const
1062 {
1063   bool aCanDisplay = myIsMouseOverWindow;
1064   if (!aCanDisplay) {
1065     ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
1066     if (anActiveWidget)
1067       aCanDisplay = anActiveWidget->getValueState() == ModuleBase_ModelWidget::Stored;
1068   }
1069   return aCanDisplay;
1070 }
1071
1072 bool PartSet_SketcherMgr::canChangeCursor(ModuleBase_Operation* theOperation) const
1073 {
1074   return isNestedCreateOperation(theOperation) ||
1075          myModule->sketchReentranceMgr()->isInternalEditActive();
1076 }
1077
1078 bool PartSet_SketcherMgr::isObjectOfSketch(const ObjectPtr& theObject) const
1079 {
1080   bool isFoundObject = false;
1081
1082   FeaturePtr anObjectFeature = ModelAPI_Feature::feature(theObject);
1083   if (anObjectFeature.get()) {
1084     int aSize = myCurrentSketch->numberOfSubs();
1085     for (int i = 0; i < myCurrentSketch->numberOfSubs() && !isFoundObject; i++) {
1086       FeaturePtr aCurrentFeature = myCurrentSketch->subFeature(i);
1087       isFoundObject = myCurrentSketch->subFeature(i) == anObjectFeature;
1088     }
1089   }
1090   return isFoundObject;
1091 }
1092
1093 void PartSet_SketcherMgr::onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>& thePln)
1094 {
1095   if (myPlaneFilter.IsNull()) 
1096    myPlaneFilter = new ModuleBase_ShapeInPlaneFilter();
1097
1098   myPlaneFilter->setPlane(thePln);
1099 }
1100
1101 void PartSet_SketcherMgr::getCurrentSelection(const FeaturePtr& theFeature,
1102                                               const FeaturePtr& theSketch,
1103                                               ModuleBase_IWorkshop* theWorkshop,
1104                                               FeatureToSelectionMap& theSelection)
1105 {
1106   if (theFeature.get() == NULL)
1107     return;
1108
1109   std::set<AttributePtr> aSelectedAttributes;
1110   std::set<ResultPtr> aSelectedResults;
1111
1112   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
1113   Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
1114   if (!aContext.IsNull()) {
1115     XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
1116     XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
1117
1118     std::list<ResultPtr> aResults = theFeature->results();
1119     std::list<ResultPtr>::const_iterator aIt;
1120     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
1121     {
1122       ResultPtr aResult = *aIt;
1123       AISObjectPtr aAISObj = aDisplayer->getAISObject(aResult);
1124       if (aAISObj.get() == NULL)
1125         continue;
1126       Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1127       for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected())
1128       {
1129         Handle(SelectMgr_EntityOwner) anOwner = aContext->SelectedOwner();
1130         if (anOwner->Selectable() != anAISIO)
1131           continue;
1132         getAttributesOrResults(anOwner, theFeature, theSketch, aResult,
1133                                aSelectedAttributes, aSelectedResults);
1134       }
1135       for (aContext->InitDetected(); aContext->MoreDetected(); aContext->NextDetected()) {
1136         Handle(SelectMgr_EntityOwner) anOwner = aContext->DetectedOwner();
1137         if (anOwner.IsNull())
1138           continue;
1139         if (anOwner->Selectable() != anAISIO)
1140           continue;
1141         getAttributesOrResults(anOwner, theFeature, theSketch, aResult,
1142                                aSelectedAttributes, aSelectedResults);
1143       }
1144     }
1145   }
1146   theSelection[theFeature] = std::make_pair(aSelectedAttributes, aSelectedResults);
1147 }
1148
1149 void PartSet_SketcherMgr::getSelectionOwners(const FeaturePtr& theFeature,
1150                                              const FeaturePtr& theSketch,
1151                                              ModuleBase_IWorkshop* theWorkshop,
1152                                              const FeatureToSelectionMap& theSelection,
1153                                              SelectMgr_IndexedMapOfOwner& theOwnersToSelect)
1154 {
1155   if (theFeature.get() == NULL)
1156     return;
1157
1158   FeatureToSelectionMap::const_iterator anIt = theSelection.find(theFeature);
1159   std::set<AttributePtr> aSelectedAttributes = anIt.value().first;
1160   std::set<ResultPtr> aSelectedResults = anIt.value().second;
1161
1162   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
1163
1164   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
1165   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
1166
1167   // 1. found the feature's owners. Check the AIS objects of the constructions
1168   AISObjectPtr aAISObj = aDisplayer->getAISObject(theFeature);
1169   if (aAISObj.get() != NULL && aSelectedAttributes.empty() && aSelectedResults.empty()) {
1170     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1171
1172     SelectMgr_IndexedMapOfOwner aSelectedOwners;
1173     aConnector->workshop()->selector()->selection()->entityOwners(anAISIO, aSelectedOwners);
1174     for  (Standard_Integer i = 1, n = aSelectedOwners.Extent(); i <= n; i++) {
1175       Handle(SelectMgr_EntityOwner) anOwner = aSelectedOwners(i);
1176       if (!anOwner.IsNull())
1177         theOwnersToSelect.Add(anOwner);
1178     }
1179   }
1180
1181   // 2. found the feature results's owners
1182   std::list<ResultPtr> aResults = theFeature->results();
1183   std::list<ResultPtr>::const_iterator aIt;
1184   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
1185   {
1186     ResultPtr aResult = *aIt;
1187     AISObjectPtr aAISObj = aDisplayer->getAISObject(aResult);
1188     if (aAISObj.get() == NULL)
1189       continue; 
1190     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1191
1192     SelectMgr_IndexedMapOfOwner aSelectedOwners;  
1193     aConnector->workshop()->selector()->selection()->entityOwners(anAISIO, aSelectedOwners);
1194     for  ( Standard_Integer i = 1, n = aSelectedOwners.Extent(); i <= n; i++ ) {
1195       Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast(aSelectedOwners(i));
1196       if ( anOwner.IsNull() || !anOwner->HasShape() )
1197         continue;
1198       const TopoDS_Shape& aShape = anOwner->Shape();
1199       TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
1200       if (aShapeType == TopAbs_VERTEX) {
1201         AttributePtr aPntAttr = PartSet_Tools::findAttributeBy2dPoint(theFeature, aShape, theSketch);
1202         if (aPntAttr.get() != NULL &&
1203             aSelectedAttributes.find(aPntAttr) != aSelectedAttributes.end()) {
1204           theOwnersToSelect.Add(anOwner);
1205         }
1206       }
1207       else if (aShapeType == TopAbs_EDGE) {
1208         bool aFound = aSelectedResults.find(aResult) != aSelectedResults.end();
1209         if (aSelectedResults.find(aResult) != aSelectedResults.end() &&
1210             theOwnersToSelect.FindIndex(anOwner) <= 0)
1211           theOwnersToSelect.Add(anOwner);
1212       }
1213     }
1214   }
1215 }
1216
1217 void PartSet_SketcherMgr::connectToPropertyPanel(ModuleBase_ModelWidget* theWidget, const bool isToConnect)
1218 {
1219   if (isToConnect) {
1220     connect(theWidget, SIGNAL(beforeValuesChanged()),
1221             this, SLOT(onBeforeValuesChangedInPropertyPanel()));
1222     connect(theWidget, SIGNAL(afterValuesChanged()),
1223             this, SLOT(onAfterValuesChangedInPropertyPanel()));
1224   }
1225   else {
1226     disconnect(theWidget, SIGNAL(beforeValuesChanged()),
1227                 this, SLOT(onBeforeValuesChangedInPropertyPanel()));
1228     disconnect(theWidget, SIGNAL(afterValuesChanged()),
1229                 this, SLOT(onAfterValuesChangedInPropertyPanel()));
1230   }
1231 }
1232
1233 void PartSet_SketcherMgr::widgetStateChanged(int thePreviousState)
1234 {
1235   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1236                                                                            (getCurrentOperation());
1237   if (aFOperation) {
1238     if (PartSet_SketcherMgr::isSketchOperation(aFOperation) ||
1239         PartSet_SketcherMgr::isNestedSketchOperation(aFOperation) &&
1240         thePreviousState == ModuleBase_ModelWidget::ModifiedInPP) {
1241       FeaturePtr aFeature = aFOperation->feature();
1242       visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature));
1243     }
1244   }
1245 }
1246
1247 ModuleBase_Operation* PartSet_SketcherMgr::getCurrentOperation() const
1248 {
1249   return myModule->workshop()->currentOperation();
1250 }
1251
1252 //**************************************************************
1253 ModuleBase_ModelWidget* PartSet_SketcherMgr::getActiveWidget() const
1254 {
1255   ModuleBase_ModelWidget* aWidget = 0;
1256   ModuleBase_Operation* anOperation = getCurrentOperation();
1257   if (anOperation) {
1258     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
1259     if (aPanel)
1260       aWidget = aPanel->activeWidget();
1261   }
1262   return aWidget;
1263 }
1264
1265 void PartSet_SketcherMgr::visualizeFeature(const FeaturePtr& theFeature,
1266                                            const bool isEditOperation,
1267                                            const bool isToDisplay,
1268                                            const bool isFlushRedisplay)
1269 {
1270   #ifdef DEBUG_DO_NOT_BY_ENTER
1271   return;
1272   #endif
1273
1274   if (isEditOperation || !theFeature.get())
1275     return;
1276
1277   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1278   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1279
1280   // 1. change visibility of the object itself, here the presentable object is processed,
1281   // e.g. constraints features
1282   //FeaturePtr aFeature = aFOperation->feature();
1283   std::list<ResultPtr> aResults = theFeature->results();
1284   if (isToDisplay)
1285     theFeature->setDisplayed(true);
1286   else
1287     theFeature->setDisplayed(false);
1288
1289   // change visibility of the object results, e.g. non-constraint features
1290   std::list<ResultPtr>::const_iterator aIt;
1291   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
1292     if (isToDisplay) {
1293       (*aIt)->setDisplayed(true);
1294     }
1295     else {
1296       (*aIt)->setDisplayed(false);
1297     }
1298   }
1299   if (isFlushRedisplay)
1300     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1301 }
1302
1303 void PartSet_SketcherMgr::storeSelection(const bool theHighlightedOnly)
1304 {
1305   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1306   ModuleBase_ISelection* aSelect = aWorkshop->selection();
1307   QList<ModuleBase_ViewerPrs> aHighlighted = aSelect->getHighlighted();
1308
1309   QList<FeaturePtr> aFeatureList;
1310   if (theHighlightedOnly) {
1311     fillFeatureList(aHighlighted, myCurrentSketch, aFeatureList);
1312   }
1313   else {
1314     fillFeatureList(aHighlighted, myCurrentSketch, aFeatureList);
1315
1316     QList<ModuleBase_ViewerPrs> aSelected = aSelect->getSelected(ModuleBase_ISelection::AllControls);
1317     fillFeatureList(aSelected, myCurrentSketch, aFeatureList);
1318   }
1319
1320   // 1. it is necessary to save current selection in order to restore it after the features moving
1321   myCurrentSelection.clear();
1322   QList<FeaturePtr>::const_iterator anIt = aFeatureList.begin(), aLast = aFeatureList.end();
1323   for (; anIt != aLast; anIt++) {
1324     getCurrentSelection(*anIt, myCurrentSketch, aWorkshop, myCurrentSelection);
1325   }
1326   //qDebug(QString("  storeSelection: %1").arg(myCurrentSelection.size()).toStdString().c_str());
1327 }
1328
1329 void PartSet_SketcherMgr::restoreSelection()
1330 {
1331   //qDebug(QString("restoreSelection: %1").arg(myCurrentSelection.size()).toStdString().c_str());
1332   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1333   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1334   FeatureToSelectionMap::const_iterator aSIt = myCurrentSelection.begin(),
1335                                         aSLast = myCurrentSelection.end();
1336   SelectMgr_IndexedMapOfOwner anOwnersToSelect;
1337   for (; aSIt != aSLast; aSIt++) {
1338     anOwnersToSelect.Clear();
1339     getSelectionOwners(aSIt.key(), myCurrentSketch, aWorkshop, myCurrentSelection,
1340                         anOwnersToSelect);
1341     aConnector->workshop()->selector()->setSelectedOwners(anOwnersToSelect, false);
1342   }
1343 }
1344
1345 void PartSet_SketcherMgr::onShowConstraintsToggle(bool theOn)
1346 {
1347   if (myIsConstraintsShown == theOn)
1348     return;
1349   if (myCurrentSketch.get() == NULL)
1350     return;
1351
1352   myIsConstraintsShown = theOn;
1353
1354   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1355   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1356
1357   const QStringList& aConstrIds = constraintsIdList();
1358   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
1359     FeaturePtr aSubFeature = myCurrentSketch->subFeature(i);
1360     if (aConstrIds.contains(QString(aSubFeature->getKind().c_str()))) {
1361       if (myIsConstraintsShown) 
1362         aSubFeature->setDisplayed(true);
1363       else
1364         aSubFeature->setDisplayed(false);
1365     }
1366   }
1367   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1368 }
1369
1370 XGUI_OperationMgr* PartSet_SketcherMgr::operationMgr() const
1371 {
1372   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
1373   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
1374   XGUI_Workshop* aWorkshop = aConnector->workshop();
1375
1376   return aWorkshop->operationMgr();
1377 }