Salome HOME
Merge branch 'occ/shaper2smesh'
[modules/shaper.git] / src / PartSet / PartSet_SketcherReentrantMgr.cpp
1 // Copyright (C) 2014-2019  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 email : webmaster.salome@opencascade.com
18 //
19
20 #include "PartSet_SketcherReentrantMgr.h"
21 #include "PartSet_ExternalObjectsMgr.h"
22 #include "PartSet_Module.h"
23 #include "PartSet_SketcherMgr.h"
24 #include "PartSet_WidgetPoint2d.h"
25
26 #include "ModelAPI_Session.h"
27 #include "ModelAPI_AttributeString.h"
28 #include "ModelAPI_AttributeRefAttr.h"
29 #include "ModelAPI_AttributeReference.h"
30 #include "ModelAPI_EventReentrantMessage.h"
31
32 #include "GeomDataAPI_Point2D.h"
33
34 #include "GeomAPI_Lin2d.h"
35 #include "GeomAPI_Dir2d.h"
36
37 #include <ModuleBase_IPropertyPanel.h>
38 #include <ModuleBase_ISelectionActivate.h>
39 #include <ModuleBase_OperationFeature.h>
40 #include <ModuleBase_ModelWidget.h>
41 #include <ModuleBase_ViewerPrs.h>
42 #include <ModuleBase_WidgetSelector.h>
43 #include <ModuleBase_PageWidget.h>
44 #include <ModuleBase_PageBase.h>
45 #include <ModuleBase_WidgetFactory.h>
46 #include <ModuleBase_OperationDescription.h>
47 #include "ModuleBase_ToolBox.h"
48 #include "ModuleBase_ISelection.h"
49
50 #include <SketchPlugin_Feature.h>
51 #include <SketchPlugin_Line.h>
52 #include <SketchPlugin_MacroArc.h>
53 #include <SketchPlugin_MacroCircle.h>
54 #include <SketchPlugin_Point.h>
55 #include <SketchPlugin_Trim.h>
56 #include <SketchPlugin_Split.h>
57 #include <SketchPlugin_ConstraintHorizontal.h>
58 #include <SketchPlugin_ConstraintVertical.h>
59
60 #include <XGUI_Workshop.h>
61 #include <XGUI_ModuleConnector.h>
62 #include <XGUI_OperationMgr.h>
63 #include <XGUI_PropertyPanel.h>
64 #include <XGUI_ErrorMgr.h>
65 #include <XGUI_SelectionMgr.h>
66
67 #include <QToolButton>
68
69 //#define DEBUG_RESTART
70
71 PartSet_SketcherReentrantMgr::PartSet_SketcherReentrantMgr(ModuleBase_IWorkshop* theWorkshop)
72 : QObject(theWorkshop),
73   myWorkshop(theWorkshop),
74   myRestartingMode(RM_None),
75   myIsFlagsBlocked(false),
76   myIsInternalEditOperation(false),
77   myNoMoreWidgetsAttribute(""),
78   myIsAutoConstraints(true)
79 {
80 }
81
82 PartSet_SketcherReentrantMgr::~PartSet_SketcherReentrantMgr()
83 {
84 }
85
86 bool PartSet_SketcherReentrantMgr::isInternalEditActive() const
87 {
88   return myIsInternalEditOperation;
89 }
90
91 void PartSet_SketcherReentrantMgr::updateInternalEditActiveState()
92 {
93   if  (myIsInternalEditOperation) {
94     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
95                                                          (myWorkshop->currentOperation());
96     if (aFOperation) {
97       FeaturePtr aFeature = aFOperation->feature();
98       QString anError = myWorkshop->module()->getFeatureError(aFeature);
99       // stop started internal edit operation as soon as the operation becomes invalid
100       // it is especially important for the sketch tangent arc feature
101       if (!anError.isEmpty()) {
102         aFOperation->setEditOperation(false);
103         //workshop()->operationMgr()->updateApplyOfOperations();
104         myIsInternalEditOperation = false;
105         updateAcceptAllAction();
106       }
107     }
108   }
109 }
110
111 bool PartSet_SketcherReentrantMgr::operationCommitted(ModuleBase_Operation* theOperation)
112 {
113   bool aProcessed = false;
114   if (!isActiveMgr())
115     return aProcessed;
116
117   aProcessed = myIsInternalEditOperation;
118   resetFlags();
119
120   return aProcessed;
121 }
122
123 void PartSet_SketcherReentrantMgr::operationStarted(ModuleBase_Operation* theOperation)
124 {
125   if (!isActiveMgr())
126     return;
127
128   //if (myPreviousFeature.get() && myRestartingMode == RM_LastFeatureUsed) {
129     //ModuleBase_OperationFeature* aCurrentOperation = dynamic_cast<ModuleBase_OperationFeature*>(
130     //                                                            myWorkshop->currentOperation());
131     //CompositeFeaturePtr aSketch = module()->sketchMgr()->activeSketch();
132     //if (myPreviousFeature.get() && myPreviousFeature->data()->isValid()) // it is not removed
133       //copyReetntrantAttributes(myPreviousFeature, aCurrentOperation->feature(), aSketch);
134   //}
135   resetFlags();
136 }
137
138 void PartSet_SketcherReentrantMgr::operationAborted(ModuleBase_Operation* theOperation)
139 {
140   if (!isActiveMgr())
141     return;
142
143   resetFlags();
144 }
145
146 bool PartSet_SketcherReentrantMgr::processMouseMoved(ModuleBase_IViewWindow* theWnd,
147                                                       QMouseEvent* theEvent)
148 {
149   bool aProcessed = false;
150   if (!isActiveMgr())
151     return aProcessed;
152
153   if  (myIsInternalEditOperation) {
154     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
155                                                          (myWorkshop->currentOperation());
156     FeaturePtr aLastFeature = myRestartingMode == RM_LastFeatureUsed ? aFOperation->feature()
157                                                                      : FeaturePtr();
158     if (aLastFeature) {
159       ModuleBase_ModelWidget* anActiveWidget = module()->activeWidget();
160       ModuleBase_IPropertyPanel* aPanel = myWorkshop->currentOperation()->propertyPanel();
161
162       FeaturePtr aCurrentFeature = aFOperation->feature();
163       bool isLineFeature = false, isReentrantArcFeature = false;
164       std::string anAttributeOnStart;
165       if (aCurrentFeature->getKind() == SketchPlugin_Line::ID()) {
166         anAttributeOnStart = SketchPlugin_Line::START_ID();
167         isLineFeature = anActiveWidget->attributeID() == anAttributeOnStart;
168       }
169       else if (isTangentArc(aFOperation, module()->sketchMgr()->activeSketch())) {
170         isReentrantArcFeature = true;
171       }
172       bool aCanBeActivatedByMove = isLineFeature || isReentrantArcFeature;
173       if (aCanBeActivatedByMove) {
174         /// before restarting of operation we need to clear selection, as it may take part in
175         /// new feature creation, e.g. tangent arc. But it is not necessary as it was processed
176         /// by mouse release when the operation was restarted.
177         workshop()->selector()->clearSelection();
178
179         myPreviousFeature = aFOperation->feature();
180         restartOperation();
181         myPreviousFeature = FeaturePtr();
182
183         anActiveWidget = module()->activeWidget();
184         aProcessed = true;
185         if (anActiveWidget && anActiveWidget->attributeID() == anAttributeOnStart) {
186           // it was not deactivated by preselection processing
187           aPanel->activateNextWidget(anActiveWidget);
188         }
189       } else {
190         // processing mouse move in active widget of restarted operation
191         ModuleBase_ModelWidget* anActiveWidget = module()->activeWidget();
192         PartSet_MouseProcessor* aProcessor = dynamic_cast<PartSet_MouseProcessor*>(anActiveWidget);
193         if (aProcessor)
194           aProcessor->mouseMoved(theWnd, theEvent);
195       }
196     }
197   }
198   return aProcessed;
199 }
200
201 bool PartSet_SketcherReentrantMgr::processMousePressed(ModuleBase_IViewWindow* /* theWnd*/,
202                                                         QMouseEvent* /* theEvent*/)
203 {
204   return isActiveMgr() && myIsInternalEditOperation;
205 }
206
207 bool PartSet_SketcherReentrantMgr::processMouseReleased(ModuleBase_IViewWindow* theWindow,
208                                                         QMouseEvent* theEvent)
209 {
210   bool aProcessed = false;
211   if (!isActiveMgr())
212     return aProcessed;
213
214   if (myIsInternalEditOperation) {
215     ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
216     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
217
218     ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
219     if (!anActiveWidget || !anActiveWidget->isViewerSelector()) {
220
221       // block of viewer update
222       // we need to block update content of the viewer because of Sketch Point feature
223       // in activate() the value of the point is initialized and it can be displayed
224       // but the default value is [0, 0]. So, we block update viewer contentent until
225       // onMouseRelease happens, which correct the point position
226       ModuleBase_Tools::blockUpdateViewer(true);
227
228       ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
229                                                            (myWorkshop->currentOperation());
230       myPreviousFeature = aFOperation->feature();
231
232       /// selection should be obtained from workshop before ask if the operation can be started as
233       /// the canStartOperation method performs commit/abort of previous operation.
234       /// Sometimes commit/abort
235       /// may cause selection clear(Sketch operation) as a result
236       /// it will be lost and is not used for preselection.
237       ModuleBase_ISelection* aSelection = myWorkshop->selection();
238       QList<ModuleBase_ViewerPrsPtr> aPreSelected =
239         aSelection->getSelected(ModuleBase_ISelection::AllControls);
240
241       myClickedSketchPoint = PartSet_Tools::getPnt2d(theEvent, theWindow,
242                                                      module()->sketchMgr()->activeSketch());
243       FeaturePtr anExternalCreatedFeature;
244       if (!aPreSelected.empty()) {
245         ModuleBase_ViewerPrsPtr aValue = aPreSelected.first();
246         module()->getGeomSelection(aValue, mySelectedObject, mySelectedAttribute);
247
248         PartSet_WidgetPoint2D* aPointWidget = dynamic_cast<PartSet_WidgetPoint2D*>(anActiveWidget);
249         if (aPointWidget) {
250           GeomShapePtr aShape;
251           aPointWidget->getGeomSelection_(aValue, mySelectedObject, aShape);
252           ObjectPtr anExternalObject =
253             aPointWidget->getExternalObjectMgr()->getExternalObjectValidated();
254           // if external object is during reentrant operation and is used as a parameter of feature
255           // it should be removed after the operation is restarted. (Circle feature, Projection)
256           if (anExternalObject.get())
257             anExternalCreatedFeature = ModelAPI_Feature::feature(anExternalObject);
258         }
259       }
260
261       restartOperation();
262       // remove created external feature
263       if (anExternalCreatedFeature.get()) {
264         QObjectPtrList anObjects;
265         anObjects.append(anExternalCreatedFeature);
266         workshop()->deleteFeatures(anObjects);
267       }
268
269       myClickedSketchPoint = std::shared_ptr<GeomAPI_Pnt2d>();
270       mySelectedObject = ObjectPtr();
271       mySelectedAttribute = AttributePtr();
272
273       myPreviousFeature = FeaturePtr();
274       aProcessed = true;
275
276       // fill the first widget by the mouse event point
277       // if the active widget is not the first, it means that the restarted operation is filled by
278       // the current preselection.
279       PartSet_MouseProcessor* aMouseProcessor = dynamic_cast<PartSet_MouseProcessor*>(
280                                                                        module()->activeWidget());
281       //PartSet_WidgetPoint2D* aPoint2DWdg =
282       //  dynamic_cast<PartSet_WidgetPoint2D*>(module()->activeWidget());
283       PartSet_MouseProcessor* aFirstWidget = dynamic_cast<PartSet_MouseProcessor*>(
284                                                         aPanel->findFirstAcceptingValueWidget());
285       //if (aPoint2DWdg && aPoint2DWdg == aFirstWidget) {
286       if (aMouseProcessor && aMouseProcessor == aFirstWidget) {
287         std::shared_ptr<ModuleBase_ViewerPrs> aSelectedPrs;
288         if (!aPreSelected.empty())
289           aSelectedPrs = aPreSelected.front();
290         if (aSelectedPrs.get() && aSelectedPrs->object().get()
291             && !aSelectedPrs->object()->data()->isValid()) {
292           // the selected object was removed diring restart, e.g. presentable macro feature
293           // there are created objects to replace the object depending on created feature kind
294           aSelectedPrs = std::shared_ptr<ModuleBase_ViewerPrs>();
295         }
296         aMouseProcessor->setPreSelection(aSelectedPrs, theWindow, theEvent);
297         //aPoint2DWdg->mouseReleased(theWindow, theEvent);
298         //if (!aPreSelected.empty())
299         //  aPoint2DWdg->setPreSelection(ModuleBase_ViewerPrsPtr());
300       }
301       // unblock viewer update
302       ModuleBase_Tools::blockUpdateViewer(false);
303     }
304   }
305   return aProcessed;
306 }
307
308 //******************************************************
309 void PartSet_SketcherReentrantMgr::setReentrantPreSelection(
310                                        const std::shared_ptr<Events_Message>& theMessage)
311 {
312   ReentrantMessagePtr aReentrantMessage =
313                       std::dynamic_pointer_cast<ModelAPI_EventReentrantMessage>(theMessage);
314   if (!aReentrantMessage.get())
315     return;
316
317   // if feature has already filled the selected object, we should not overwrite it
318   if (!aReentrantMessage->selectedObject().get())
319     aReentrantMessage->setSelectedObject(mySelectedObject);
320
321   aReentrantMessage->setSelectedAttribute(mySelectedAttribute);
322   aReentrantMessage->setClickedPoint(myClickedSketchPoint);
323 }
324
325 //void PartSet_SketcherReentrantMgr::onWidgetActivated()
326 //{
327 //  if (!isActiveMgr())
328 //    return;
329 //  if (!myIsInternalEditOperation)
330 //    return;
331 //
332 //  PartSet_Module* aModule = module();
333 //  ModuleBase_ModelWidget* aFirstWidget = aModule->activeWidget();
334 //  ModuleBase_IPropertyPanel* aPanel = aModule->currentOperation()->propertyPanel();
335 //  if (aFirstWidget != aPanel->activeWidget()) {
336 //    ModuleBase_WidgetSelector* aWSelector = dynamic_cast<ModuleBase_WidgetSelector*>
337 //      (aFirstWidget);
338 //    if (aWSelector) {
339 //      myWorkshop->selectionActivate()->updateSelectionModesAndFilters(aWSelector);
340 //    }
341 //  }
342 //}
343
344 void PartSet_SketcherReentrantMgr::onNoMoreWidgets(const std::string& thePreviousAttributeID)
345 {
346 #ifdef DEBUG_RESTART
347   std::cout << "PartSet_SketcherReentrantMgr::onNoMoreWidgets" << std::endl;
348 #endif
349
350   if (!isActiveMgr())
351     return;
352
353   // we should avoid processing of the signal about no more widgets attributes and
354   // do this after the restart operaion is finished if it was called
355   // onNoMoreWidgets depends on myIsFlagsBlocked and fill myNoMoreWidgetsAttribute
356   // if it should be called after restart
357   if (myIsFlagsBlocked) {
358     myNoMoreWidgetsAttribute = thePreviousAttributeID;
359     return;
360   }
361
362   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
363                                                        (myWorkshop->currentOperation());
364   if (module()->sketchMgr()->isDragModeCreation()) {
365     if (aFOperation && myIsAutoConstraints)
366       addConstraints(aFOperation->feature());
367     return;
368   }
369   if (!myWorkshop->module()->getFeatureError(aFOperation->feature()).isEmpty())
370     return;
371
372   if (aFOperation && module()->sketchMgr()->isNestedSketchOperation(aFOperation)) {
373     if (aFOperation->isNeedToBeAborted()) {
374       aFOperation->abort();
375     }
376     else {
377       bool isStarted = false;
378       if (!module()->sketchMgr()->sketchSolverError()) {
379         if (myRestartingMode != RM_Forbided) {
380           myRestartingMode = RM_LastFeatureUsed;
381           isStarted = startInternalEdit(thePreviousAttributeID);
382         }
383       }
384       if (!isStarted) {
385         if (myIsAutoConstraints)
386           addConstraints(aFOperation->feature());
387         aFOperation->commit();
388       }
389     }
390   }
391 }
392
393 bool PartSet_SketcherReentrantMgr::processEnter(const std::string& thePreviousAttributeID)
394 {
395   bool isDone = false;
396
397   if (!isActiveMgr())
398     return isDone;
399
400   // empty previous attribute means that the Apply/Ok button has focus and the enter
401   // should not lead to start edition mode of the previous operation
402   if (thePreviousAttributeID.empty())
403     return isDone;
404
405   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
406                                                        (myWorkshop->currentOperation());
407   if (!myWorkshop->module()->getFeatureError(aFOperation->feature()).isEmpty())
408     return isDone;
409
410   bool isSketchSolverError = module()->sketchMgr()->sketchSolverError();
411
412   if (!isSketchSolverError) {
413     myRestartingMode = RM_EmptyFeatureUsed;
414     // It seems that the call is obsolete for Enter key processing
415     // It prevent finalysing of the current operation by Enter key
416     //isDone = startInternalEdit(thePreviousAttributeID);
417   }
418
419   return isDone;
420 }
421
422 void PartSet_SketcherReentrantMgr::onVertexSelected()
423 {
424   if (!isActiveMgr())
425     return;
426
427   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
428   std::string anOperationId = anOperation->id().toStdString();
429   if (anOperationId == SketchPlugin_Line::ID() ||
430       isTangentArc(anOperation, module()->sketchMgr()->activeSketch())) {
431     /// If last line finished on vertex the lines creation sequence has to be break
432     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
433     ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
434     const QList<ModuleBase_ModelWidget*>& aWidgets = aPanel->modelWidgets();
435     QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
436     bool aFoundWidget = false;
437     bool aFoundObligatory = false;
438     for (; anIt != aLast && !aFoundObligatory; anIt++) {
439       if (!aFoundWidget)
440         aFoundWidget = *anIt == anActiveWidget;
441       else
442         aFoundObligatory = (*anIt)->isObligatory();
443     }
444     if (!aFoundObligatory)
445       myRestartingMode = RM_Forbided;
446   }
447 }
448
449 void PartSet_SketcherReentrantMgr::onAfterValuesChangedInPropertyPanel()
450 {
451
452   if (isInternalEditActive()) {
453     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
454                                                        (myWorkshop->currentOperation());
455     ModuleBase_ModelWidget* aWidget = (ModuleBase_ModelWidget*)sender();
456     if (!aWidget->isModifiedInEdit().empty())
457       restartOperation();
458   }
459 }
460
461 void PartSet_SketcherReentrantMgr::onBeforeStopped()
462 {
463   if (!isActiveMgr() || !myIsInternalEditOperation)
464     return;
465
466   beforeStopInternalEdit();
467 }
468
469 bool PartSet_SketcherReentrantMgr::canBeCommittedByPreselection()
470 {
471   return !isActiveMgr() || myRestartingMode == RM_None;
472 }
473
474 bool PartSet_SketcherReentrantMgr::isActiveMgr() const
475 {
476   ModuleBase_Operation* aCurrentOperation = myWorkshop->currentOperation();
477
478   bool anActive = PartSet_SketcherMgr::isSketchOperation(aCurrentOperation);
479   if (!anActive) {
480     anActive = module()->sketchMgr()->isNestedSketchOperation(aCurrentOperation);
481     if (anActive) { // the manager is not active when the current operation is a usual Edit
482       ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
483                                                        (myWorkshop->currentOperation());
484       if (aFOperation->isEditOperation())
485         anActive = myIsInternalEditOperation;
486     }
487   }
488   return anActive;
489 }
490
491 bool PartSet_SketcherReentrantMgr::startInternalEdit(const std::string& thePreviousAttributeID)
492 {
493 #ifdef DEBUG_RESTART
494   std::cout << "PartSet_SketcherReentrantMgr::startInternalEdit" << std::endl;
495 #endif
496
497   bool isDone = false;
498   /// this is workaround for ModuleBase_WidgetEditor, used in SALOME mode. Sometimes key enter
499   /// event comes two times, so we should not start another internal edit operation
500   /// the Apply button becomes disabled becase the second additional internal feature is created
501   if (myIsInternalEditOperation)
502     return true;
503
504   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
505                                                      (myWorkshop->currentOperation());
506
507   if (aFOperation && module()->sketchMgr()->isNestedSketchOperation(aFOperation)) {
508     /// improvement to deselect automatically all eventual selected objects, when
509     // returning to the neutral point of the Sketcher or start internal edit
510     workshop()->selector()->clearSelection();
511
512     if (myIsAutoConstraints)
513       addConstraints(aFOperation->feature());
514
515     aFOperation->setEditOperation(true/*, false*/);
516     createInternalFeature();
517
518     myIsInternalEditOperation = true;
519     updateAcceptAllAction();
520
521     isDone = true;
522     connect(aFOperation, SIGNAL(beforeCommitted()), this, SLOT(onBeforeStopped()));
523     connect(aFOperation, SIGNAL(beforeAborted()), this, SLOT(onBeforeStopped()));
524
525     // activate selection filters of the first widget in the viewer
526     //onWidgetActivated();
527
528     // activate the last active widget in the Property Panel
529     if (!thePreviousAttributeID.empty()) {
530       ModuleBase_Operation* anEditOperation = module()->currentOperation();
531       if (anEditOperation) {
532         ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
533         ModuleBase_ModelWidget* aPreviousAttributeWidget = 0;
534         QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
535         for (int i = 0, aNb = aWidgets.size(); i < aNb && !aPreviousAttributeWidget; i++) {
536           if (aWidgets[i]->attributeID() == thePreviousAttributeID) {
537           /// workaround for the same attributes used in different stacked widgets(attribute types)
538           if (ModuleBase_ToolBox::isOffToolBoxParent(aWidgets[i]))
539             continue;
540             aPreviousAttributeWidget = aWidgets[i];
541           }
542         }
543         // If the current widget is a selector, do nothing, it processes the mouse press
544         if (aPreviousAttributeWidget) {
545           if (!aPreviousAttributeWidget->isViewerSelector()) {
546             aPreviousAttributeWidget->focusTo();
547             aPreviousAttributeWidget->emitFocusInWidget();
548             aPreviousAttributeWidget->selectContent();
549           }
550           else {
551             // in case of shape multi selector, the widget does not lose focus by filling
552             // like it is in shape selector. So, if enter is pressed, the multi shape selector
553             // control should be deactivated. The focus is moved to Apply button and there
554             // should not be active control visualized in property panel
555             if (aPreviousAttributeWidget == aPanel->activeWidget()) {
556               aPanel->activateWidget(NULL, false);
557             }
558             // if there is no the next widget to be automatically activated,
559             // the Ok button in property
560             // panel should accept the focus(example is parallel constraint on sketch lines)
561             QToolButton* anOkBtn =
562               dynamic_cast<XGUI_PropertyPanel*>(aPanel)->findButton(PROP_PANEL_OK);
563             if (anOkBtn)
564               ModuleBase_Tools::setFocus(anOkBtn, "XGUI_PropertyPanel::activateNextWidget");
565           }
566         }
567       }
568     }
569   }
570   if (isDone)
571     module()->sketchMgr()->clearClickedFlags();
572
573   return isDone;
574 }
575
576 void PartSet_SketcherReentrantMgr::beforeStopInternalEdit()
577 {
578   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
579                                                       (myWorkshop->currentOperation());
580   if (aFOperation) {
581     disconnect(aFOperation, SIGNAL(beforeCommitted()), this, SLOT(onBeforeStopped()));
582     disconnect(aFOperation, SIGNAL(beforeAborted()), this, SLOT(onBeforeStopped()));
583   }
584
585   deleteInternalFeature();
586 }
587
588 void PartSet_SketcherReentrantMgr::restartOperation()
589 {
590 #ifdef DEBUG_RESTART
591   std::cout << "PartSet_SketcherReentrantMgr::restartOperation" << std::endl;
592 #endif
593
594   if (myIsInternalEditOperation) {
595     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(
596                                                                   myWorkshop->currentOperation());
597     if (aFOperation) {
598       ModuleBase_ISelection* aSelection = myWorkshop->selection();
599       QList<ModuleBase_ViewerPrsPtr> aPreSelected =
600         aSelection->getSelected(ModuleBase_ISelection::AllControls);
601
602       if (myInternalFeature.get())
603         copyReetntrantAttributes(myInternalFeature, aFOperation->feature(),
604                                  module()->sketchMgr()->activeSketch());
605
606       myNoMoreWidgetsAttribute = "";
607       myIsFlagsBlocked = true;
608       /// launch has 'false' parameter to do not start new operation if the previous operation
609       /// is not committed. It is important for Line Sketch feature as it uses the previous
610       /// created feature parameter(to build coincidence), but by abort the previous is removed
611       module()->launchOperation(aFOperation->id(), true);
612       myIsFlagsBlocked = false;
613       resetFlags();
614
615       // we should avoid processing of the signal about no more widgets attributes and
616       // do this after the restart operaion is finished if it was called
617       // onNoMoreWidgets depends on myIsFlagsBlocked and fill myNoMoreWidgetsAttribute
618       // if it should be called after restart
619       if (!myNoMoreWidgetsAttribute.empty()) {
620         onNoMoreWidgets(myNoMoreWidgetsAttribute);
621         myNoMoreWidgetsAttribute = "";
622       }
623     }
624   }
625 }
626
627 void PartSet_SketcherReentrantMgr::createInternalFeature()
628 {
629   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
630                                                      (myWorkshop->currentOperation());
631
632   if (aFOperation && module()->sketchMgr()->isNestedSketchOperation(aFOperation)) {
633     FeaturePtr anOperationFeature = aFOperation->feature();
634
635     CompositeFeaturePtr aSketch = module()->sketchMgr()->activeSketch();
636     myInternalFeature = aSketch->addFeature(anOperationFeature->getKind());
637
638 #ifdef DEBUG_RESTART
639     std::cout << "PartSet_SketcherReentrantMgr::createInternalFeature: "
640               << myInternalFeature->data()->name() << std::endl;
641 #endif
642
643     bool isFeatureChanged = copyReetntrantAttributes(anOperationFeature, myInternalFeature,
644                                                      aSketch, false);
645     XGUI_PropertyPanel* aPropertyPanel = dynamic_cast<XGUI_PropertyPanel*>
646                                                   (aFOperation->propertyPanel());
647
648     myInternalWidget = new QWidget(aPropertyPanel->contentWidget()->pageWidget());
649     myInternalWidget->setVisible(false);
650
651     ModuleBase_PageWidget* anInternalPage = new ModuleBase_PageWidget(myInternalWidget);
652
653     QString aXmlRepr = aFOperation->getDescription()->xmlRepresentation();
654     ModuleBase_WidgetFactory aFactory(aXmlRepr.toStdString(), myWorkshop);
655
656     aFactory.createWidget(anInternalPage);
657     QList<ModuleBase_ModelWidget*> aWidgets = aFactory.getModelWidgets();
658
659     foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
660       bool isStoreValue = !aFOperation->isEditOperation() &&
661                           !aWidget->getDefaultValue().empty() &&
662                           !aWidget->isComputedDefault();
663       aWidget->setFeature(myInternalFeature, isStoreValue);
664       if (!isStoreValue && isFeatureChanged)
665         aWidget->restoreValue();
666     }
667
668     ModuleBase_ModelWidget* aFirstWidget = ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget
669                                                                                         (aWidgets);
670     if (aFirstWidget)
671       setInternalActiveWidget(aFirstWidget);
672   }
673 }
674
675 void PartSet_SketcherReentrantMgr::deleteInternalFeature()
676 {
677 #ifdef DEBUG_RESTART
678   std::cout << "PartSet_SketcherReentrantMgr::deleteInternalFeature: "
679             << myInternalFeature->data()->name() << std::endl;
680 #endif
681   setInternalActiveWidget(0);
682   delete myInternalWidget;
683   myInternalWidget = 0;
684
685   QObjectPtrList anObjects;
686   anObjects.append(myInternalFeature);
687   workshop()->deleteFeatures(anObjects);
688   myInternalFeature = FeaturePtr();
689 }
690
691 void PartSet_SketcherReentrantMgr::resetFlags()
692 {
693   if (!myIsFlagsBlocked) {
694     myIsInternalEditOperation = false;
695     updateAcceptAllAction();
696     myRestartingMode = RM_None;
697     myReentrantMessage = std::shared_ptr<Events_Message>();
698   }
699 }
700
701 bool PartSet_SketcherReentrantMgr::copyReetntrantAttributes(const FeaturePtr& theSourceFeature,
702                                                              const FeaturePtr& theNewFeature,
703                                                              const CompositeFeaturePtr& theSketch,
704                                                              const bool /*isTemporary*/)
705 {
706   bool aChanged = false;
707   if (!theSourceFeature.get() || !theSourceFeature->data().get() ||
708       !theSourceFeature->data()->isValid())
709     return aChanged;
710
711 #ifdef DEBUG_RESTART
712   std::cout << "PartSet_SketcherReentrantMgr::copyReetntrantAttributes from '"
713             << theSourceFeature->data()->name() << "' to '" << theNewFeature->data()->name()
714             << "'" << std::endl;
715 #endif
716
717   std::string aFeatureKind = theSourceFeature->getKind();
718   /*if (aFeatureKind == SketchPlugin_Line::ID()) {
719     // Initialize new line with first point equal to end of previous
720     std::shared_ptr<ModelAPI_Data> aSFData = theSourceFeature->data();
721     std::shared_ptr<GeomDataAPI_Point2D> aSPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
722                                                  aSFData->attribute(SketchPlugin_Line::END_ID()));
723     std::shared_ptr<ModelAPI_Data> aNFData = theNewFeature->data();
724     std::shared_ptr<GeomDataAPI_Point2D> aNPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
725                                                  aNFData->attribute(SketchPlugin_Line::START_ID()));
726     aNPoint->setValue(aSPoint->x(), aSPoint->y());
727     PartSet_Tools::createConstraint(theSketch, aSPoint, aNPoint);
728
729     aNPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
730                                                  aSFData->attribute(SketchPlugin_Line::END_ID()));
731     aNPoint->setValue(aSPoint->x(), aSPoint->y());
732   }
733   else*/ if (aFeatureKind == SketchPlugin_MacroCircle::ID()) {
734     // set circle type
735     /*std::string aTypeAttributeId = SketchPlugin_MacroCircle::CIRCLE_TYPE();
736     AttributeStringPtr aSourceFeatureTypeAttr = theSourceFeature->data()->string(aTypeAttributeId);
737     AttributeStringPtr aNewFeatureTypeAttr = theNewFeature->data()->string(aTypeAttributeId);
738     if (aNewFeatureTypeAttr->value() != aTypeAttributeId) // do nothing if there is no changes
739       aNewFeatureTypeAttr->setValue(aSourceFeatureTypeAttr->value());
740     //ModuleBase_Tools::flushUpdated(theNewFeature);*/
741     //aChanged = true;
742   }
743   else if (aFeatureKind == SketchPlugin_MacroArc::ID()) {
744     // set arc type
745     /*std::string aTypeAttributeId = SketchPlugin_MacroArc::ARC_TYPE();
746     AttributeStringPtr aSourceFeatureTypeAttr = theSourceFeature->data()->string(aTypeAttributeId);
747     AttributeStringPtr aNewFeatureTypeAttr = theNewFeature->data()->string(aTypeAttributeId);
748     if (aNewFeatureTypeAttr->value() != aTypeAttributeId) // do nothing if there is no changes
749       aNewFeatureTypeAttr->setValue(aSourceFeatureTypeAttr->value());*/
750     //// if the arc is tangent, set coincidence to end point of the previous arc
751     //std::string anArcType = aSourceFeatureTypeAttr->value();
752     //if (anArcType == SketchPlugin_Arc::ARC_TYPE_TANGENT()) {
753     //  // get the last point of the previuos arc feature(geom point 2d)
754     //  std::shared_ptr<ModelAPI_Data> aSData = theSourceFeature->data();
755     //  std::shared_ptr<GeomDataAPI_Point2D> aSPointAttr =
756     //                                  std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
757     //                                  aSData->attribute(SketchPlugin_Arc::END_ID()));
758     //  // get point attribute on the current feature
759     //  AttributeRefAttrPtr aTangentPointAttr = theNewFeature->data()->refattr(
760     //                                                SketchPlugin_Arc::TANGENT_POINT_ID());
761     //  aTangentPointAttr->setAttr(aSPointAttr);
762
763     //  std::shared_ptr<GeomDataAPI_Point2D> aNPointAttr =
764     //                                std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
765     //                                theNewFeature->data()->attribute(SketchPlugin_Arc::END_ID()));
766     //  aNPointAttr->setValue(aSPointAttr->x(), aSPointAttr->y());
767
768     //}
769     //ModuleBase_Tools::flushUpdated(theNewFeature);
770     //aChanged = true;
771   }
772   else if (aFeatureKind == SketchPlugin_Trim::ID() ||
773            aFeatureKind == SketchPlugin_Split::ID()) {
774     std::string aPreviewObjectAttribute = aFeatureKind == SketchPlugin_Trim::ID() ?
775                 SketchPlugin_Trim::PREVIEW_OBJECT(): SketchPlugin_Split::PREVIEW_OBJECT();
776     std::string aPreviewPointAttribute = aFeatureKind == SketchPlugin_Trim::ID() ?
777                 SketchPlugin_Trim::PREVIEW_POINT(): SketchPlugin_Split::PREVIEW_POINT();
778     std::shared_ptr<ModelAPI_AttributeReference> aRefPreviewAttr =
779                       std::dynamic_pointer_cast<ModelAPI_AttributeReference>(
780                       theSourceFeature->data()->attribute(aPreviewObjectAttribute));
781     std::shared_ptr<ModelAPI_AttributeReference> aNRefPreviewAttr =
782                         std::dynamic_pointer_cast<ModelAPI_AttributeReference>(
783                         theNewFeature->data()->attribute(aPreviewObjectAttribute));
784     aNRefPreviewAttr->setValue(aRefPreviewAttr->value());
785     std::shared_ptr<GeomDataAPI_Point2D> aPointPreviewAttr =
786                       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
787                       theSourceFeature->data()->attribute(aPreviewPointAttribute));
788     std::shared_ptr<GeomDataAPI_Point2D> aNPointPreviewAttr =
789                       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
790                       theNewFeature->data()->attribute(aPreviewPointAttribute));
791     aNPointPreviewAttr->setValue(aPointPreviewAttr->x(), aPointPreviewAttr->y());
792   }
793   return aChanged;
794 }
795
796 bool PartSet_SketcherReentrantMgr::isTangentArc(ModuleBase_Operation* theOperation,
797                                                  const CompositeFeaturePtr& /*theSketch*/) const
798 {
799   bool aTangentArc = false;
800   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
801                                                                         (theOperation);
802   if (aFOperation && module()->sketchMgr()->isNestedSketchOperation(aFOperation)) {
803     FeaturePtr aFeature = aFOperation->feature();
804     if (aFeature.get() && aFeature->getKind() == SketchPlugin_MacroArc::ID()) {
805       AttributeStringPtr aTypeAttr = aFeature->data()->string(SketchPlugin_MacroArc::ARC_TYPE());
806       std::string anArcType = aTypeAttr.get() ? aTypeAttr->value() : "";
807       aTangentArc = anArcType == SketchPlugin_MacroArc::ARC_TYPE_BY_TANGENT_EDGE();
808     }
809   }
810   return aTangentArc;
811 }
812
813 void PartSet_SketcherReentrantMgr::updateAcceptAllAction()
814 {
815   CompositeFeaturePtr aSketch = module()->sketchMgr()->activeSketch();
816   if (aSketch.get())
817     workshop()->errorMgr()->updateAcceptAllAction(aSketch);
818 }
819
820 XGUI_Workshop* PartSet_SketcherReentrantMgr::workshop() const
821 {
822   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
823   return aConnector->workshop();
824 }
825
826 PartSet_Module* PartSet_SketcherReentrantMgr::module() const
827 {
828   return dynamic_cast<PartSet_Module*>(myWorkshop->module());
829 }
830
831 void PartSet_SketcherReentrantMgr::setInternalActiveWidget(ModuleBase_ModelWidget* theWidget)
832 {
833   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
834     (myWorkshop->currentOperation());
835   if (aFOperation)
836   {
837     XGUI_PropertyPanel* aPropertyPanel = dynamic_cast<XGUI_PropertyPanel*>
838       (aFOperation->propertyPanel());
839     if (aPropertyPanel)
840       aPropertyPanel->setInternalActiveWidget(theWidget);
841   }
842 }
843
844 void PartSet_SketcherReentrantMgr::onAutoConstraints(bool isOn)
845 {
846   myIsAutoConstraints = isOn;
847 }
848
849 void PartSet_SketcherReentrantMgr::addConstraints(const FeaturePtr& theFeature)
850 {
851   if (theFeature->getKind() != SketchPlugin_Line::ID())
852     return;
853
854   static GeomDir2dPtr myHorDir(new GeomAPI_Dir2d(1, 0));
855   static GeomDir2dPtr myVertDir(new GeomAPI_Dir2d(0, 1));
856
857   std::shared_ptr<ModelAPI_Data> aData = theFeature->data();
858   std::shared_ptr<GeomDataAPI_Point2D> aPoint1 = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
859       aData->attribute(SketchPlugin_Line::START_ID()));
860   std::shared_ptr<GeomDataAPI_Point2D> aPoint2 = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
861       aData->attribute(SketchPlugin_Line::END_ID()));
862   if (aPoint1.get() && aPoint2.get()) {
863     GeomLine2dPtr aLine(new GeomAPI_Lin2d(aPoint1->pnt(), aPoint2->pnt()));
864     GeomDir2dPtr aDir = aLine->direction();
865     double aHorAngle = fabs(myHorDir->angle(aDir));
866     double aVertAngle = fabs(myVertDir->angle(aDir));
867     if (aHorAngle > M_PI/2.)
868       aHorAngle = M_PI - aHorAngle;
869     if (aVertAngle > M_PI/2.)
870       aVertAngle = M_PI - aVertAngle;
871
872     double aTolerance = Config_PropManager::real(SKETCH_TAB_NAME, "angular_tolerance");
873     CompositeFeaturePtr aSketch = module()->sketchMgr()->activeSketch();
874     FeaturePtr aFeature;
875     if (aHorAngle < aTolerance)
876       // Add horizontal constraint
877       aFeature = aSketch->addFeature(SketchPlugin_ConstraintHorizontal::ID());
878     else if (aVertAngle < aTolerance)
879       // Add vertical constraint
880       aFeature = aSketch->addFeature(SketchPlugin_ConstraintVertical::ID());
881
882     if (aFeature.get()) {
883       aFeature->refattr(SketchPlugin_Constraint::ENTITY_A())->setObject(
884           theFeature->firstResult());
885     }
886   }
887 }