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