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