Salome HOME
Issue #1005: To improve user-friendship of error-messages for features and attributes
[modules/shaper.git] / src / PartSet / PartSet_SketcherMgr.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_SketcherMgr.cpp
4 // Created:     19 Dec 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "PartSet_SketcherMgr.h"
8 #include "PartSet_SketcherReetntrantMgr.h"
9 #include "PartSet_Module.h"
10 #include "PartSet_MouseProcessor.h"
11 #include "PartSet_Tools.h"
12 #include "PartSet_WidgetSketchLabel.h"
13 #include "PartSet_WidgetEditor.h"
14 #include "PartSet_ResultSketchPrs.h"
15
16 #include <XGUI_ModuleConnector.h>
17 #include <XGUI_Displayer.h>
18 #include <XGUI_Workshop.h>
19 #include <XGUI_ContextMenuMgr.h>
20 #include <XGUI_Selection.h>
21 #include <XGUI_SelectionMgr.h>
22 #include <XGUI_ModuleConnector.h>
23 #include <XGUI_PropertyPanel.h>
24 #include <XGUI_ViewerProxy.h>
25 #include <XGUI_OperationMgr.h>
26 #include <XGUI_ErrorMgr.h>
27 #include <XGUI_Tools.h>
28
29 #include <ModuleBase_IPropertyPanel.h>
30 #include <ModuleBase_ISelection.h>
31 #include <ModuleBase_IViewer.h>
32 #include <ModuleBase_IWorkshop.h>
33 #include <ModuleBase_IViewWindow.h>
34 #include <ModuleBase_ModelWidget.h>
35 #include <ModuleBase_Operation.h>
36 #include <ModuleBase_OperationFeature.h>
37 #include <ModuleBase_Operation.h>
38 #include <ModuleBase_WidgetEditor.h>
39 #include <ModuleBase_ViewerPrs.h>
40 #include <ModuleBase_Tools.h>
41 #include <ModuleBase_ResultPrs.h>
42
43 #include <GeomDataAPI_Point2D.h>
44
45 #include <Events_Loop.h>
46
47 #include <SketchPlugin_Line.h>
48 #include <SketchPlugin_Sketch.h>
49 #include <SketchPlugin_Point.h>
50 #include <SketchPlugin_Arc.h>
51 #include <SketchPlugin_Circle.h>
52 #include <SketchPlugin_ConstraintLength.h>
53 #include <SketchPlugin_ConstraintDistance.h>
54 #include <SketchPlugin_ConstraintParallel.h>
55 #include <SketchPlugin_ConstraintPerpendicular.h>
56 #include <SketchPlugin_ConstraintRadius.h>
57 #include <SketchPlugin_ConstraintRigid.h>
58 #include <SketchPlugin_ConstraintHorizontal.h>
59 #include <SketchPlugin_ConstraintVertical.h>
60 #include <SketchPlugin_ConstraintEqual.h>
61 #include <SketchPlugin_ConstraintTangent.h>
62 #include <SketchPlugin_ConstraintCoincidence.h>
63 #include <SketchPlugin_ConstraintFillet.h>
64 #include <SketchPlugin_ConstraintMirror.h>
65 #include <SketchPlugin_ConstraintAngle.h>
66 #include <SketchPlugin_ConstraintCollinear.h>
67 #include <SketchPlugin_ConstraintMiddle.h>
68 #include <SketchPlugin_MultiRotation.h>
69 #include <SketchPlugin_MultiTranslation.h>
70 #include <SketchPlugin_IntersectionPoint.h>
71
72 #include <SketcherPrs_Tools.h>
73
74 #include <SelectMgr_IndexedMapOfOwner.hxx>
75 #include <StdSelect_BRepOwner.hxx>
76
77 //#include <AIS_DimensionSelectionMode.hxx>
78 #include <AIS_Shape.hxx>
79 #include <AIS_Dimension.hxx>
80
81 #include <ModelAPI_Events.h>
82 #include <ModelAPI_Session.h>
83 #include <ModelAPI_AttributeString.h>
84
85 #include <ModelAPI_Validator.h>
86 #include <ModelAPI_Tools.h>
87
88 #include <QMouseEvent>
89 #include <QApplication>
90 #include <QCursor>
91 #include <QMessageBox>
92 #include <QMainWindow>
93
94 //#define DEBUG_DO_NOT_BY_ENTER
95 //#define DEBUG_SKETCHER_ENTITIES
96 //#define DEBUG_SKETCH_ENTITIES_ON_MOVE
97
98 //#define DEBUG_CURSOR
99
100 /// Fills attribute and result lists by the selected owner. In case if the attribute is found,
101 /// by the owner shape, it is put to the list. Otherwise if type of owner shape is edge,
102 /// put the function result as is to the list of results.
103 /// \param theOwner a viewer selected owner
104 /// \param theFeature a feature, where the attribute is searched
105 /// \param theSketch a current sketch
106 /// \param theSelectedAttribute an output list of attributes
107 /// \param theSelectedResults an output list of edge results
108 void getAttributesOrResults(const Handle(SelectMgr_EntityOwner)& theOwner,
109                             const FeaturePtr& theFeature, const FeaturePtr& theSketch,
110                             const ResultPtr& theResult,
111                             std::set<AttributePtr>& aSelectedAttributes,
112                             std::set<ResultPtr>& aSelectedResults)
113 {
114   Handle(StdSelect_BRepOwner) aBRepOwner = Handle(StdSelect_BRepOwner)::DownCast(theOwner);
115   if (aBRepOwner.IsNull())
116     return;
117   Handle(AIS_InteractiveObject) anIO = Handle(AIS_InteractiveObject)::DownCast(
118                                                                     aBRepOwner->Selectable());
119   if (aBRepOwner->HasShape()) {
120     const TopoDS_Shape& aShape = aBRepOwner->Shape();
121     TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
122     if (aShapeType == TopAbs_VERTEX) {
123       AttributePtr aPntAttr = PartSet_Tools::findAttributeBy2dPoint(theFeature,
124                                                                     aShape, theSketch);
125       if (aPntAttr.get() != NULL)
126         aSelectedAttributes.insert(aPntAttr);
127     }
128     else if (aShapeType == TopAbs_EDGE &&
129              aSelectedResults.find(theResult) == aSelectedResults.end()) {
130       aSelectedResults.insert(theResult);
131     }
132   }
133 }
134
135 PartSet_SketcherMgr::PartSet_SketcherMgr(PartSet_Module* theModule)
136   : QObject(theModule), myModule(theModule), myIsDragging(false), myDragDone(false),
137     myIsMouseOverWindow(false),
138     myIsMouseOverViewProcessed(true), myPreviousUpdateViewerEnabled(true),
139     myIsPopupMenuActive(false)
140 {
141   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
142   ModuleBase_IViewer* aViewer = anIWorkshop->viewer();
143
144   myPreviousDrawModeEnabled = true;//aViewer->isSelectionEnabled();
145
146   connect(aViewer, SIGNAL(mousePress(ModuleBase_IViewWindow*, QMouseEvent*)),
147           this, SLOT(onMousePressed(ModuleBase_IViewWindow*, QMouseEvent*)));
148
149   connect(aViewer, SIGNAL(mouseRelease(ModuleBase_IViewWindow*, QMouseEvent*)),
150           this, SLOT(onMouseReleased(ModuleBase_IViewWindow*, QMouseEvent*)));
151
152   connect(aViewer, SIGNAL(mouseMove(ModuleBase_IViewWindow*, QMouseEvent*)),
153           this, SLOT(onMouseMoved(ModuleBase_IViewWindow*, QMouseEvent*)));
154
155   connect(aViewer, SIGNAL(mouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)),
156           this, SLOT(onMouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)));
157
158   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
159   XGUI_Workshop* aWorkshop = aConnector->workshop();
160   connect(aWorkshop, SIGNAL(applicationStarted()), this, SLOT(onApplicationStarted()));
161
162   myIsConstraintsShown[PartSet_Tools::Geometrical] = true;
163   myIsConstraintsShown[PartSet_Tools::Dimensional] = true;
164   myIsConstraintsShown[PartSet_Tools::Expressions] = false;
165 }
166
167 PartSet_SketcherMgr::~PartSet_SketcherMgr()
168 {
169   if (!myPlaneFilter.IsNull())
170     myPlaneFilter.Nullify();
171 }
172
173 void PartSet_SketcherMgr::onEnterViewPort()
174 {
175   // 1. if the mouse over window, update the next flag. Do not perform update visibility of
176   // created feature because it should be done in onMouseMove(). Some widgets watch
177   // the mouse move and use the cursor position to update own values. If the presentaion is
178   // redisplayed before this update, the feature presentation jumps from reset value to current.
179   myIsMouseOverWindow = true;
180
181   #ifdef DEBUG_DO_NOT_BY_ENTER
182   return;
183   #endif
184
185   if (canChangeCursor(getCurrentOperation())) {
186     QCursor* aCurrentCursor = QApplication::overrideCursor();
187     if (!aCurrentCursor || aCurrentCursor->shape() != Qt::CrossCursor) {
188       QApplication::setOverrideCursor(QCursor(Qt::CrossCursor));
189 #ifdef DEBUG_CURSOR
190       qDebug("onEnterViewPort() : Qt::CrossCursor");
191 #endif
192     }
193   }
194
195   if (!isNestedCreateOperation(getCurrentOperation(), activeSketch()))
196     return;
197
198   operationMgr()->onValidateOperation();
199
200   // we need change displayed state of the current operation feature
201   // if the feature is presentable, e.g. distance construction. It has no results, so workshop does
202   // not accept a signal about the result created. Nothing is shown until mouse is moved out/in view
203   // port. If the isDisplayed flag is true, the presentable feature is displayed as soon as the
204   // presentation becomes valid and redisplay happens
205   //ModuleBase_Operation* aOperation = getCurrentOperation();
206   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
207                                                                            (getCurrentOperation());
208   if (aFOperation) {
209     FeaturePtr aFeature = aFOperation->feature();
210     if (aFeature.get() && aFeature->data()->isValid()) {
211       visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature), false);
212     }
213   }
214 }
215
216 void PartSet_SketcherMgr::onLeaveViewPort()
217 {
218   myIsMouseOverViewProcessed = false;
219   myIsMouseOverWindow = false;
220
221   #ifdef DEBUG_DO_NOT_BY_ENTER
222   return;
223   #endif
224
225   if (canChangeCursor(getCurrentOperation())) {
226     QApplication::restoreOverrideCursor();
227 #ifdef DEBUG_CURSOR
228     qDebug("onLeaveViewPort() : None");
229 #endif
230   }
231
232   if (!isNestedCreateOperation(getCurrentOperation(), activeSketch()))
233     return;
234
235   // the method should be performed if the popup menu is called,
236   // the reset of the current widget should not happen
237   if (myIsPopupMenuActive)
238     return;
239
240   // it is important to validate operation here only if sketch entity create operation is active
241   // because at this operation we reacts to the mouse leave/enter view port
242   operationMgr()->onValidateOperation();
243
244   // 2. if the mouse IS NOT over window, reset the active widget value and hide the presentation
245   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
246   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
247   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
248   // disable the viewer update in order to avoid visualization of redisplayed feature in viewer
249   // obtained after reset value
250   bool isEnableUpdateViewer = aDisplayer->enableUpdateViewer(false);
251   ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
252   if (anActiveWidget)
253     anActiveWidget->reset();
254
255   // hides the presentation of the current operation feature
256   // the feature is to be erased here, but it is correct to call canDisplayObject because
257   // there can be additional check (e.g. editor widget in distance constraint)
258   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
259                                                                            (getCurrentOperation());
260   if (aFOperation) {
261     FeaturePtr aFeature = aFOperation->feature();
262     visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature));
263   }
264   // we should update viewer after the presentation are hidden in the viewer
265   // otherwise the reset presentation(line) appears in the viewer(by quick move from viewer to PP)
266   aDisplayer->enableUpdateViewer(isEnableUpdateViewer);
267 }
268
269 void PartSet_SketcherMgr::onBeforeValuesChangedInPropertyPanel()
270 {
271   if (!isNestedEditOperation(getCurrentOperation(), myModule->sketchMgr()->activeSketch()) ||
272       myModule->sketchReentranceMgr()->isInternalEditActive())
273     return;
274   // it is necessary to save current selection in order to restore it after the values are modifed
275   storeSelection();
276
277   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
278   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
279   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
280   myPreviousUpdateViewerEnabled = aDisplayer->enableUpdateViewer(false);
281 }
282
283 void PartSet_SketcherMgr::onAfterValuesChangedInPropertyPanel()
284 {
285   if (!isNestedEditOperation(getCurrentOperation(), myModule->sketchMgr()->activeSketch()) ||
286       myModule->sketchReentranceMgr()->isInternalEditActive()) {
287     myModule->sketchReentranceMgr()->updateInternalEditActiveState();
288     return;
289   }
290   // it is necessary to restore current selection in order to restore it after values are modified
291   restoreSelection();
292   myCurrentSelection.clear();
293
294   // 3. the flag to disable the update viewer should be set in order to avoid blinking in the
295   // viewer happens by deselect/select the modified objects. The flag should be restored after
296   // the selection processing. The update viewer should be also called.
297   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
298   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
299   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
300   aDisplayer->enableUpdateViewer(myPreviousUpdateViewerEnabled);
301   aDisplayer->updateViewer();
302
303
304 }
305
306 void PartSet_SketcherMgr::onMousePressed(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
307 {
308   if (myModule->sketchReentranceMgr()->processMousePressed(theWnd, theEvent))
309     return;
310
311   //get2dPoint(theWnd, theEvent, myClickedPoint);
312
313   if (!(theEvent->buttons() & Qt::LeftButton))
314     return;
315
316   // Clear dragging mode
317   myIsDragging = false;
318
319   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
320   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
321   if (!aViewer->canDragByMouse())
322     return;
323
324   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
325                                                                (getCurrentOperation());
326   if (!aFOperation)
327     return;
328
329   if (aFOperation->isEditOperation()) {
330     // If the current widget is a selector, do nothing, it processes the mouse press
331     ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
332     if(anActiveWidget && anActiveWidget->isViewerSelector()) {
333       return;
334     }
335   }
336
337   // Use only for sketch operations
338   if (myCurrentSketch) {
339     if (!PartSet_Tools::sketchPlane(myCurrentSketch))
340       return;
341
342     bool isSketcher = isSketchOperation(aFOperation);
343     bool isSketchOpe = isNestedSketchOperation(aFOperation);
344
345     // Avoid non-sketch operations
346     if ((!isSketchOpe) && (!isSketcher))
347       return;
348
349     bool isEditing = aFOperation->isEditOperation();
350
351     // Ignore creation sketch operation
352     if ((!isSketcher) && (!isEditing))
353       return;
354
355     Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
356     // Remember highlighted objects for editing
357     ModuleBase_ISelection* aSelect = aWorkshop->selection();
358
359     bool aHasShift = (theEvent->modifiers() & Qt::ShiftModifier);
360     storeSelection(!aHasShift);
361
362     if (myCurrentSelection.empty()) {
363       if (isSketchOpe && (!isSketcher))
364         // commit previous operation
365         if (!aFOperation->commit())
366           aFOperation->abort();
367       return;
368     }
369     // Init flyout point for radius rotation
370     FeaturePtr aFeature = myCurrentSelection.begin().key();
371
372     get2dPoint(theWnd, theEvent, myCurrentPoint);
373     if (isSketcher) {
374       myIsDragging = true;
375       myDragDone = false;
376
377       myPreviousDrawModeEnabled = aViewer->enableDrawMode(false);
378       // selection should be restored before edit operation start to process the
379       // selected entities, e.g. selection of point(attribute on a line) should edit the point
380       restoreSelection();
381       launchEditing();
382       if (aFeature.get() != NULL) {
383         std::shared_ptr<SketchPlugin_Feature> aSPFeature =
384                   std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
385         if (aSPFeature.get() &&
386           (aSPFeature->getKind() == SketchPlugin_ConstraintRadius::ID() ||
387            aSPFeature->getKind() == SketchPlugin_ConstraintAngle::ID())) {
388           DataPtr aData = aSPFeature->data();
389           AttributePtr aAttr = aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT());
390           std::shared_ptr<GeomDataAPI_Point2D> aFPAttr =
391             std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aAttr);
392           aFPAttr->setValue(myCurrentPoint.myCurX, myCurrentPoint.myCurY);
393         }
394       }
395     } else if (isSketchOpe && isEditing) {
396       // If selected another object commit current result
397       aFOperation->commit();
398
399       myIsDragging = true;
400       myDragDone = false;
401
402       myPreviousDrawModeEnabled = aViewer->enableDrawMode(false);
403       // selection should be restored before edit operation start to process the
404       // selected entities, e.g. selection of point(attribute on a line) should edit the point
405       restoreSelection();
406       launchEditing();
407       if (aFeature.get() != NULL) {
408         std::shared_ptr<SketchPlugin_Feature> aSPFeature =
409                   std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
410         if (aSPFeature.get() &&
411           (aSPFeature->getKind() == SketchPlugin_ConstraintRadius::ID() ||
412            aSPFeature->getKind() == SketchPlugin_ConstraintAngle::ID())) {
413           DataPtr aData = aSPFeature->data();
414           AttributePtr aAttr = aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT());
415           std::shared_ptr<GeomDataAPI_Point2D> aFPAttr =
416             std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aAttr);
417           aFPAttr->setValue(myCurrentPoint.myCurX, myCurrentPoint.myCurY);
418         }
419       }
420       restoreSelection();
421     }
422   }
423 }
424
425 void PartSet_SketcherMgr::onMouseReleased(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
426 {
427   if (myModule->sketchReentranceMgr()->processMouseReleased(theWnd, theEvent))
428     return;
429
430   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
431   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
432   if (!aViewer->canDragByMouse())
433     return;
434   ModuleBase_Operation* aOp = getCurrentOperation();
435   if (aOp) {
436     if (isNestedSketchOperation(aOp)) {
437       // Only for sketcher operations
438       if (myIsDragging) {
439         if (myDragDone) {
440           myCurrentSelection.clear();
441         }
442       }
443     }
444   }
445
446   aWorkshop->viewer()->enableDrawMode(myPreviousDrawModeEnabled);
447   myIsDragging = false;
448
449   ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
450   PartSet_MouseProcessor* aProcessor = dynamic_cast<PartSet_MouseProcessor*>(anActiveWidget);
451   if (aProcessor)
452     aProcessor->mouseReleased(theWnd, theEvent);
453 }
454
455 void PartSet_SketcherMgr::onMouseMoved(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
456 {
457 #ifdef DEBUG_SKETCH_ENTITIES_ON_MOVE
458   CompositeFeaturePtr aSketch = activeSketch();
459   if (aSketch.get()) {
460     std::cout << "mouse move SKETCH FEATURES [" << aSketch->numberOfSubs() << "]:" << std::endl;
461     QStringList anInfo;
462     for (int i = 0, aNbSubs = aSketch->numberOfSubs(); i < aNbSubs; i++) {
463       //std::cout << getFeatureInfo(aSketch->subFeature(i), false) << std::endl;
464       anInfo.append(ModuleBase_Tools::objectInfo(aSketch->subFeature(i)));
465     }
466     QString anInfoStr = anInfo.join("\n");
467     qDebug(QString("%1").arg(anInfo.size()).arg(anInfoStr).toStdString().c_str());
468   }
469 #endif
470
471   if (myModule->sketchReentranceMgr()->processMouseMoved(theWnd, theEvent))
472     return;
473
474   if (isNestedCreateOperation(getCurrentOperation(), activeSketch())) {
475     // 1. perform the widget mouse move functionality and display the presentation
476     // the mouse move should be processed in the widget, if it can in order to visualize correct
477     // presentation. These widgets correct the feature attribute according to the mouse position
478     ModuleBase_ModelWidget* anActiveWidget = myModule->activeWidget();
479     PartSet_MouseProcessor* aProcessor = dynamic_cast<PartSet_MouseProcessor*>(anActiveWidget);
480     if (aProcessor)
481       aProcessor->mouseMoved(theWnd, theEvent);
482     if (!myIsMouseOverViewProcessed) {
483       myIsMouseOverViewProcessed = true;
484
485       // the feature is to be erased here, but it is correct to call canDisplayObject because
486       // there can be additional check (e.g. editor widget in distance constraint)
487       ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
488                                                  (getCurrentOperation());
489       if (aFOperation) {
490         FeaturePtr aFeature = aFOperation->feature();
491         visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature));
492       }
493     }
494   }
495   //myClickedPoint.clear();
496
497   if (myIsDragging) {
498     // 1. the current selection is saved in the mouse press method in order to restore it after
499     //    moving
500     // 2. the enable selection in the viewer should be temporary switched off in order to ignore
501     // mouse press signal in the viewer(it call Select for AIS context and the dragged objects are
502     // deselected). This flag should be restored in the slot, processed the mouse release signal.
503
504     ModuleBase_Operation* aCurrentOperation = getCurrentOperation();
505     if (!aCurrentOperation)
506       return;
507     if (isSketchOperation(aCurrentOperation))
508       return; // No edit operation activated
509
510     Handle(V3d_View) aView = theWnd->v3dView();
511     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
512     Point aMousePnt;
513     get2dPoint(theWnd, theEvent, aMousePnt);
514     double dX =  aMousePnt.myCurX - myCurrentPoint.myCurX;
515     double dY =  aMousePnt.myCurY - myCurrentPoint.myCurY;
516
517     ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
518     XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
519     XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
520     // 3. the flag to disable the update viewer should be set in order to avoid blinking in the
521     // viewer happens by deselect/select the modified objects. The flag should be restored after
522     // the selection processing. The update viewer should be also called.
523     bool isEnableUpdateViewer = aDisplayer->enableUpdateViewer(false);
524
525     static Events_ID aMoveEvent = Events_Loop::eventByName(EVENT_OBJECT_MOVED);
526     //static Events_ID aUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
527     FeatureToSelectionMap::const_iterator anIt = myCurrentSelection.begin(),
528                                           aLast = myCurrentSelection.end();
529     // 4. the features and attributes modification(move)
530     bool isModified = false;
531     for (; anIt != aLast; anIt++) {
532       FeaturePtr aFeature = anIt.key();
533
534       std::set<AttributePtr> anAttributes = anIt.value().first;
535       // Process selection by attribute: the priority to the attribute
536       if (!anAttributes.empty()) {
537         std::set<AttributePtr>::const_iterator anAttIt = anAttributes.begin(),
538                                                anAttLast = anAttributes.end();
539         for (; anAttIt != anAttLast; anAttIt++) {
540           AttributePtr anAttr = *anAttIt;
541           if (anAttr.get() == NULL)
542             continue;
543           std::string aAttrId = anAttr->id();
544           DataPtr aData = aFeature->data();
545           if (aData->isValid()) {
546             std::shared_ptr<GeomDataAPI_Point2D> aPoint =
547               std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(aAttrId));
548             if (aPoint.get() != NULL) {
549               bool isImmutable = aPoint->setImmutable(true);
550               aPoint->move(dX, dY);
551               isModified = true;
552               ModelAPI_EventCreator::get()->sendUpdated(aFeature, aMoveEvent);
553               aPoint->setImmutable(isImmutable);
554             }
555           }
556         }
557       } else {
558         // Process selection by feature
559         std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
560           std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
561         if (aSketchFeature) {
562           aSketchFeature->move(dX, dY);
563           isModified = true;
564           ModelAPI_EventCreator::get()->sendUpdated(aSketchFeature, aMoveEvent);
565         }
566       }
567     }
568     // the modified state of the current operation should be updated if there are features, which
569     // were changed here
570     if (isModified) {
571       aCurrentOperation->onValuesChanged();
572     }
573     Events_Loop::loop()->flush(aMoveEvent); // up all move events - to be processed in the solver
574     //Events_Loop::loop()->flush(aUpdateEvent); // up update events - to redisplay presentations
575
576     // 5. it is necessary to save current selection in order to restore it after the features moving
577     restoreSelection();
578     // 6. restore the update viewer flag and call this update
579     aDisplayer->enableUpdateViewer(isEnableUpdateViewer);
580     aDisplayer->updateViewer();
581
582     myDragDone = true;
583     myCurrentPoint = aMousePnt;
584   }
585 }
586
587 void PartSet_SketcherMgr::onMouseDoubleClick(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
588 {
589   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
590                                                                (getCurrentOperation());
591   if (aFOperation && aFOperation->isEditOperation()) {
592     std::string aId = aFOperation->id().toStdString();
593     if (isDistanceOperation(aFOperation))
594     {
595       // Activate dimension value editing on double click
596       ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
597       QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
598       // Find corresponded widget to activate value editing
599       foreach (ModuleBase_ModelWidget* aWgt, aWidgets) {
600         if (aWgt->attributeID() == SketchPlugin_Constraint::VALUE() ||
601             aWgt->attributeID() == SketchPlugin_ConstraintAngle::ANGLE_VALUE_ID()) {
602           PartSet_WidgetEditor* anEditor = dynamic_cast<PartSet_WidgetEditor*>(aWgt);
603           if (anEditor)
604             anEditor->showPopupEditor();
605           return;
606         }
607       }
608     }
609   }
610 }
611
612 void PartSet_SketcherMgr::onApplicationStarted()
613 {
614   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
615   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
616   XGUI_Workshop* aWorkshop = aConnector->workshop();
617   PartSet_SketcherReetntrantMgr* aReentranceMgr = myModule->sketchReentranceMgr();
618
619   XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
620   if (aPropertyPanel) {
621     //connect(aPropertyPanel, SIGNAL(beforeWidgetActivated(ModuleBase_ModelWidget*)),
622     //        this, SLOT(onBeforeWidgetActivated(ModuleBase_ModelWidget*)));
623
624     connect(aPropertyPanel, SIGNAL(noMoreWidgets(const std::string&)),
625             aReentranceMgr, SLOT(onNoMoreWidgets(const std::string&)));
626     connect(aPropertyPanel, SIGNAL(widgetActivated(ModuleBase_ModelWidget*)),
627             aReentranceMgr, SLOT(onWidgetActivated()));
628   }
629
630   XGUI_ViewerProxy* aViewerProxy = aWorkshop->viewer();
631   connect(aViewerProxy, SIGNAL(enterViewPort()), this, SLOT(onEnterViewPort()));
632   connect(aViewerProxy, SIGNAL(leaveViewPort()), this, SLOT(onLeaveViewPort()));
633
634   XGUI_ContextMenuMgr* aContextMenuMgr = aWorkshop->contextMenuMgr();
635   connect(aContextMenuMgr, SIGNAL(beforeContextMenu()), this, SLOT(onBeforeContextMenu()));
636   connect(aContextMenuMgr, SIGNAL(afterContextMenu()), this, SLOT(onAfterContextMenu()));
637 }
638
639 //void PartSet_SketcherMgr::onBeforeWidgetActivated(ModuleBase_ModelWidget* theWidget)
640 //{
641   //if (!myClickedPoint.myIsInitialized)
642   //  return;
643
644   //ModuleBase_Operation* aOperation = getCurrentOperation();
645   // the distance constraint feature should not use the clickedd point
646   // this is workaround in order to don't throw down the flyout point value,
647   // set by execute() method of these type of features
648   //if (isDistanceOperation(aOperation))
649   //  return;
650
651   //PartSet_WidgetPoint2D* aPnt2dWgt = dynamic_cast<PartSet_WidgetPoint2D*>(theWidget);
652   //if (aPnt2dWgt) {
653   //  aPnt2dWgt->setPoint(myClickedPoint.myCurX, myClickedPoint.myCurY);
654   //}
655 //}
656
657 void PartSet_SketcherMgr::onBeforeContextMenu()
658 {
659   myIsPopupMenuActive = true;
660 }
661
662 void PartSet_SketcherMgr::onAfterContextMenu()
663 {
664   myIsPopupMenuActive = false;
665 }
666
667 void PartSet_SketcherMgr::get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent,
668                                      Point& thePoint)
669 {
670   Handle(V3d_View) aView = theWnd->v3dView();
671   gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
672   double aX, anY;
673   PartSet_Tools::convertTo2D(aPoint, myCurrentSketch, aView, aX, anY);
674   thePoint.setValue(aX, anY);
675 }
676
677 void PartSet_SketcherMgr::launchEditing()
678 {
679   if (!myCurrentSelection.empty()) {
680     FeaturePtr aFeature = myCurrentSelection.begin().key();
681     std::shared_ptr<SketchPlugin_Feature> aSPFeature =
682               std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
683     if (aSPFeature && (!aSPFeature->isExternal())) {
684       myModule->editFeature(aSPFeature);
685     }
686   }
687 }
688
689 bool PartSet_SketcherMgr::sketchSolverError()
690 {
691   bool anError = false;
692   CompositeFeaturePtr aSketch = activeSketch();
693   if (aSketch.get()) {
694     AttributeStringPtr aAttributeString = aSketch->string(SketchPlugin_Sketch::SOLVER_ERROR());
695     anError = !aAttributeString->value().empty();
696   }
697   return anError;
698 }
699
700 QString PartSet_SketcherMgr::getFeatureError(const FeaturePtr& theFeature)
701 {
702   QString anError;
703   if (!theFeature.get() || !theFeature->data()->isValid())
704     return anError;
705
706   CompositeFeaturePtr aSketch = activeSketch();
707   if (aSketch.get() && aSketch == theFeature) {
708     std::string aSolverError = aSketch->string(SketchPlugin_Sketch::SOLVER_ERROR())->value();
709     anError = ModuleBase_Tools::translate(aSketch->getKind(), aSolverError);
710   }
711   return anError;
712 }
713
714 void PartSet_SketcherMgr::clearClickedFlags()
715 {
716   //myClickedPoint.clear();
717   myCurrentPoint.clear();
718 }
719
720 const QStringList& PartSet_SketcherMgr::replicationsIdList()
721 {
722   static QStringList aReplicationIds;
723   if (aReplicationIds.size() == 0) {
724     aReplicationIds << SketchPlugin_ConstraintMirror::ID().c_str();
725     aReplicationIds << SketchPlugin_MultiRotation::ID().c_str();
726     aReplicationIds << SketchPlugin_MultiTranslation::ID().c_str();
727   }
728   return aReplicationIds;
729 }
730
731 const QStringList& PartSet_SketcherMgr::constraintsIdList()
732 {
733   static QStringList aConstraintIds;
734   if (aConstraintIds.size() == 0) {
735     aConstraintIds << SketchPlugin_ConstraintLength::ID().c_str();
736     aConstraintIds << SketchPlugin_ConstraintDistance::ID().c_str();
737     aConstraintIds << SketchPlugin_ConstraintRigid::ID().c_str();
738     aConstraintIds << SketchPlugin_ConstraintRadius::ID().c_str();
739     aConstraintIds << SketchPlugin_ConstraintPerpendicular::ID().c_str();
740     aConstraintIds << SketchPlugin_ConstraintParallel::ID().c_str();
741     aConstraintIds << SketchPlugin_ConstraintHorizontal::ID().c_str();
742     aConstraintIds << SketchPlugin_ConstraintVertical::ID().c_str();
743     aConstraintIds << SketchPlugin_ConstraintEqual::ID().c_str();
744     aConstraintIds << SketchPlugin_ConstraintTangent::ID().c_str();
745     aConstraintIds << SketchPlugin_ConstraintCoincidence::ID().c_str();
746     aConstraintIds << SketchPlugin_ConstraintAngle::ID().c_str();
747     aConstraintIds << SketchPlugin_ConstraintCollinear::ID().c_str();
748     aConstraintIds << SketchPlugin_ConstraintMiddle::ID().c_str();
749     aConstraintIds << SketchPlugin_ConstraintMirror::ID().c_str();
750     aConstraintIds << SketchPlugin_MultiTranslation::ID().c_str();
751     aConstraintIds << SketchPlugin_MultiRotation::ID().c_str();
752   }
753   return aConstraintIds;
754 }
755
756 void PartSet_SketcherMgr::sketchSelectionModes(QIntList& theModes)
757 {
758   theModes.clear();
759
760   theModes.append(SketcherPrs_Tools::Sel_Dimension_Text);
761   theModes.append(SketcherPrs_Tools::Sel_Dimension_Line);
762   theModes.append(SketcherPrs_Tools::Sel_Constraint);
763   theModes.append(TopAbs_VERTEX);
764   theModes.append(TopAbs_EDGE);
765 }
766
767 Handle(AIS_InteractiveObject) PartSet_SketcherMgr::createPresentation(const ResultPtr& theResult)
768 {
769   Handle(AIS_InteractiveObject) aPrs;
770
771   FeaturePtr aFeature = ModelAPI_Feature::feature(theResult);
772   if (aFeature.get() && aFeature->getKind() == SketchPlugin_Sketch::ID()) {
773     aPrs = new PartSet_ResultSketchPrs(theResult);
774   }
775   return aPrs;
776 }
777
778 bool PartSet_SketcherMgr::isSketchOperation(ModuleBase_Operation* theOperation)
779 {
780   return theOperation && theOperation->id().toStdString() == SketchPlugin_Sketch::ID();
781 }
782
783 bool PartSet_SketcherMgr::isNestedSketchOperation(ModuleBase_Operation* theOperation) const
784 {
785   bool aNestedSketch = false;
786
787   FeaturePtr anActiveSketch = activeSketch();
788   if (anActiveSketch.get() && theOperation) {
789     ModuleBase_Operation* aSketchOperation = operationMgr()->findOperation(
790                                                               anActiveSketch->getKind().c_str());
791     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
792                                                                                   (theOperation);
793     if (aSketchOperation && aFOperation) {
794       FeaturePtr aFeature = aFOperation->feature();
795       if (aFeature.get()) {
796         QStringList aGrantedOpIds = aSketchOperation->grantedOperationIds();
797         aNestedSketch = aGrantedOpIds.contains(aFeature->getKind().c_str());
798       }
799     }
800   }
801   return aNestedSketch;
802 }
803
804 bool PartSet_SketcherMgr::isNestedCreateOperation(ModuleBase_Operation* theOperation,
805                                                   const CompositeFeaturePtr& theSketch) const
806 {
807   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
808                                                                (theOperation);
809   return aFOperation && !aFOperation->isEditOperation() &&
810          isNestedSketchOperation(aFOperation);
811 }
812
813 bool PartSet_SketcherMgr::isNestedEditOperation(ModuleBase_Operation* theOperation,
814                                                 const CompositeFeaturePtr& theSketch) const
815 {
816   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
817                                                                (theOperation);
818   return aFOperation && aFOperation->isEditOperation() &&
819     isNestedSketchOperation(aFOperation);
820 }
821
822 bool PartSet_SketcherMgr::isEntity(const std::string& theId)
823 {
824   return (theId == SketchPlugin_Line::ID()) ||
825          (theId == SketchPlugin_Point::ID()) ||
826          (theId == SketchPlugin_Arc::ID()) ||
827          (theId == SketchPlugin_Circle::ID());
828 }
829
830 bool PartSet_SketcherMgr::isDistanceOperation(ModuleBase_Operation* theOperation)
831 {
832   std::string anId = theOperation ? theOperation->id().toStdString() : "";
833
834   return isDistanceKind(anId);
835 }
836
837 bool PartSet_SketcherMgr::isDistanceKind(std::string& theKind)
838 {
839   return (theKind == SketchPlugin_ConstraintLength::ID()) ||
840          (theKind == SketchPlugin_ConstraintDistance::ID()) ||
841          (theKind == SketchPlugin_ConstraintRadius::ID()) ||
842          (theKind == SketchPlugin_ConstraintAngle::ID());
843 }
844
845 void PartSet_SketcherMgr::startSketch(ModuleBase_Operation* theOperation)
846 {
847   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
848                                                                (getCurrentOperation());
849   if (!aFOperation)
850     return;
851
852   myModule->onViewTransformed();
853
854   // Display all sketcher sub-Objects
855   myCurrentSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFOperation->feature());
856   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
857
858   // Hide sketcher result
859   std::list<ResultPtr> aResults = myCurrentSketch->results();
860   std::list<ResultPtr>::const_iterator aIt;
861   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
862     (*aIt)->setDisplayed(false);
863   }
864   myCurrentSketch->setDisplayed(false);
865
866   // Remove invalid sketch entities
867   std::set<FeaturePtr> anInvalidFeatures;
868   ModelAPI_ValidatorsFactory* aFactory = ModelAPI_Session::get()->validators();
869   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
870     FeaturePtr aFeature = myCurrentSketch->subFeature(i);
871     if (aFeature.get()) {
872       if (!aFactory->validate(aFeature))
873         anInvalidFeatures.insert(aFeature);
874     }
875   }
876   if (!anInvalidFeatures.empty()) {
877     std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
878     ModelAPI_Tools::findAllReferences(anInvalidFeatures, aReferences, false);
879
880     std::set<FeaturePtr>::const_iterator anIt = anInvalidFeatures.begin(),
881                                          aLast = anInvalidFeatures.end();
882     // separate features to references to parameter features and references to others
883     QStringList anInvalidFeatureNames;
884     for (; anIt != aLast; anIt++) {
885       FeaturePtr aFeature = *anIt;
886       if (aFeature.get())
887         anInvalidFeatureNames.append(aFeature->name().c_str());
888     }
889     std::string aPrefixInfo = QString("Invalid features of the sketch will be deleted: %1.\n\n").
890                                   arg(anInvalidFeatureNames.join(", ")).toStdString().c_str();
891     std::set<FeaturePtr> aFeatureRefsToDelete;
892     if (ModuleBase_Tools::askToDelete(anInvalidFeatures, aReferences, aConnector->desktop(),
893                                       aFeatureRefsToDelete, aPrefixInfo)) {
894       if (!aFeatureRefsToDelete.empty())
895         anInvalidFeatures.insert(aFeatureRefsToDelete.begin(), aFeatureRefsToDelete.end());
896       ModelAPI_Tools::removeFeatures(anInvalidFeatures, true);
897       Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
898       // TODO: call the next method in the XGUI_OperationMgr::onOperationStarted().
899       workshop()->errorMgr()->updateAcceptAllAction(myCurrentSketch);
900     }
901   }
902
903   // Display sketcher objects
904   QStringList anInfo;
905   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
906     FeaturePtr aFeature = myCurrentSketch->subFeature(i);
907 #ifdef DEBUG_SKETCHER_ENTITIES
908     anInfo.append(ModuleBase_Tools::objectInfo(aFeature));
909 #endif
910     std::list<ResultPtr> aResults = aFeature->results();
911     std::list<ResultPtr>::const_iterator aIt;
912     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
913       (*aIt)->setDisplayed(true);
914     }
915     aFeature->setDisplayed(true);
916   }
917 #ifdef DEBUG_SKETCHER_ENTITIES
918   QString anInfoStr = anInfo.join(";\t");
919   qDebug(QString("startSketch: %1, %2").arg(anInfo.size()).arg(anInfoStr).toStdString().c_str());
920 #endif
921
922   if(myCirclePointFilter.IsNull()) {
923     myCirclePointFilter = new PartSet_CirclePointFilter(myModule->workshop());
924   }
925
926   myModule->workshop()->viewer()->addSelectionFilter(myCirclePointFilter);
927
928   if (myPlaneFilter.IsNull())
929     myPlaneFilter = new ModuleBase_ShapeInPlaneFilter();
930
931   myModule->workshop()->viewer()->addSelectionFilter(myPlaneFilter);
932   bool aHasPlane = false;
933   std::shared_ptr<GeomAPI_Pln> aPln;
934   aPln = PartSet_Tools::sketchPlane(myCurrentSketch);
935   myPlaneFilter->setPlane(aPln);
936
937   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
938   // all displayed objects should be activated in current selection modes according to switched
939   // plane filter
940   if (aPln.get())
941     aConnector->activateModuleSelectionModes();
942 }
943
944 void PartSet_SketcherMgr::stopSketch(ModuleBase_Operation* theOperation)
945 {
946   myIsMouseOverWindow = false;
947   myIsConstraintsShown[PartSet_Tools::Geometrical] = true;
948   myIsConstraintsShown[PartSet_Tools::Dimensional] = true;
949   myIsConstraintsShown[PartSet_Tools::Expressions] = false;
950
951   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
952
953   DataPtr aData = myCurrentSketch->data();
954   if (!aData->isValid()) {
955     XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
956     // The sketch was aborted
957     myCurrentSketch = CompositeFeaturePtr();
958     // TODO: move this outside of if-else
959     myModule->workshop()->viewer()->removeSelectionFilter(myCirclePointFilter);
960     myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
961
962     // Erase all sketcher objects
963     QObjectPtrList aObjects = aDisplayer->displayedObjects();
964     foreach (ObjectPtr aObj, aObjects) {
965       DataPtr aObjData = aObj->data();
966       if (!aObjData->isValid())
967         aObj->setDisplayed(false);
968     }
969   }
970   else {
971     // Hide all sketcher sub-Objects
972     for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
973       FeaturePtr aFeature = myCurrentSketch->subFeature(i);
974       std::list<ResultPtr> aResults = aFeature->results();
975       std::list<ResultPtr>::const_iterator aIt;
976       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
977         (*aIt)->setDisplayed(false);
978       }
979       aFeature->setDisplayed(false);
980     }
981     // Display sketcher result
982     std::list<ResultPtr> aResults = myCurrentSketch->results();
983     std::list<ResultPtr>::const_iterator aIt;
984     Events_Loop* aLoop = Events_Loop::loop();
985     static Events_ID aDispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
986
987     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
988                                                                            (theOperation);
989     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
990       if (!aFOperation->isDisplayedOnStart(*aIt)) {
991         (*aIt)->setDisplayed(true);
992         // this display event is needed because sketch already may have "displayed" state,
993         // but not displayed while it is still active (issue 613, abort of existing sketch)
994         ModelAPI_EventCreator::get()->sendUpdated(*aIt, aDispEvent);
995       }
996     }
997     if (!aFOperation->isDisplayedOnStart(myCurrentSketch))
998       myCurrentSketch->setDisplayed(true);
999
1000     myCurrentSketch = CompositeFeaturePtr();
1001
1002     myModule->workshop()->viewer()->removeSelectionFilter(myCirclePointFilter);
1003     myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
1004
1005     Events_Loop::loop()->flush(aDispEvent);
1006   }
1007   // restore the module selection modes, which were changed on startSketch
1008   aConnector->activateModuleSelectionModes();
1009 }
1010
1011 void PartSet_SketcherMgr::startNestedSketch(ModuleBase_Operation* theOperation)
1012 {
1013   if (canChangeCursor(theOperation) && myIsMouseOverWindow) {
1014     QCursor* aCurrentCursor = QApplication::overrideCursor();
1015     if (!aCurrentCursor || aCurrentCursor->shape() != Qt::CrossCursor) {
1016       QApplication::setOverrideCursor(QCursor(Qt::CrossCursor));
1017 #ifdef DEBUG_CURSOR
1018       qDebug("startNestedSketch() : Qt::CrossCursor");
1019 #endif
1020     }
1021   }
1022 }
1023
1024 void PartSet_SketcherMgr::stopNestedSketch(ModuleBase_Operation* theOperation)
1025 {
1026   myIsMouseOverViewProcessed = true;
1027   operationMgr()->onValidateOperation();
1028   // when sketch nested operation is stopped the cursor should be restored unconditionally
1029   //if (canChangeCursor(theOperation)) {
1030     QApplication::restoreOverrideCursor();
1031 #ifdef DEBUG_CURSOR
1032     qDebug("stopNestedSketch() : None");
1033 #endif
1034   //}
1035   /// improvement to deselect automatically all eventual selected objects, when
1036   // returning to the neutral point of the Sketcher
1037   workshop()->selector()->clearSelection();
1038 }
1039
1040 void PartSet_SketcherMgr::commitNestedSketch(ModuleBase_Operation* theOperation)
1041 {
1042   if (isNestedCreateOperation(theOperation, activeSketch())) {
1043     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1044                                                                              (theOperation);
1045     if (aFOperation) {
1046       FeaturePtr aFeature = aFOperation->feature();
1047       // it is necessary to check the the feature data validity because
1048       // some kind of features are removed by an operation commit(the macro state of a feature)
1049       if (aFeature.get() && aFeature->data()->isValid()) {
1050         visualizeFeature(aFeature, aFOperation->isEditOperation(), true);
1051       }
1052     }
1053   }
1054 }
1055
1056 void PartSet_SketcherMgr::activatePlaneFilter(const bool& toActivate)
1057 {
1058   if (toActivate)
1059     myModule->workshop()->viewer()->addSelectionFilter(myPlaneFilter);
1060   else
1061     myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
1062 }
1063
1064 bool PartSet_SketcherMgr::operationActivatedByPreselection()
1065 {
1066   bool isOperationStopped = false;
1067   ModuleBase_Operation* anOperation = getCurrentOperation();
1068   if(anOperation && isNestedSketchOperation(anOperation)) {
1069     // Set final definitions if they are necessary
1070     //propertyPanelDefined(aOperation);
1071     /// Commit sketcher operations automatically
1072     /// distance operation are able to show popup editor to modify the distance value
1073     /// after entering the value, the operation should be committed/aborted(by Esc key)
1074     bool aCanCommitOperation = true;
1075     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1076                                                                             (anOperation);
1077     if (aFOperation && PartSet_SketcherMgr::isDistanceOperation(aFOperation)) {
1078       bool aValueAccepted = setDistanceValueByPreselection(anOperation, myModule->workshop(),
1079                                                            aCanCommitOperation);
1080       if (!aValueAccepted)
1081         return isOperationStopped;
1082     }
1083
1084     if (aCanCommitOperation)
1085       isOperationStopped = anOperation->commit();
1086     else {
1087       anOperation->abort();
1088       isOperationStopped = true;
1089     }
1090   }
1091   return isOperationStopped;
1092 }
1093
1094 bool PartSet_SketcherMgr::canUndo() const
1095 {
1096   return isNestedCreateOperation(getCurrentOperation(), activeSketch());
1097 }
1098
1099 bool PartSet_SketcherMgr::canRedo() const
1100 {
1101   return isNestedCreateOperation(getCurrentOperation(), activeSketch());
1102 }
1103
1104 bool PartSet_SketcherMgr::canEraseObject(const ObjectPtr& theObject) const
1105 {
1106   bool aCanErase = true;
1107   // when the sketch operation is active, results of sketch sub-feature can not be hidden
1108   if (myCurrentSketch.get()) {
1109     return !isObjectOfSketch(theObject);
1110   }
1111   return aCanErase;
1112 }
1113
1114 bool PartSet_SketcherMgr::canDisplayObject(const ObjectPtr& theObject) const
1115 {
1116   bool aCanDisplay = true;
1117
1118   bool aHasActiveSketch = activeSketch().get() != NULL;
1119   if (aHasActiveSketch) {
1120     // 1. the sketch feature should not be displayed during the sketch active operation
1121     // it is hidden by a sketch operation start and shown by a sketch stop, just the sketch
1122     // nested features can be visualized
1123     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1124     if (aFeature.get() != NULL && aFeature == activeSketch()) {
1125       aCanDisplay = false;
1126     }
1127     std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
1128                             std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
1129     /// some sketch entities should be never shown, e.g. projection feature
1130     if (aSketchFeature.get())
1131       aCanDisplay = aSketchFeature->canBeDisplayed();
1132   }
1133   else { // there are no an active sketch
1134     // 2. sketch sub-features should not be visualized if the sketch operation is not active
1135     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1136     if (aFeature.get() != NULL) {
1137       std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
1138                               std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
1139       if (aSketchFeature.get()) {
1140         aCanDisplay = false;
1141       }
1142     }
1143   }
1144
1145   // 3. the method should not filter the objects, which are not related to the current operation.
1146   // The object is filtered just if it is a current operation feature or this feature result
1147   if (aCanDisplay) {
1148     bool isObjectFound = false;
1149     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1150                                                                  (getCurrentOperation());
1151     if (aFOperation) {
1152       FeaturePtr aFeature = aFOperation->feature();
1153       if (aFeature.get()) {
1154         std::list<ResultPtr> aResults = aFeature->results();
1155         if (theObject == aFeature)
1156           isObjectFound = true;
1157         else {
1158           std::list<ResultPtr>::const_iterator anIt = aResults.begin(), aLast = aResults.end();
1159           for (; anIt != aLast && !isObjectFound; anIt++) {
1160             isObjectFound = *anIt == theObject;
1161           }
1162         }
1163       }
1164     }
1165     if (isObjectFound) {
1166       // 4. For created nested feature operation do not display the created feature if
1167       // the mouse curstor leaves the OCC window.
1168       // The correction cases, which ignores this condition:
1169       // a. the property panel values modification
1170       // b. the popup menu activated
1171       // c. widget editor control
1172       #ifndef DEBUG_DO_NOT_BY_ENTER
1173       if (isNestedCreateOperation(getCurrentOperation(), activeSketch())) {
1174         ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
1175         ModuleBase_WidgetEditor* anEditorWdg =
1176           anActiveWidget ? dynamic_cast<ModuleBase_WidgetEditor*>(anActiveWidget) : 0;
1177         // the active widget editor should not influence here. The presentation should be visible
1178         // always when this widget is active.
1179         if (!anEditorWdg && !myIsPopupMenuActive) {
1180           // during a nested create operation, the feature is redisplayed only
1181           // if the mouse over view
1182           // of there was a value modified in the property panel after the mouse left the view
1183           aCanDisplay = canDisplayCurrentCreatedFeature();
1184         }
1185       }
1186       #endif
1187     }
1188   }
1189
1190   // checks the sketcher constraints visibility according to active sketch check box states
1191   if (aCanDisplay) {
1192     bool aProcessed = false;
1193     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1194     if (aFeature.get()) {
1195       bool aConstraintDisplayed = canDisplayConstraint(aFeature, PartSet_Tools::Any, aProcessed);
1196       if (aProcessed)
1197         aCanDisplay = aConstraintDisplayed;
1198     }
1199   }
1200
1201   return aCanDisplay;
1202 }
1203
1204 bool PartSet_SketcherMgr::canDisplayConstraint(const FeaturePtr& theFeature,
1205                                              const PartSet_Tools::ConstraintVisibleState& theState,
1206                                              bool& isProcessed) const
1207 {
1208   bool aSwitchedOn = true;
1209
1210   const QStringList& aConstrIds = constraintsIdList();
1211
1212   std::string aKind = theFeature->getKind();
1213   if (aConstrIds.contains(QString(aKind.c_str()))) {
1214     bool isTypedConstraint = false;
1215
1216     switch (theState) {
1217       case PartSet_Tools::Dimensional: {
1218         bool isDistance = isDistanceKind(aKind);
1219         if (isDistance) {
1220           isProcessed = true;
1221           aSwitchedOn = myIsConstraintsShown[theState];
1222         }
1223       }
1224       break;
1225       case PartSet_Tools::Geometrical: {
1226         bool isGeometrical = !isDistanceKind(aKind);
1227         if (isGeometrical) {
1228           isProcessed = true;
1229           aSwitchedOn = myIsConstraintsShown[theState];
1230         }
1231       }
1232       break;
1233       case PartSet_Tools::Any: {
1234         isProcessed = true;
1235         bool isDistance = isDistanceKind(aKind);
1236         if (isDistance)
1237           aSwitchedOn = myIsConstraintsShown[PartSet_Tools::Dimensional];
1238         else
1239           aSwitchedOn = myIsConstraintsShown[PartSet_Tools::Geometrical];
1240       }
1241       break;
1242     default:
1243       break;
1244     }
1245   }
1246   return aSwitchedOn;
1247 }
1248
1249 /*void PartSet_SketcherMgr::processHiddenObject(const std::list<ObjectPtr>& theObjects)
1250 {
1251   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1252                                                                            (getCurrentOperation());
1253   if (aFOperation && myCurrentSketch.get()) {
1254     // find results of the current operation
1255     // these results should not be proposed to be deleted
1256     FeaturePtr anOperationFeature = aFOperation->feature();
1257     std::list<ResultPtr> anOperationResultList = anOperationFeature->results();
1258     std::set<ResultPtr> anOperationResults;
1259     std::list<ResultPtr>::const_iterator aRIt = anOperationResultList.begin(),
1260                                         aRLast = anOperationResultList.end();
1261     for (; aRIt != aRLast; aRIt++)
1262       anOperationResults.insert(*aRIt);
1263
1264     std::set<FeaturePtr> anObjectsToBeDeleted;
1265     QStringList anObjectsToBeDeletedNames;
1266     std::list<ObjectPtr>::const_iterator anIt = theObjects.begin(), aLast = theObjects.end();
1267     for (; anIt != aLast; anIt++) {
1268       ObjectPtr anObject = *anIt;
1269       bool aCanErase = true;
1270       // when the sketch operation is active, results of sketch sub-feature can not be hidden
1271       ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1272       // the result is found between current feature results
1273       if (anOperationResults.find(aResult) != anOperationResults.end())
1274         continue;
1275
1276       if (aResult.get()) {
1277         // Display sketcher objects
1278         for (int i = 0; i < myCurrentSketch->numberOfSubs() && aCanErase; i++) {
1279           FeaturePtr aFeature = myCurrentSketch->subFeature(i);
1280           std::list<ResultPtr> aResults = aFeature->results();
1281           std::list<ResultPtr>::const_iterator anIt;
1282           for (anIt = aResults.begin(); anIt != aResults.end() && aCanErase; ++anIt) {
1283             aCanErase = *anIt != aResult;
1284           }
1285         }
1286       }
1287       if (!aCanErase) {
1288         FeaturePtr aFeature = ModelAPI_Feature::feature(anObject);
1289         if (aFeature.get() && anObjectsToBeDeleted.find(aFeature) == anObjectsToBeDeleted.end()) {
1290           anObjectsToBeDeleted.insert(aFeature);
1291           anObjectsToBeDeletedNames.append(aFeature->name().c_str());
1292         }
1293       }
1294     }
1295     if (!anObjectsToBeDeleted.empty()) {
1296       QString aFeatureNames = anObjectsToBeDeletedNames.join(", ");
1297       QString aMessage = tr("The following features have incorrect presentation and \
1298 will be hidden: %1. Would you like to delete them?")
1299                          .arg(aFeatureNames);
1300       int anAnswer = QMessageBox::question(qApp->activeWindow(), tr("Features hide"),
1301                                            aMessage, QMessageBox::Ok | QMessageBox::Cancel,
1302                                            QMessageBox::Cancel);
1303       if (anAnswer == QMessageBox::Ok) {
1304         QObjectPtrList anObjects;
1305         std::set<FeaturePtr>::const_iterator anIt = anObjectsToBeDeleted.begin(),
1306                                              aLast = anObjectsToBeDeleted.end();
1307         for (; anIt != aLast; anIt++)
1308           anObjects.append(*anIt);
1309         SessionPtr aMgr = ModelAPI_Session::get();
1310         DocumentPtr aDoc = aMgr->activeDocument();
1311         bool aIsOp = aMgr->isOperation();
1312         if (!aIsOp)
1313           aMgr->startOperation();
1314         workshop()->deleteFeatures(anObjects);
1315         //static Events_ID aDeletedEvent = Events_Loop::eventByName(EVENT_OBJECT_DELETED);
1316         //static Events_ID aRedispEvent = Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY);
1317         //Events_Loop::loop()->flush(aDeletedEvent);
1318         //Events_Loop::loop()->flush(aRedispEvent);
1319
1320         if (!aIsOp)
1321           aMgr->finishOperation();
1322       }
1323     }
1324   }
1325 }*/
1326
1327 bool PartSet_SketcherMgr::canDisplayCurrentCreatedFeature() const
1328 {
1329   bool aCanDisplay = myIsMouseOverWindow;
1330   if (!aCanDisplay) {
1331     ModuleBase_ModelWidget* anActiveWidget = getActiveWidget();
1332     if (anActiveWidget)
1333       aCanDisplay = anActiveWidget->getValueState() == ModuleBase_ModelWidget::Stored;
1334   }
1335   return aCanDisplay;
1336 }
1337
1338 bool PartSet_SketcherMgr::canChangeCursor(ModuleBase_Operation* theOperation) const
1339 {
1340   return isNestedCreateOperation(theOperation, activeSketch()) ||
1341          myModule->sketchReentranceMgr()->isInternalEditActive();
1342 }
1343
1344 const QMap<PartSet_Tools::ConstraintVisibleState, bool>& PartSet_SketcherMgr::showConstraintStates()
1345 {
1346   return myIsConstraintsShown;
1347 }
1348
1349 bool PartSet_SketcherMgr::isObjectOfSketch(const ObjectPtr& theObject) const
1350 {
1351   bool isFoundObject = false;
1352
1353   FeaturePtr anObjectFeature = ModelAPI_Feature::feature(theObject);
1354   if (anObjectFeature.get()) {
1355     int aSize = myCurrentSketch->numberOfSubs();
1356     for (int i = 0; i < myCurrentSketch->numberOfSubs() && !isFoundObject; i++) {
1357       FeaturePtr aCurrentFeature = myCurrentSketch->subFeature(i);
1358       isFoundObject = myCurrentSketch->subFeature(i) == anObjectFeature;
1359     }
1360   }
1361   return isFoundObject;
1362 }
1363
1364 void PartSet_SketcherMgr::onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>& thePln)
1365 {
1366   if (myPlaneFilter.IsNull())
1367    myPlaneFilter = new ModuleBase_ShapeInPlaneFilter();
1368
1369   myPlaneFilter->setPlane(thePln);
1370 }
1371
1372 bool PartSet_SketcherMgr::setDistanceValueByPreselection(ModuleBase_Operation* theOperation,
1373                                                          ModuleBase_IWorkshop* theWorkshop,
1374                                                          bool& theCanCommitOperation)
1375 {
1376   bool isValueAccepted = false;
1377   theCanCommitOperation = false;
1378
1379   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1380                                                                               (theOperation);
1381   FeaturePtr aFeature = aFOperation->feature();
1382   // editor is shown only if all attribute references are filled by preseletion
1383   bool anAllRefAttrInitialized = true;
1384
1385   std::list<AttributePtr> aRefAttrs = aFeature->data()->attributes(
1386                                               ModelAPI_AttributeRefAttr::typeId());
1387   std::list<AttributePtr>::const_iterator anIt = aRefAttrs.begin(), aLast = aRefAttrs.end();
1388   for (; anIt != aLast && anAllRefAttrInitialized; anIt++) {
1389     anAllRefAttrInitialized = (*anIt)->isInitialized();
1390   }
1391   if (anAllRefAttrInitialized) {
1392     // Activate dimension value editing on double click
1393     ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
1394     QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
1395     // Find corresponded widget to activate value editing
1396     foreach (ModuleBase_ModelWidget* aWgt, aWidgets) {
1397       if (aWgt->attributeID() == "ConstraintValue") {
1398         // the featue should be displayed in order to find the AIS text position,
1399         // the place where the editor will be shown
1400         aFeature->setDisplayed(true);
1401         /// the execute is necessary to perform in the feature compute for flyout position
1402         aFeature->execute();
1403
1404         Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
1405         Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1406
1407         PartSet_WidgetEditor* anEditor = dynamic_cast<PartSet_WidgetEditor*>(aWgt);
1408         if (anEditor) {
1409           int aX = 0, anY = 0;
1410
1411           XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(theWorkshop);
1412           XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1413           AISObjectPtr anAIS = aDisplayer->getAISObject(aFeature);
1414           Handle(AIS_InteractiveObject) anAISIO;
1415           if (anAIS.get() != NULL) {
1416             anAISIO = anAIS->impl<Handle(AIS_InteractiveObject)>();
1417           }
1418           if (anAIS.get() != NULL) {
1419             Handle(AIS_InteractiveObject) anAISIO = anAIS->impl<Handle(AIS_InteractiveObject)>();
1420
1421             if (!anAISIO.IsNull()) {
1422               Handle(AIS_Dimension) aDim = Handle(AIS_Dimension)::DownCast(anAISIO);
1423               if (!aDim.IsNull()) {
1424                 gp_Pnt aPosition = aDim->GetTextPosition();
1425
1426                 ModuleBase_IViewer* aViewer = aWorkshop->viewer();
1427                 Handle(V3d_View) aView = aViewer->activeView();
1428                 int aCX, aCY;
1429                 aView->Convert(aPosition.X(), aPosition.Y(), aPosition.Z(), aCX, aCY);
1430
1431                 QWidget* aViewPort = aViewer->activeViewPort();
1432                 QPoint aGlPoint = aViewPort->mapToGlobal(QPoint(aCX, aCY));
1433                 aX = aGlPoint.x();
1434                 anY = aGlPoint.y();
1435               }
1436             }
1437             anEditor->setCursorPosition(aX, anY);
1438             isValueAccepted = anEditor->showPopupEditor(false);
1439             theCanCommitOperation = true;
1440           }
1441         }
1442       }
1443     }
1444   }
1445   return isValueAccepted;
1446 }
1447
1448 void PartSet_SketcherMgr::getSelectionOwners(const FeaturePtr& theFeature,
1449                                              const FeaturePtr& theSketch,
1450                                              ModuleBase_IWorkshop* theWorkshop,
1451                                              const FeatureToSelectionMap& theSelection,
1452                                              SelectMgr_IndexedMapOfOwner& theOwnersToSelect)
1453 {
1454   if (theFeature.get() == NULL)
1455     return;
1456
1457   FeatureToSelectionMap::const_iterator anIt = theSelection.find(theFeature);
1458   std::set<AttributePtr> aSelectedAttributes = anIt.value().first;
1459   std::set<ResultPtr> aSelectedResults = anIt.value().second;
1460
1461   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
1462
1463   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
1464   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
1465
1466   // 1. found the feature's owners. Check the AIS objects of the constructions
1467   AISObjectPtr aAISObj = aDisplayer->getAISObject(theFeature);
1468   if (aAISObj.get() != NULL && aSelectedAttributes.empty() && aSelectedResults.empty()) {
1469     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1470
1471     SelectMgr_IndexedMapOfOwner aSelectedOwners;
1472     aConnector->workshop()->selector()->selection()->entityOwners(anAISIO, aSelectedOwners);
1473     for  (Standard_Integer i = 1, n = aSelectedOwners.Extent(); i <= n; i++) {
1474       Handle(SelectMgr_EntityOwner) anOwner = aSelectedOwners(i);
1475       if (!anOwner.IsNull())
1476         theOwnersToSelect.Add(anOwner);
1477     }
1478   }
1479
1480   // 2. found the feature results's owners
1481   std::list<ResultPtr> aResults = theFeature->results();
1482   std::list<ResultPtr>::const_iterator aIt;
1483   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
1484   {
1485     ResultPtr aResult = *aIt;
1486     AISObjectPtr aAISObj = aDisplayer->getAISObject(aResult);
1487     if (aAISObj.get() == NULL)
1488       continue;
1489     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
1490
1491     SelectMgr_IndexedMapOfOwner aSelectedOwners;
1492     aConnector->workshop()->selector()->selection()->entityOwners(anAISIO, aSelectedOwners);
1493     for  ( Standard_Integer i = 1, n = aSelectedOwners.Extent(); i <= n; i++ ) {
1494       Handle(StdSelect_BRepOwner) anOwner =
1495         Handle(StdSelect_BRepOwner)::DownCast(aSelectedOwners(i));
1496       if ( anOwner.IsNull() || !anOwner->HasShape() )
1497         continue;
1498       const TopoDS_Shape& aShape = anOwner->Shape();
1499       TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
1500       if (aShapeType == TopAbs_VERTEX) {
1501         AttributePtr aPntAttr =
1502           PartSet_Tools::findAttributeBy2dPoint(theFeature, aShape, theSketch);
1503         if (aPntAttr.get() != NULL &&
1504             aSelectedAttributes.find(aPntAttr) != aSelectedAttributes.end()) {
1505           theOwnersToSelect.Add(anOwner);
1506         }
1507       }
1508       else if (aShapeType == TopAbs_EDGE) {
1509         bool aFound = aSelectedResults.find(aResult) != aSelectedResults.end();
1510         if (aSelectedResults.find(aResult) != aSelectedResults.end() &&
1511             theOwnersToSelect.FindIndex(anOwner) <= 0)
1512           theOwnersToSelect.Add(anOwner);
1513       }
1514     }
1515   }
1516 }
1517
1518 void PartSet_SketcherMgr::connectToPropertyPanel(ModuleBase_ModelWidget* theWidget,
1519                                                  const bool isToConnect)
1520 {
1521   if (isToConnect) {
1522     connect(theWidget, SIGNAL(beforeValuesChanged()),
1523             this, SLOT(onBeforeValuesChangedInPropertyPanel()));
1524     connect(theWidget, SIGNAL(afterValuesChanged()),
1525             this, SLOT(onAfterValuesChangedInPropertyPanel()));
1526   }
1527   else {
1528     disconnect(theWidget, SIGNAL(beforeValuesChanged()),
1529                 this, SLOT(onBeforeValuesChangedInPropertyPanel()));
1530     disconnect(theWidget, SIGNAL(afterValuesChanged()),
1531                 this, SLOT(onAfterValuesChangedInPropertyPanel()));
1532   }
1533 }
1534
1535 void PartSet_SketcherMgr::widgetStateChanged(int thePreviousState)
1536 {
1537   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1538                                                                            (getCurrentOperation());
1539   if (aFOperation) {
1540     if (PartSet_SketcherMgr::isSketchOperation(aFOperation) ||
1541         isNestedSketchOperation(aFOperation) &&
1542         thePreviousState == ModuleBase_ModelWidget::ModifiedInPP) {
1543       FeaturePtr aFeature = aFOperation->feature();
1544       visualizeFeature(aFeature, aFOperation->isEditOperation(), canDisplayObject(aFeature));
1545     }
1546   }
1547 }
1548
1549 void PartSet_SketcherMgr::customizePresentation(const ObjectPtr& theObject)
1550 {
1551   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
1552                                                                            (getCurrentOperation());
1553   if (aFOperation && (PartSet_SketcherMgr::isSketchOperation(aFOperation) ||
1554                       isNestedSketchOperation(aFOperation)))
1555     SketcherPrs_Tools::sendExpressionShownEvent(myIsConstraintsShown[PartSet_Tools::Expressions]);
1556
1557   // update entities selection priorities
1558   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1559   if (aFeature.get() && PartSet_SketcherMgr::isEntity(aFeature->getKind())) {
1560     // update priority for feature
1561     updateSelectionPriority(aFeature, aFeature);
1562     // update priority for results of the feature
1563     std::list<ResultPtr> aResults = aFeature->results();
1564     std::list<ResultPtr>::const_iterator anIt = aResults.begin(), aLastIt = aResults.end();
1565     for (; anIt != aLastIt; anIt++)
1566       updateSelectionPriority(*anIt, aFeature);
1567   }
1568 }
1569
1570 ModuleBase_Operation* PartSet_SketcherMgr::getCurrentOperation() const
1571 {
1572   return myModule->workshop()->currentOperation();
1573 }
1574
1575 //**************************************************************
1576 ModuleBase_ModelWidget* PartSet_SketcherMgr::getActiveWidget() const
1577 {
1578   ModuleBase_ModelWidget* aWidget = 0;
1579   ModuleBase_Operation* anOperation = getCurrentOperation();
1580   if (anOperation) {
1581     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
1582     if (aPanel)
1583       aWidget = aPanel->activeWidget();
1584   }
1585   return aWidget;
1586 }
1587
1588 void PartSet_SketcherMgr::visualizeFeature(const FeaturePtr& theFeature,
1589                                            const bool isEditOperation,
1590                                            const bool isToDisplay,
1591                                            const bool isFlushRedisplay)
1592 {
1593   #ifdef DEBUG_DO_NOT_BY_ENTER
1594   return;
1595   #endif
1596
1597   if (isEditOperation || !theFeature.get())
1598     return;
1599
1600   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1601   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1602
1603   // 1. change visibility of the object itself, here the presentable object is processed,
1604   // e.g. constraints features
1605   //FeaturePtr aFeature = aFOperation->feature();
1606   std::list<ResultPtr> aResults = theFeature->results();
1607   if (isToDisplay)
1608     theFeature->setDisplayed(true);
1609   else
1610     theFeature->setDisplayed(false);
1611
1612   // change visibility of the object results, e.g. non-constraint features
1613   std::list<ResultPtr>::const_iterator aIt;
1614   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
1615     if (isToDisplay) {
1616       (*aIt)->setDisplayed(true);
1617     }
1618     else {
1619       (*aIt)->setDisplayed(false);
1620     }
1621   }
1622   if (isFlushRedisplay)
1623     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1624 }
1625
1626 void PartSet_SketcherMgr::storeSelection(const bool theHighlightedOnly)
1627 {
1628   if (!myCurrentSketch.get())
1629     return;
1630
1631   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1632   ModuleBase_ISelection* aSelect = aWorkshop->selection();
1633   QList<ModuleBase_ViewerPrsPtr> aStoredPrs = aSelect->getHighlighted();
1634
1635   QList<FeaturePtr> aFeatureList;
1636   if (!theHighlightedOnly) {
1637     QList<ModuleBase_ViewerPrsPtr> aSelected = aSelect->getSelected(
1638                                                               ModuleBase_ISelection::AllControls);
1639     aStoredPrs.append(aSelected);
1640   }
1641
1642   // 1. it is necessary to save current selection in order to restore it after the features moving
1643   myCurrentSelection.clear();
1644
1645   QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = aStoredPrs.begin(),
1646                                                 aLast = aStoredPrs.end();
1647
1648   CompositeFeaturePtr aSketch = activeSketch();
1649   for (; anIt != aLast; anIt++) {
1650     ModuleBase_ViewerPrsPtr aPrs = *anIt;
1651     ObjectPtr anObject = aPrs->object();
1652     if (!anObject.get())
1653       continue;
1654
1655     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1656     FeaturePtr aFeature;
1657     if (aResult.get())
1658       aFeature = ModelAPI_Feature::feature(aResult);
1659     else
1660       aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anObject);
1661
1662
1663     std::set<AttributePtr> aSelectedAttributes;
1664     std::set<ResultPtr> aSelectedResults;
1665     if (myCurrentSelection.find(aFeature) != myCurrentSelection.end()) {
1666       std::pair<std::set<AttributePtr>, std::set<ResultPtr> > aPair =
1667         myCurrentSelection.find(aFeature).value();
1668       aSelectedAttributes = aPair.first;
1669       aSelectedResults = aPair.second;
1670     }
1671
1672     Handle(SelectMgr_EntityOwner) anOwner = aPrs->owner();
1673     if (aResult.get()) {
1674       getAttributesOrResults(anOwner, aFeature, aSketch, aResult,
1675                              aSelectedAttributes, aSelectedResults);
1676     }
1677     else {
1678       std::list<ResultPtr> aResults = aFeature->results();
1679       std::list<ResultPtr>::const_iterator aIt;
1680       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
1681         ResultPtr aResult = *aIt;
1682         getAttributesOrResults(anOwner, aFeature, aSketch, aResult,
1683                                aSelectedAttributes, aSelectedResults);
1684       }
1685     }
1686     myCurrentSelection[aFeature] = std::make_pair(aSelectedAttributes, aSelectedResults);
1687   }
1688   //qDebug(QString("  storeSelection: %1").arg(myCurrentSelection.size()).toStdString().c_str());
1689 }
1690
1691 void PartSet_SketcherMgr::restoreSelection()
1692 {
1693   if (!myCurrentSketch.get())
1694     return;
1695
1696   //qDebug(QString("restoreSelection: %1").arg(myCurrentSelection.size()).toStdString().c_str());
1697   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1698   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1699   FeatureToSelectionMap::const_iterator aSIt = myCurrentSelection.begin(),
1700                                         aSLast = myCurrentSelection.end();
1701   SelectMgr_IndexedMapOfOwner anOwnersToSelect;
1702   for (; aSIt != aSLast; aSIt++) {
1703     anOwnersToSelect.Clear();
1704     getSelectionOwners(aSIt.key(), myCurrentSketch, aWorkshop, myCurrentSelection,
1705                         anOwnersToSelect);
1706     aConnector->workshop()->selector()->setSelectedOwners(anOwnersToSelect, false);
1707   }
1708 }
1709
1710 void PartSet_SketcherMgr::onShowConstraintsToggle(int theType, bool theState)
1711 {
1712   PartSet_Tools::ConstraintVisibleState aType = (PartSet_Tools::ConstraintVisibleState)theType;
1713
1714   updateBySketchParameters(aType, theState);
1715 }
1716
1717 void PartSet_SketcherMgr::updateBySketchParameters(
1718                                    const PartSet_Tools::ConstraintVisibleState& theType,
1719                                    bool theState)
1720 {
1721   if (myCurrentSketch.get() == NULL)
1722     return;
1723
1724   bool aPrevState = myIsConstraintsShown[theType];
1725   myIsConstraintsShown[theType] = theState;
1726
1727   switch (theType) {
1728     case PartSet_Tools::Geometrical:
1729     case PartSet_Tools::Dimensional: {
1730       if (aPrevState != theState) {
1731         ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
1732         XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
1733         for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
1734           FeaturePtr aSubFeature = myCurrentSketch->subFeature(i);
1735           bool aProcessed = false;
1736           bool aConstraintDisplayed = canDisplayConstraint(aSubFeature, theType, aProcessed);
1737           if (aProcessed)
1738             aSubFeature->setDisplayed(aConstraintDisplayed);
1739         }
1740         Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1741       }
1742     }
1743     break;
1744     case PartSet_Tools::Expressions: {
1745       if (aPrevState != theState) {
1746         /// call all sketch features redisplay, the expression state will be corrected in customize
1747         /// of distance presentation
1748         Events_ID anEventId = Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
1749         PartSet_Tools::sendSubFeaturesEvent(myCurrentSketch, anEventId);
1750       }
1751     }
1752     break;
1753   }
1754 }
1755
1756 void PartSet_SketcherMgr::updateSelectionPriority(ObjectPtr theObject,
1757                                                   FeaturePtr theFeature)
1758 {
1759   if (!theObject.get() || !theFeature.get())
1760     return;
1761
1762   AISObjectPtr anAIS = workshop()->displayer()->getAISObject(theObject);
1763   Handle(AIS_InteractiveObject) anAISIO;
1764   if (anAIS.get() != NULL) {
1765     anAISIO = anAIS->impl<Handle(AIS_InteractiveObject)>();
1766   }
1767
1768   if (!anAISIO.IsNull()) { // the presentation for the object is visualized
1769     int anAdditionalPriority = 0;
1770     // current feature
1771     std::shared_ptr<SketchPlugin_Feature> aSPFeature =
1772             std::dynamic_pointer_cast<SketchPlugin_Feature>(theFeature);
1773     if (aSPFeature.get() != NULL) {
1774       // 1. Vertices
1775       // 2. Simple segments
1776       // 3. External objects (violet color)
1777       // 4. Auxiliary segments (dotted)
1778       // StdSelect_BRepSelectionTool::Load uses priority calculating:
1779       // Standard_Integer aPriority =
1780       // (thePriority == -1) ? GetStandardPriority (theShape, theType) : thePriority;
1781       // Priority of Vertex is 8, edge(segment) is 7.
1782       // It might be not corrected as provides the condition above.
1783       bool isExternal = aSPFeature->isExternal();
1784       bool isAuxiliary = PartSet_Tools::isAuxiliarySketchEntity(aSPFeature);
1785       // current feature
1786       if (!isExternal && !isAuxiliary)
1787         anAdditionalPriority = 30;
1788       // external feature
1789       if (isExternal)
1790         anAdditionalPriority = 20;
1791       // auxiliary feature
1792       if (isAuxiliary) {
1793         anAdditionalPriority = 10; /// auxiliary objects should have less priority that
1794         // edges/vertices of local selection on not-sketch objects
1795       }
1796       Handle(ModuleBase_ResultPrs) aResult = Handle(ModuleBase_ResultPrs)::DownCast(anAISIO);
1797       if (!aResult.IsNull()) {
1798         aResult->setAdditionalSelectionPriority(anAdditionalPriority);
1799       }
1800     }
1801   }
1802 }
1803
1804 XGUI_Workshop* PartSet_SketcherMgr::workshop() const
1805 {
1806   ModuleBase_IWorkshop* anIWorkshop = myModule->workshop();
1807   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(anIWorkshop);
1808   return aConnector->workshop();
1809 }
1810
1811 XGUI_OperationMgr* PartSet_SketcherMgr::operationMgr() const
1812 {
1813   return workshop()->operationMgr();
1814 }
1815