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