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