Salome HOME
Merge remote-tracking branch 'remotes/origin/master' into BR_coding_rules
[modules/shaper.git] / src / PartSet / PartSet_Module.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 #include "PartSet_Module.h"
4 #include "PartSet_WidgetSketchLabel.h"
5 #include "PartSet_Validators.h"
6 #include "PartSet_Tools.h"
7 #include "PartSet_PreviewPlanes.h"
8 #include "PartSet_WidgetPoint2d.h"
9 #include "PartSet_WidgetPoint2dDistance.h"
10 #include "PartSet_WidgetPoint2DFlyout.h"
11 #include "PartSet_WidgetShapeSelector.h"
12 #include "PartSet_WidgetMultiSelector.h"
13 #include "PartSet_WidgetSubShapeSelector.h"
14 #include "PartSet_WidgetEditor.h"
15 #include "PartSet_WidgetFileSelector.h"
16 #include "PartSet_WidgetSketchCreator.h"
17 #include "PartSet_SketcherMgr.h"
18 #include "PartSet_SketcherReetntrantMgr.h"
19 #include "PartSet_ResultSketchPrs.h"
20 #include "PartSet_MenuMgr.h"
21 #include "PartSet_CustomPrs.h"
22 #include "PartSet_IconFactory.h"
23 #include "PartSet_WidgetChoice.h"
24 #include "PartSet_OverconstraintListener.h"
25
26 #include "PartSet_Filters.h"
27 #include "PartSet_FilterInfinite.h"
28
29 #include <PartSetPlugin_Remove.h>
30 #include <PartSetPlugin_Part.h>
31 #include <PartSetPlugin_Duplicate.h>
32
33 #include <ModuleBase_Operation.h>
34 #include <ModuleBase_OperationAction.h>
35 #include <ModuleBase_IViewer.h>
36 #include <ModuleBase_IViewWindow.h>
37 #include <ModuleBase_IPropertyPanel.h>
38 #include <ModuleBase_WidgetEditor.h>
39 #include <ModuleBase_WidgetValidated.h>
40 #include <ModuleBase_FilterFactory.h>
41 #include <ModuleBase_Tools.h>
42 #include <ModuleBase_OperationFeature.h>
43 #include <ModuleBase_WidgetFactory.h>
44 #include <ModuleBase_OperationDescription.h>
45 #include <ModuleBase_ViewerPrs.h>
46
47 #include <ModelAPI_Object.h>
48 #include <ModelAPI_Events.h>
49 #include <ModelAPI_Validator.h>
50 #include <ModelAPI_Data.h>
51 #include <ModelAPI_Session.h>
52 #include <ModelAPI_ResultBody.h>
53 #include <ModelAPI_AttributeString.h>
54 #include <ModelAPI_AttributeSelectionList.h>
55 #include <ModelAPI_Tools.h>
56 #include <ModelAPI_ResultConstruction.h>
57
58 #include <GeomDataAPI_Point2D.h>
59 #include <GeomDataAPI_Point.h>
60 #include <GeomDataAPI_Dir.h>
61
62 #include <XGUI_Displayer.h>
63 #include <XGUI_Workshop.h>
64 #include <XGUI_OperationMgr.h>
65 #include <XGUI_PropertyPanel.h>
66 #include <XGUI_ModuleConnector.h>
67 #include <XGUI_ContextMenuMgr.h>
68 #include <XGUI_Tools.h>
69 #include <XGUI_ObjectsBrowser.h>
70 #include <XGUI_SelectionMgr.h>
71 #include <XGUI_DataModel.h>
72 #include <XGUI_ErrorMgr.h>
73 #include <XGUI_CustomPrs.h>
74 #include <XGUI_SelectionMgr.h>
75 #include <XGUI_ActionsMgr.h>
76
77 #include <SketchPlugin_Feature.h>
78 #include <SketchPlugin_Sketch.h>
79 #include <SketchPlugin_ConstraintAngle.h>
80 #include <SketchPlugin_ConstraintLength.h>
81 #include <SketchPlugin_ConstraintDistance.h>
82 #include <SketchPlugin_ConstraintParallel.h>
83 #include <SketchPlugin_ConstraintPerpendicular.h>
84 #include <SketchPlugin_ConstraintRadius.h>
85
86 #include <SketcherPrs_SymbolPrs.h>
87 #include <SketcherPrs_Coincident.h>
88 #include <SketcherPrs_Tools.h>
89
90 #include <Events_Loop.h>
91 #include <Config_PropManager.h>
92 #include <Config_Keywords.h>
93
94 #include <StdSelect_TypeOfFace.hxx>
95 #include <TopoDS_Vertex.hxx>
96 #include <TopoDS.hxx>
97 #include <TopoDS_Shape.hxx>
98 #include <BRep_Tool.hxx>
99 #include <AIS_Dimension.hxx>
100
101 #include <QObject>
102 #include <QMouseEvent>
103 #include <QString>
104 #include <QTimer>
105 #include <QApplication>
106 #include <QMessageBox>
107 #include <QMainWindow>
108 #include <QLineEdit>
109 #include <QString>
110
111 #include <GeomAlgoAPI_FaceBuilder.h>
112 #include <GeomDataAPI_Dir.h>
113
114 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
115
116 #ifdef _DEBUG
117 #include <QDebug>
118 #endif
119
120 /*!Create and return new instance of XGUI_Module*/
121 extern "C" PARTSET_EXPORT ModuleBase_IModule* createModule(ModuleBase_IWorkshop* theWshop)
122 {
123   return new PartSet_Module(theWshop);
124 }
125
126 PartSet_Module::PartSet_Module(ModuleBase_IWorkshop* theWshop)
127 : ModuleBase_IModule(theWshop),
128   myVisualLayerId(0),
129   myIsOperationIsLaunched(false)
130 {
131   new PartSet_IconFactory();
132
133   mySketchMgr = new PartSet_SketcherMgr(this);
134   mySketchReentrantMgr = new PartSet_SketcherReetntrantMgr(theWshop);
135
136   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWshop);
137   XGUI_Workshop* aWorkshop = aConnector->workshop();
138
139   ModuleBase_IViewer* aViewer = theWshop->viewer();
140   connect(aViewer, SIGNAL(keyRelease(ModuleBase_IViewWindow*, QKeyEvent*)),
141           this, SLOT(onKeyRelease(ModuleBase_IViewWindow*, QKeyEvent*)));
142   connect(aViewer, SIGNAL(viewTransformed(int)),
143           SLOT(onViewTransformed(int)));
144   connect(aViewer, SIGNAL(viewCreated(ModuleBase_IViewWindow*)),
145           SLOT(onViewCreated(ModuleBase_IViewWindow*)));
146   myMenuMgr = new PartSet_MenuMgr(this);
147   myCustomPrs = new PartSet_CustomPrs(theWshop);
148
149   myOverconstraintListener = new PartSet_OverconstraintListener(theWshop);
150
151   Events_Loop* aLoop = Events_Loop::loop();
152   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_DOCUMENT_CHANGED));
153
154   mySelectionFilters.Append(new PartSet_GlobalFilter(myWorkshop));
155   mySelectionFilters.Append(new PartSet_FilterInfinite(myWorkshop));
156
157   setDefaultConstraintShown();
158
159   Config_PropManager::registerProp("Visualization", "operation_parameter_color",
160                           "Reference shape wireframe color in operation", Config_Prop::Color,
161                           PartSet_CustomPrs::OPERATION_PARAMETER_COLOR());
162   Config_PropManager::registerProp("Visualization", "operation_result_color",
163                           "Result shape wireframe color in operation", Config_Prop::Color,
164                           PartSet_CustomPrs::OPERATION_RESULT_COLOR());
165   Config_PropManager::registerProp("Visualization", "operation_highlight_color",
166                           "Multi selector item color in operation", Config_Prop::Color,
167                           PartSet_CustomPrs::OPERATION_HIGHLIGHT_COLOR());
168 }
169
170 PartSet_Module::~PartSet_Module()
171 {
172   SelectMgr_ListIteratorOfListOfFilter aIt(mySelectionFilters);
173   for (; aIt.More(); aIt.Next()) {
174     Handle(SelectMgr_Filter) aFilter = aIt.Value();
175     if (!aFilter.IsNull())
176       aFilter.Nullify();
177   }
178   delete myCustomPrs;
179   delete myOverconstraintListener;
180 }
181
182 void PartSet_Module::activateSelectionFilters()
183 {
184   SelectMgr_ListIteratorOfListOfFilter aIt(mySelectionFilters);
185   for (; aIt.More(); aIt.Next()) {
186     Handle(SelectMgr_Filter) aFilter = aIt.Value();
187     if (!aFilter.IsNull())
188       myWorkshop->viewer()->addSelectionFilter(aFilter);
189   }
190 }
191
192 void PartSet_Module::deactivateSelectionFilters()
193 {
194   SelectMgr_ListIteratorOfListOfFilter aIt(mySelectionFilters);
195   for (; aIt.More(); aIt.Next()) {
196     Handle(SelectMgr_Filter) aFilter = aIt.Value();
197     if (!aFilter.IsNull())
198       myWorkshop->viewer()->removeSelectionFilter(aFilter);
199   }
200 }
201
202 void PartSet_Module::storeSelection()
203 {
204   sketchMgr()->storeSelection();
205 }
206
207 void PartSet_Module::restoreSelection()
208 {
209   sketchMgr()->restoreSelection();
210 }
211
212 void PartSet_Module::registerValidators()
213 {
214   //Registering of validators
215   SessionPtr aMgr = ModelAPI_Session::get();
216   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
217   aFactory->registerValidator("PartSet_DistanceSelection", new PartSet_DistanceSelection);
218   aFactory->registerValidator("PartSet_LengthSelection", new PartSet_LengthSelection);
219   aFactory->registerValidator("PartSet_PerpendicularSelection", new PartSet_PerpendicularSelection);
220   aFactory->registerValidator("PartSet_ParallelSelection", new PartSet_ParallelSelection);
221   aFactory->registerValidator("PartSet_RadiusSelection", new PartSet_RadiusSelection);
222   aFactory->registerValidator("PartSet_RigidSelection", new PartSet_RigidSelection);
223   aFactory->registerValidator("PartSet_CoincidentSelection", new PartSet_CoincidentSelection);
224   aFactory->registerValidator("PartSet_HVDirSelection", new PartSet_HVDirSelection);
225   aFactory->registerValidator("PartSet_TangentSelection", new PartSet_TangentSelection);
226   aFactory->registerValidator("PartSet_FilletSelection", new PartSet_FilletSelection);
227   aFactory->registerValidator("PartSet_AngleSelection", new PartSet_AngleSelection);
228   aFactory->registerValidator("PartSet_EqualSelection", new PartSet_EqualSelection);
229   aFactory->registerValidator("PartSet_CollinearSelection", new PartSet_CollinearSelection);
230   aFactory->registerValidator("PartSet_MiddlePointSelection", new PartSet_MiddlePointSelection);
231   aFactory->registerValidator("PartSet_DifferentObjects", new PartSet_DifferentObjectsValidator);
232   aFactory->registerValidator("PartSet_CoincidentAttr", new PartSet_CoincidentAttr);
233 }
234
235 void PartSet_Module::registerFilters()
236 {
237   //Registering of selection filters
238   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
239   ModuleBase_FilterFactory* aFactory = aConnector->selectionFilters();
240 }
241
242 void PartSet_Module::registerProperties()
243 {
244   Config_PropManager::registerProp(SKETCH_TAB_NAME, "planes_size", "Size", Config_Prop::Double,
245                                    PLANE_SIZE);
246   Config_PropManager::registerProp(SKETCH_TAB_NAME, "planes_thickness", "Thickness",
247                                    Config_Prop::Integer, SKETCH_WIDTH);
248   Config_PropManager::registerProp(SKETCH_TAB_NAME, "rotate_to_plane",
249     "Rotate to plane when selected", Config_Prop::Boolean, "false");
250 }
251
252 void PartSet_Module::connectToPropertyPanel(ModuleBase_ModelWidget* theWidget,
253                                             const bool isToConnect)
254 {
255   mySketchMgr->connectToPropertyPanel(theWidget, isToConnect);
256 }
257
258 void PartSet_Module::operationCommitted(ModuleBase_Operation* theOperation)
259 {
260   if (sketchMgr()->isNestedSketchOperation(theOperation)) {
261     mySketchMgr->commitNestedSketch(theOperation);
262   }
263
264   /// Restart sketcher operations automatically
265   if (!mySketchReentrantMgr->operationCommitted(theOperation)) {
266
267     ModuleBase_OperationFeature* aFOperation =
268       dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
269     if (aFOperation && !aFOperation->isEditOperation()) {
270       // the selection is cleared after commit the create operation
271       // in order to do not use the same selected objects in the restarted operation
272       // for common behaviour, the selection is cleared even if the operation is not restarted
273       getWorkshop()->selector()->clearSelection();
274     }
275   }
276 }
277
278 void PartSet_Module::operationAborted(ModuleBase_Operation* theOperation)
279 {
280   /// Restart sketcher operations automatically
281   mySketchReentrantMgr->operationAborted(theOperation);
282 }
283
284 void PartSet_Module::operationStarted(ModuleBase_Operation* theOperation)
285 {
286   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
287                                                                                 (theOperation);
288   if (aFOperation) {
289     XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(workshop());
290     XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
291
292     ModuleBase_ModelWidget* aFilledWidget = 0;
293     bool aPostonedWidgetActivation = false;
294
295     FeaturePtr aFeature = aFOperation->feature();
296     /// Restart sketcher operations automatically
297     /// it is important to call method of sketch reentrant manager before filling of PP
298     /// because it fills some created feature attributes, these new values should be used
299     /// to fill the property panel
300     mySketchReentrantMgr->operationStarted(theOperation);
301
302     aWorkshop->fillPropertyPanel(aFOperation);
303     // filling the operation values by the current selection
304     // if the operation can be committed after the controls filling, the method perform should
305     // be stopped. Otherwise unnecessary presentations can be shown(e.g. operation prs in sketch)
306     bool isOperationCommitted = false;
307     if (!aFOperation->isEditOperation()) {
308       std::string aGreedAttributeId = ModuleBase_Tools::findGreedAttribute(workshop(), aFeature);
309       // if there is a greed attribute, automatic commit by preselection
310       // for this feature is prohibited
311       aFilledWidget = aFOperation->activateByPreselection(aGreedAttributeId);
312       if (currentOperation() != aFOperation)
313         isOperationCommitted = true;
314       else {
315         if (aGreedAttributeId.empty()) {
316           // a signal should be emitted before the next widget activation
317           // because, the activation of the next widget will give a focus to the widget.
318           // As a result the value of the widget is initialized.
319           // And commit may happens until the value is entered.
320           if (aFilledWidget) {
321             if (mySketchReentrantMgr->canBeCommittedByPreselection())
322               isOperationCommitted = mySketchMgr->operationActivatedByPreselection();
323             // activate the next obligatory widget
324             if (!isOperationCommitted)
325               aPropertyPanel->activateNextWidget(aFilledWidget);
326           }
327         }
328         else { // there is a greed widget
329           const QList<ModuleBase_ModelWidget*>& aWidgets = aPropertyPanel->modelWidgets();
330           std::string aFirstAttributeId = aWidgets.front()->attributeID();
331           // activate next widget after greeded if it is the first widget in the panel
332           // else the first panel widget is already activated by operation start
333           if (aFirstAttributeId == aGreedAttributeId)
334             aPostonedWidgetActivation = true;
335         }
336       }
337     } if (!isOperationCommitted) {
338       workshop()->updateCommandStatus();
339       aWorkshop->connectToPropertyPanel(true);
340       updateSketcherOnStart(aFOperation);
341       updatePresentationsOnStart(aFOperation);
342
343       // the objects of the current operation should be deactivated
344       QObjectPtrList anObjects;
345       anObjects.append(aFeature);
346       std::list<ResultPtr> aResults;
347       ModelAPI_Tools::allResults(aFeature, aResults);
348       std::list<ResultPtr>::const_iterator aIt;
349       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
350         anObjects.append(*aIt);
351       }
352       QObjectPtrList::const_iterator anIt = anObjects.begin(), aLast = anObjects.end();
353       for (; anIt != aLast; anIt++)
354         aWorkshop->deactivateActiveObject(*anIt, false);
355       if (anObjects.size() > 0) {
356         XGUI_Displayer* aDisplayer = aWorkshop->displayer();
357         aDisplayer->updateViewer();
358       }
359     }
360     if (aPostonedWidgetActivation) {
361       // if the widget is an empty in the chain of activated widgets, the current operation
362       // is restarted. It should be performed after functionality of the operation starting
363       aPropertyPanel->activateNextWidget(aFilledWidget);
364     }
365   }
366 }
367
368 void PartSet_Module::updateSketcherOnStart(ModuleBase_Operation* theOperation)
369 {
370   if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
371     mySketchMgr->startSketch(theOperation);
372   }
373   else if (sketchMgr()->isNestedSketchOperation(theOperation)) {
374     mySketchMgr->startNestedSketch(theOperation);
375   }
376 }
377
378 void PartSet_Module::updatePresentationsOnStart(ModuleBase_Operation* theOperation)
379 {
380   ModuleBase_OperationFeature* aFOperation =
381     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
382   if (aFOperation) {
383     myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeArguments, true);
384     myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeResults, true);
385   }
386 }
387
388 void PartSet_Module::operationResumed(ModuleBase_Operation* theOperation)
389 {
390   ModuleBase_IModule::operationResumed(theOperation);
391
392   ModuleBase_OperationFeature* aFOperation =
393     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
394   if (aFOperation) {
395     myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeArguments, true);
396     myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeResults, true);
397   }
398 }
399
400 void PartSet_Module::operationStopped(ModuleBase_Operation* theOperation)
401 {
402   bool isModifiedArgs = myCustomPrs->deactivate(ModuleBase_IModule::CustomizeArguments, false);
403   bool isModifiedResults = myCustomPrs->deactivate(ModuleBase_IModule::CustomizeResults, false);
404   bool isModified = isModifiedArgs || isModifiedResults;
405
406   if (sketchMgr()->isNestedSketchOperation(theOperation)) {
407     mySketchMgr->stopNestedSketch(theOperation);
408   }
409   else if (PartSet_SketcherMgr::isSketchOperation(theOperation))
410     setDefaultConstraintShown();
411
412   //VSV: Viewer is updated on feature update and redisplay
413   if (isModified) {
414     XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
415     XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
416     aDisplayer->updateViewer();
417   }
418
419   QMap<PartSet_Tools::ConstraintVisibleState, bool>::const_iterator
420     anIt = myHasConstraintShown.begin(), aLast = myHasConstraintShown.end();
421   for (; anIt != aLast; anIt++) {
422     mySketchMgr->updateBySketchParameters(anIt.key(), anIt.value());
423   }
424 }
425
426 ModuleBase_Operation* PartSet_Module::currentOperation() const
427 {
428   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
429   XGUI_OperationMgr* anOpMgr = aConnector->workshop()->operationMgr();
430   return anOpMgr->currentOperation();
431 }
432
433 bool PartSet_Module::canUndo() const
434 {
435   bool aCanUndo = false;
436   SessionPtr aMgr = ModelAPI_Session::get();
437   if (aMgr->hasModuleDocument() && aMgr->canUndo()) {
438     aCanUndo = !aMgr->isOperation();
439     if (!aCanUndo) // check the enable state additionally by sketch manager
440       aCanUndo = aMgr->canUndo();
441   }
442   return aCanUndo;
443 }
444
445 bool PartSet_Module::canRedo() const
446 {
447   bool aCanRedo = false;
448   SessionPtr aMgr = ModelAPI_Session::get();
449   if (aMgr->hasModuleDocument() && aMgr->canRedo()) {
450     aCanRedo = !aMgr->isOperation();
451     if (!aCanRedo) // check the enable state additionally by sketch manager
452       aCanRedo = aMgr->canRedo();
453   }
454   return aCanRedo;
455 }
456
457 bool PartSet_Module::canApplyAction(const ObjectPtr& theObject, const QString& theActionId) const
458 {
459   bool aValid = true;
460   if (theActionId == "MOVE_CMD") {
461     FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
462     if (aFeature) {
463       ResultPtr aResult = ModuleBase_Tools::firstResult(aFeature);
464       // part features can not be moved in the history.
465       if (aResult.get() && aResult->groupName() == ModelAPI_ResultPart::group())
466         aValid = false;
467     }
468   }
469   return aValid;
470 }
471
472 bool PartSet_Module::canEraseObject(const ObjectPtr& theObject) const
473 {
474   // the sketch manager put the restriction to the objects erase
475   return mySketchMgr->canEraseObject(theObject);
476 }
477
478 bool PartSet_Module::canDisplayObject(const ObjectPtr& theObject) const
479 {
480   // the sketch manager put the restriction to the objects display
481   return mySketchMgr->canDisplayObject(theObject);
482 }
483
484 /*void PartSet_Module::processHiddenObject(const std::list<ObjectPtr>& theObjects)
485 {
486   mySketchMgr->processHiddenObject(theObjects);
487 }*/
488
489 bool PartSet_Module::canActivateSelection(const ObjectPtr& theObject) const
490 {
491   bool aCanActivate = ModuleBase_IModule::canActivateSelection(theObject);
492
493   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
494   bool isSketchOp = PartSet_SketcherMgr::isSketchOperation(anOperation),
495        isNestedOp = sketchMgr()->isNestedSketchOperation(anOperation);
496   if (isSketchOp || isNestedOp) {
497     // in active sketch operation it is possible to activate operation object in selection
498     // in the edit operation, e.g. points of the line can be moved when the line is edited
499     ModuleBase_OperationFeature* aFOperation =
500       dynamic_cast<ModuleBase_OperationFeature*>(anOperation);
501     aCanActivate = aCanActivate || (aFOperation && aFOperation->isEditOperation());
502   }
503   return aCanActivate;
504 }
505
506 bool PartSet_Module::addViewerMenu(const QMap<QString, QAction*>& theStdActions,
507                                    QWidget* theParent,
508                                    QMap<int, QAction*>& theMenuActions) const
509 {
510   return myMenuMgr->addViewerMenu(theStdActions, theParent, theMenuActions);
511 }
512
513 void PartSet_Module::updateViewerMenu(const QMap<QString, QAction*>& theStdActions)
514 {
515   myMenuMgr->updateViewerMenu(theStdActions);
516 }
517
518 bool PartSet_Module::isActionEnableStateFixed(const int theActionId) const
519 {
520   bool isEnabledFixed = false;
521   if (theActionId == XGUI_ActionsMgr::AcceptAll &&
522       mySketchReentrantMgr->isInternalEditStarted())
523     isEnabledFixed = true;
524   return isEnabledFixed;
525 }
526
527 QString PartSet_Module::getFeatureError(const FeaturePtr& theFeature)
528 {
529   QString anError = ModuleBase_IModule::getFeatureError(theFeature);
530   if (anError.isEmpty())
531     anError = sketchMgr()->getFeatureError(theFeature);
532
533   return anError;
534 }
535
536 void PartSet_Module::grantedOperationIds(ModuleBase_Operation* theOperation,
537                                          QStringList& theIds) const
538 {
539   myMenuMgr->grantedOperationIds(theOperation, theIds);
540
541   if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
542     XGUI_Workshop* aWorkshop = getWorkshop();
543     theIds.append(aWorkshop->contextMenuMgr()->action("DELETE_CMD")->text());
544   }
545 }
546
547 void PartSet_Module::activeSelectionModes(QIntList& theModes)
548 {
549   theModes.clear();
550   if (mySketchMgr->activeSketch().get())
551     PartSet_SketcherMgr::sketchSelectionModes(theModes);
552 }
553
554 void PartSet_Module::customSubShapesSelectionModes(QIntList& theTypes)
555 {
556   if (theTypes.contains(TopAbs_FACE))
557     theTypes.append(SketcherPrs_Tools::Sel_Sketch_Face);
558   if (theTypes.contains(TopAbs_WIRE))
559     theTypes.append(SketcherPrs_Tools::Sel_Sketch_Wire);
560 }
561
562 bool PartSet_Module::isMouseOverWindow()
563 {
564   return mySketchMgr->isMouseOverWindow();
565 }
566
567 bool PartSet_Module::isSketchNeutralPointActivated() const
568 {
569   bool isNeutralPoint = true;
570   if (sketchReentranceMgr()->isInternalEditStarted())
571     isNeutralPoint = false;
572   if (myIsOperationIsLaunched)
573     isNeutralPoint = false;
574
575   return isNeutralPoint;
576 }
577
578 void PartSet_Module::closeDocument()
579 {
580   clearViewer();
581 }
582
583 void PartSet_Module::clearViewer()
584 {
585   myCustomPrs->clearPrs();
586
587   XGUI_Workshop* aWorkshop = getWorkshop();
588   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
589   aDisplayer->deactivateSelectionFilters();
590 }
591
592 void PartSet_Module::propertyPanelDefined(ModuleBase_Operation* theOperation)
593 {
594   ModuleBase_OperationFeature* aFOperation =
595     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
596   if (!aFOperation)
597     return;
598
599   ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
600   // we have to manually activate the sketch label in edit mode
601   if (PartSet_SketcherMgr::isSketchOperation(aFOperation) &&  (aFOperation->isEditOperation()))
602     aPanel->activateWidget(aPanel->modelWidgets().first());
603 }
604
605 bool PartSet_Module::createWidgets(ModuleBase_Operation* theOperation,
606                                    QList<ModuleBase_ModelWidget*>& theWidgets) const
607 {
608   bool aProcessed = false;
609
610   ModuleBase_OperationFeature* aFOperation =
611     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
612   XGUI_Workshop* aWorkshop = getWorkshop();
613   XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
614   if (mySketchMgr->activeSketch().get() && aFOperation && aPropertyPanel) {
615     ModuleBase_ISelection* aSelection = workshop()->selection();
616     // click on a point in sketch leads here with the point is highlighted, not yet selected
617     QList<ModuleBase_ViewerPrsPtr> aPreselection = aSelection->getHighlighted();
618     if (aPreselection.size() == 1) {
619       ModuleBase_ViewerPrsPtr aSelectedPrs = aPreselection[0];
620       ObjectPtr anObject = aSelectedPrs->object();
621
622       FeaturePtr aFeature = ModelAPI_Feature::feature(anObject);
623       FeaturePtr anOpFeature = aFOperation->feature();
624       GeomShapePtr aShape = aSelectedPrs->shape();
625       // click on the digit of dimension constrain comes here
626       // with an empty shape, so we need the check
627       if (aFeature == anOpFeature && aShape.get() && !aShape->isNull()) {
628         const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
629         AttributePtr anAttribute = PartSet_Tools::findAttributeBy2dPoint(anObject, aTDShape,
630                                                                mySketchMgr->activeSketch());
631         if (anAttribute.get()) {
632           QString aXmlRepr = aFOperation->getDescription()->xmlRepresentation();
633           ModuleBase_WidgetFactory aFactory(aXmlRepr.toStdString(), workshop());
634
635           const std::string anAttributeId = anAttribute->id();
636           aFactory.createWidget(aPropertyPanel->contentWidget(), anAttributeId);
637
638           theWidgets = aFactory.getModelWidgets();
639           // it is possible that the point does not present in XML definition,
640           // in this case, we assume that it is not processed by this module
641           // e.g. "Intersection point" feature
642           aProcessed = !theWidgets.isEmpty();
643         }
644       }
645     }
646   }
647   return aProcessed;
648 }
649
650 void PartSet_Module::onSelectionChanged()
651 {
652   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
653   if (!aOperation)
654     return;
655
656   bool isSketcherOp = false;
657   // An edit operation is enable only if the current opeation is the sketch operation
658   if (mySketchMgr->activeSketch()) {
659     if (PartSet_Tools::sketchPlane(mySketchMgr->activeSketch()))
660       isSketcherOp = PartSet_SketcherMgr::isSketchOperation(aOperation);
661   }
662   if (isSketcherOp) {
663     // Editing of constraints can be done on selection
664     ModuleBase_ISelection* aSelect = myWorkshop->selection();
665     QList<ModuleBase_ViewerPrsPtr> aSelected = aSelect->getSelected();
666     if (aSelected.size() == 1) {
667       ModuleBase_ViewerPrsPtr aPrs = aSelected.first();
668       ObjectPtr aObject = aPrs->object();
669       FeaturePtr aFeature = ModelAPI_Feature::feature(aObject);
670       if (aFeature) {
671         std::string aId = aFeature->getKind();
672         if ((aId == SketchPlugin_ConstraintRadius::ID()) ||
673             (aId == SketchPlugin_ConstraintLength::ID()) ||
674             (aId == SketchPlugin_ConstraintDistance::ID()) ||
675             (aId == SketchPlugin_ConstraintAngle::ID())) {
676           editFeature(aFeature);
677         }
678       }
679     }
680   }
681 }
682
683 void PartSet_Module::onKeyRelease(ModuleBase_IViewWindow* theWnd, QKeyEvent* theEvent)
684 {
685   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
686   XGUI_OperationMgr* anOpMgr = aConnector->workshop()->operationMgr();
687   anOpMgr->onKeyReleased(theWnd->viewPort(), theEvent);
688 }
689
690 ModuleBase_ModelWidget* PartSet_Module::createWidgetByType(const std::string& theType,
691                                                            QWidget* theParent,
692                                                            Config_WidgetAPI* theWidgetApi)
693 {
694   ModuleBase_IWorkshop* aWorkshop = workshop();
695   XGUI_Workshop* aXUIWorkshop = getWorkshop();
696   ModuleBase_ModelWidget* aWgt = NULL;
697   if (theType == "sketch-start-label") {
698     PartSet_WidgetSketchLabel* aLabelWgt = new PartSet_WidgetSketchLabel(theParent, aWorkshop,
699                                                                theWidgetApi, myHasConstraintShown);
700     connect(aLabelWgt, SIGNAL(planeSelected(const std::shared_ptr<GeomAPI_Pln>&)),
701       mySketchMgr, SLOT(onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>&)));
702     connect(aLabelWgt, SIGNAL(showConstraintToggled(int, bool)),
703       mySketchMgr, SLOT(onShowConstraintsToggle(int, bool)));
704     aWgt = aLabelWgt;
705   } else if (theType == "sketch-2dpoint_selector") {
706     PartSet_WidgetPoint2D* aPointWgt = new PartSet_WidgetPoint2D(theParent, aWorkshop,
707                                                                  theWidgetApi);
708     aPointWgt->setSketch(mySketchMgr->activeSketch());
709     connect(aPointWgt, SIGNAL(vertexSelected()), sketchReentranceMgr(), SLOT(onVertexSelected()));
710     aWgt = aPointWgt;
711   }else if (theType == "sketch-2dpoint_flyout_selector") {
712     PartSet_WidgetPoint2DFlyout* aPointWgt = new PartSet_WidgetPoint2DFlyout(theParent, aWorkshop,
713                                                                              theWidgetApi);
714     aPointWgt->setSketch(mySketchMgr->activeSketch());
715     connect(aPointWgt, SIGNAL(vertexSelected()), sketchReentranceMgr(), SLOT(onVertexSelected()));
716     aWgt = aPointWgt;
717   } else if (theType == "point2ddistance") {
718     PartSet_WidgetPoint2dDistance* aDistanceWgt = new PartSet_WidgetPoint2dDistance(theParent,
719                                                                      aWorkshop, theWidgetApi);
720     aDistanceWgt->setSketch(mySketchMgr->activeSketch());
721     aWgt = aDistanceWgt;
722   } else if (theType == "sketch_shape_selector") {
723     PartSet_WidgetShapeSelector* aShapeSelectorWgt =
724                           new PartSet_WidgetShapeSelector(theParent, aWorkshop, theWidgetApi);
725     aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch());
726     aWgt = aShapeSelectorWgt;
727   } else if (theType == "sketch_multi_selector") {
728     PartSet_WidgetMultiSelector* aShapeSelectorWgt =
729                           new PartSet_WidgetMultiSelector(theParent, aWorkshop, theWidgetApi);
730     aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch());
731     aWgt = aShapeSelectorWgt;
732   }
733   else if (theType == "sketch_sub_shape_selector") {
734     PartSet_WidgetSubShapeSelector* aSubShapeSelectorWgt =
735                           new PartSet_WidgetSubShapeSelector(theParent, aWorkshop, theWidgetApi);
736     aSubShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch());
737     aWgt = aSubShapeSelectorWgt;
738   }
739   else if (theType == WDG_DOUBLEVALUE_EDITOR) {
740     aWgt = new PartSet_WidgetEditor(theParent, aWorkshop, theWidgetApi);
741   } else if (theType == "export_file_selector") {
742     aWgt = new PartSet_WidgetFileSelector(theParent, aWorkshop, theWidgetApi);
743   } else if (theType == "sketch_launcher") {
744     aWgt = new PartSet_WidgetSketchCreator(theParent, this, theWidgetApi);
745   } else if (theType == "module_choice") {
746     aWgt = new PartSet_WidgetChoice(theParent, theWidgetApi);
747     connect(aWgt, SIGNAL(itemSelected(ModuleBase_ModelWidget*, int)),
748             this, SLOT(onChoiceChanged(ModuleBase_ModelWidget*, int)));
749   }
750   return aWgt;
751 }
752
753 ModuleBase_ModelWidget* PartSet_Module::activeWidget() const
754 {
755   ModuleBase_ModelWidget* anActiveWidget = 0;
756
757   anActiveWidget = mySketchReentrantMgr->internalActiveWidget();
758   if (!anActiveWidget) {
759     ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
760     if (aOperation) {
761       ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
762       anActiveWidget = aPanel ? aPanel->activeWidget() : 0;
763     }
764   }
765   return anActiveWidget;
766 }
767
768 bool PartSet_Module::deleteObjects()
769 {
770   bool isProcessed = false;
771
772   XGUI_Workshop* aWorkshop = getWorkshop();
773   XGUI_OperationMgr* anOpMgr = aWorkshop->operationMgr();
774
775   //SessionPtr aMgr = ModelAPI_Session::get();
776   // 1. check whether the delete should be processed in the module
777   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
778   bool isSketchOp = PartSet_SketcherMgr::isSketchOperation(anOperation),
779        isNestedOp = sketchMgr()->isNestedSketchOperation(anOperation);
780   if (isSketchOp || isNestedOp) {
781     isProcessed = true;
782     // 2. find selected presentations
783     // selected objects should be collected before the current operation abort because
784     // the abort leads to selection lost on constraint objects. It can be corrected after #386 issue
785     ModuleBase_ISelection* aSel = workshop()->selection();
786     QObjectPtrList aSelectedObj = aSel->selectedPresentations();
787     // if there are no selected objects in the viewer, that means that the selection in another
788     // place cased this method. It is necessary to return the false value to understande in above
789     // method that delete is not processed
790     if (aSelectedObj.count() == 0)
791       return false;
792
793     // avoid delete of the objects, which are not belong to the current sketch
794     // in order to do not delete results of other sketches
795     QObjectPtrList aSketchObjects;
796     QObjectPtrList::const_iterator anIt = aSelectedObj.begin(), aLast = aSelectedObj.end();
797     for ( ; anIt != aLast; anIt++) {
798       ObjectPtr anObject = *anIt;
799       if (mySketchMgr->isObjectOfSketch(anObject)) {
800         // sketch feature should be used in this list because workshop deletes features only
801         // results are skipped
802         FeaturePtr aSketchFeature = ModelAPI_Feature::feature(anObject);
803         aSketchObjects.append(aSketchFeature);
804       }
805     }
806     // if the selection contains only local selected presentations from other sketches,
807     // the Delete operation should not be done at all
808     if (aSketchObjects.size() == 0)
809       return true;
810
811     // 3. start operation
812     QString aDescription = aWorkshop->contextMenuMgr()->action("DELETE_CMD")->text();
813     ModuleBase_OperationAction* anOpAction = new ModuleBase_OperationAction(aDescription, this);
814
815     // the active nested sketch operation should be aborted unconditionally
816     // the Delete action should be additionally granted for the Sketch operation
817     // in order to do not abort/commit it
818     if (!anOpMgr->canStartOperation(anOpAction->id()))
819       return true; // the objects are processed but can not be deleted
820
821     anOpMgr->startOperation(anOpAction);
822
823     // WORKAROUND, should be done to avoid viewer highlight update after deletetion of objects
824     // the problem is in AIS Dimensions recompute
825     // if a line and the dim are removed, line is the first
826     // it causes the AIS recompute, where the base line is null,
827     // the result is empty AIS in the viewer
828     XGUI_Tools::workshop(myWorkshop)->selector()->clearSelection();
829
830     // 4. delete features
831     // sketch feature should be skipped, only sub-features can be removed
832     // when sketch operation is active
833     aWorkshop->deleteFeatures(aSketchObjects);
834     // 5. stop operation
835     anOpMgr->commitOperation();
836   }
837   return isProcessed;
838 }
839
840 void PartSet_Module::onFeatureTriggered()
841 {
842   // is commented for imp: Unpressing the button of the current action must behave like
843   // a validation if the entity can be created (instead of Cancel, as currently)
844   /*QAction* aCmd = dynamic_cast<QAction*>(sender());
845   if (aCmd->isCheckable() && aCmd->isChecked()) {
846     // 1. check whether the delete should be processed in the module
847     ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
848     bool isNestedOp = myModule->sketchMgr()->isNestedCreateOperation(anOperation);
849     if (isNestedOp) {
850       // in case if in the viewer nothing is displayed, the create operation should not be
851       // comitted even if all values of the feature are initialized
852       if (!mySketchMgr->canDisplayCurrentCreatedFeature()) {
853         // the action information should be saved before the operation is aborted
854         // because this abort leads to update command status, which unchecks this action
855         anOperation->abort();
856         launchOperation(aCmd->data().toString());
857       }
858     }
859   }*/
860   ModuleBase_IModule::onFeatureTriggered();
861 }
862
863 void PartSet_Module::editFeature(FeaturePtr theFeature)
864 {
865   storeConstraintsState(theFeature->getKind());
866   ModuleBase_IModule::editFeature(theFeature);
867 }
868
869 bool PartSet_Module::canCommitOperation() const
870 {
871   return true;
872 }
873
874 void PartSet_Module::launchOperation(const QString& theCmdId)
875 {
876   myIsOperationIsLaunched = true;
877   storeConstraintsState(theCmdId.toStdString());
878   updateConstraintsState(theCmdId.toStdString());
879
880   ModuleBase_IModule::launchOperation(theCmdId);
881
882   myIsOperationIsLaunched = false;
883 }
884
885 void PartSet_Module::storeConstraintsState(const std::string& theFeatureKind)
886 {
887   if (myWorkshop->currentOperation() &&
888       myWorkshop->currentOperation()->id().toStdString() == SketchPlugin_Sketch::ID()) {
889     const QMap<PartSet_Tools::ConstraintVisibleState, bool>& aShownStates =
890                                                   mySketchMgr->showConstraintStates();
891     myHasConstraintShown = aShownStates;
892   }
893 }
894
895 void PartSet_Module::updateConstraintsState(const std::string& theFeatureKind)
896 {
897   if (PartSet_SketcherMgr::constraintsIdList().contains(theFeatureKind.c_str()) ||
898       PartSet_SketcherMgr::replicationsIdList().contains(theFeatureKind.c_str())) {
899     // Show constraints if a constraint was anOperation
900     mySketchMgr->updateBySketchParameters(PartSet_Tools::Geometrical, true);
901     mySketchMgr->updateBySketchParameters(PartSet_Tools::Dimensional, true);
902     mySketchMgr->updateBySketchParameters(PartSet_Tools::Expressions,
903                                           myHasConstraintShown[PartSet_Tools::Expressions]);
904   }
905 }
906
907 void PartSet_Module::onObjectDisplayed(ObjectPtr theObject, AISObjectPtr theAIS)
908 {
909   Handle(AIS_InteractiveObject) anAIS = theAIS->impl<Handle(AIS_InteractiveObject)>();
910   if (!anAIS.IsNull()) {
911     Handle(AIS_InteractiveContext) aCtx = anAIS->GetContext();
912     Handle(AIS_Dimension) aDim = Handle(AIS_Dimension)::DownCast(anAIS);
913     if (!aDim.IsNull()) {
914       aCtx->SetZLayer(aDim, myVisualLayerId);
915     } else {
916       Handle(SketcherPrs_SymbolPrs) aCons = Handle(SketcherPrs_SymbolPrs)::DownCast(anAIS);
917       if (!aCons.IsNull())
918         aCtx->SetZLayer(aCons, myVisualLayerId);
919     }
920   }
921 }
922
923 void PartSet_Module::onBeforeObjectErase(ObjectPtr theObject, AISObjectPtr theAIS)
924 {
925   // this is obsolete
926   // it should be recomputed in order to disappear in the viewer if the corresponded object
927   // is erased
928   //if (myCustomPrs->isActive())
929   //  myCustomPrs->redisplay(theObject, false);
930 }
931
932 void PartSet_Module::onViewTransformed(int theTrsfType)
933 {
934   // Set length of arrows constant in pixel size
935   // if the operation is panning or rotate or panglobal then do nothing
936   if ((theTrsfType == 1) || (theTrsfType == 3) || (theTrsfType == 4))
937     return;
938   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
939   Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
940   if (aContext.IsNull())
941     return;
942
943   //Handle(V3d_View) aView = aViewer->activeView();
944
945   XGUI_Workshop* aWorkshop = getWorkshop();
946   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
947   Handle(V3d_Viewer) aV3dViewer = aContext->CurrentViewer();
948   Handle(V3d_View) aView;
949   double aScale = 0;
950   for (aV3dViewer->InitDefinedViews();
951        aV3dViewer->MoreDefinedViews();
952        aV3dViewer->NextDefinedViews()) {
953     Handle(V3d_View) aV = aV3dViewer->DefinedView();
954     double aS = aV->Scale();
955     if (aS > aScale) {
956       aScale = aS;
957       aView = aV;
958     }
959   }
960   if (aView.IsNull())
961     return;
962   double aLen = aView->Convert(SketcherPrs_Tools::getDefaultArrowSize());
963
964   double aPrevLen = SketcherPrs_Tools::getArrowSize();
965   SketcherPrs_Tools::setArrowSize(aLen);
966   const double aPrevScale = aViewer->Scale(aViewer->activeView());
967   const double aCurScale = aViewer->activeView()->Camera()->Scale();
968   aViewer->SetScale(aViewer->activeView(), aCurScale);
969   SketcherPrs_Tools::setTextHeight (aCurScale / aPrevScale * SketcherPrs_Tools::getTextHeight());
970   bool isModified = false;
971   QList<AISObjectPtr> aPrsList = aDisplayer->displayedPresentations();
972   foreach (AISObjectPtr aAIS, aPrsList) {
973     Handle(AIS_InteractiveObject) aAisObj = aAIS->impl<Handle(AIS_InteractiveObject)>();
974
975     Handle(AIS_Dimension) aDim = Handle(AIS_Dimension)::DownCast(aAisObj);
976     if (!aDim.IsNull()) {
977       aDim->DimensionAspect()->ArrowAspect()->SetLength(aLen);
978       aContext->Redisplay(aDim, false);
979       isModified = true;
980     }
981   }
982   if (isModified)
983     aDisplayer->updateViewer();
984 }
985
986 bool PartSet_Module::isCustomPrsActivated(const ModuleBase_CustomizeFlag& theFlag) const
987 {
988   return myCustomPrs->isActive(theFlag);
989 }
990
991 void PartSet_Module::activateCustomPrs(const FeaturePtr& theFeature,
992                                        const ModuleBase_CustomizeFlag& theFlag,
993                                        const bool theUpdateViewer)
994 {
995   myCustomPrs->activate(theFeature, theFlag, theUpdateViewer);
996 }
997
998 void PartSet_Module::deactivateCustomPrs(const ModuleBase_CustomizeFlag& theFlag,
999                                          const bool theUpdateViewer)
1000 {
1001   myCustomPrs->deactivate(theFlag, theUpdateViewer);
1002 }
1003
1004 bool PartSet_Module::customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
1005                                            std::shared_ptr<GeomAPI_ICustomPrs> theCustomPrs)
1006 {
1007   bool aCustomized = false;
1008
1009   XGUI_Workshop* aWorkshop = getWorkshop();
1010   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1011   ObjectPtr anObject = aDisplayer->getObject(thePrs);
1012   if (!anObject)
1013     return aCustomized;
1014
1015   if (!theResult.get()) {
1016     bool isConflicting = myOverconstraintListener->isConflictingObject(anObject);
1017     // customize sketch symbol presentation
1018     if (thePrs.get()) {
1019       Handle(AIS_InteractiveObject) anAISIO = thePrs->impl<Handle(AIS_InteractiveObject)>();
1020       if (!anAISIO.IsNull()) {
1021         if (!Handle(SketcherPrs_SymbolPrs)::DownCast(anAISIO).IsNull()) {
1022           Handle(SketcherPrs_SymbolPrs) aPrs = Handle(SketcherPrs_SymbolPrs)::DownCast(anAISIO);
1023           if (!aPrs.IsNull()) {
1024             std::vector<int> aColor;
1025             myOverconstraintListener->getConflictingColor(aColor);
1026             aPrs->SetConflictingConstraint(isConflicting, aColor);
1027             aCustomized = true;
1028           }
1029         } else if (!Handle(SketcherPrs_Coincident)::DownCast(anAISIO).IsNull()) {
1030           Handle(SketcherPrs_Coincident) aPrs = Handle(SketcherPrs_Coincident)::DownCast(anAISIO);
1031           if (!aPrs.IsNull()) {
1032             std::vector<int> aColor;
1033             myOverconstraintListener->getConflictingColor(aColor);
1034             aPrs->SetConflictingConstraint(isConflicting, aColor);
1035             aCustomized = true;
1036           }
1037         }
1038       }
1039     }
1040     // customize sketch dimension constraint presentation
1041     if (!aCustomized) {
1042       std::vector<int> aColor;
1043       if (isConflicting) {
1044         myOverconstraintListener->getConflictingColor(aColor);
1045       }
1046       if (aColor.empty())
1047         XGUI_CustomPrs::getDefaultColor(anObject, true, aColor);
1048       if (!aColor.empty()) {
1049         aCustomized = thePrs->setColor(aColor[0], aColor[1], aColor[2]);
1050       }
1051     }
1052   }
1053   // customize dimentional constrains
1054   sketchMgr()->customizePresentation(anObject);
1055
1056   return aCustomized;
1057 }
1058
1059 bool PartSet_Module::customizeObject(ObjectPtr theObject, const ModuleBase_CustomizeFlag& theFlag,
1060                                      const bool theUpdateViewer)
1061 {
1062   bool isRedisplayed = false;
1063   if (myCustomPrs->isActive(theFlag))
1064     isRedisplayed = myCustomPrs->redisplay(theObject, theFlag, theUpdateViewer);
1065
1066   return isRedisplayed;
1067 }
1068
1069 void PartSet_Module::customizeObjectBrowser(QWidget* theObjectBrowser)
1070 {
1071   XGUI_ObjectsBrowser* aOB = dynamic_cast<XGUI_ObjectsBrowser*>(theObjectBrowser);
1072   if (aOB) {
1073     QLabel* aLabel = aOB->activeDocLabel();
1074     aLabel->installEventFilter(myMenuMgr);
1075     connect(aLabel, SIGNAL(customContextMenuRequested(const QPoint&)),
1076           SLOT(onActiveDocPopup(const QPoint&)));
1077     aOB->treeView()->setExpandsOnDoubleClick(false);
1078     connect(aOB->treeView(), SIGNAL(doubleClicked(const QModelIndex&)),
1079       SLOT(onTreeViewDoubleClick(const QModelIndex&)));
1080
1081     Events_Loop* aLoop = Events_Loop::loop();
1082     aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
1083   }
1084 }
1085
1086 void PartSet_Module::onActiveDocPopup(const QPoint& thePnt)
1087 {
1088   SessionPtr aMgr = ModelAPI_Session::get();
1089   QAction* aActivatePartAction = myMenuMgr->action("ACTIVATE_PARTSET_CMD");
1090
1091   XGUI_Workshop* aWorkshop = getWorkshop();
1092   QLabel* aHeader = aWorkshop->objectBrowser()->activeDocLabel();
1093
1094   aActivatePartAction->setEnabled((aMgr->activeDocument() != aMgr->moduleDocument()));
1095
1096   QMenu aMenu;
1097   aMenu.addAction(aActivatePartAction);
1098   aMenu.exec(aHeader->mapToGlobal(thePnt));
1099 }
1100
1101 Handle(AIS_InteractiveObject) PartSet_Module::createPresentation(const ResultPtr& theResult)
1102 {
1103   return mySketchMgr->createPresentation(theResult);
1104 }
1105
1106
1107 ObjectPtr PartSet_Module::findPresentedObject(const AISObjectPtr& theAIS) const
1108 {
1109   ObjectPtr anObject;
1110   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1111   if (aOperation) {
1112     /// If last line finished on vertex the lines creation sequence has to be break
1113     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
1114     if (aPanel) {
1115       ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
1116       // if there is an active widget, find the presented object in it
1117       if (!anActiveWidget)
1118         anActiveWidget = aPanel->preselectionWidget();
1119
1120       ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
1121                                                                              (anActiveWidget);
1122       if (aWidgetValidated)
1123         anObject = aWidgetValidated->findPresentedObject(theAIS);
1124     }
1125   }
1126   return anObject;
1127 }
1128
1129 bool PartSet_Module::canBeShaded(Handle(AIS_InteractiveObject) theAIS) const
1130 {
1131   bool aCanBeShaged = true;
1132
1133   Handle(PartSet_ResultSketchPrs) aPrs = Handle(PartSet_ResultSketchPrs)::DownCast(theAIS);
1134   if (!aPrs.IsNull())
1135     aCanBeShaged = false;
1136
1137   return aCanBeShaged;
1138 }
1139
1140 void PartSet_Module::addObjectBrowserMenu(QMenu* theMenu) const
1141 {
1142   QObjectPtrList aObjects = myWorkshop->selection()->selectedObjects();
1143   int aSelected = aObjects.size();
1144   SessionPtr aMgr = ModelAPI_Session::get();
1145   QAction* aActivatePartAction = myMenuMgr->action("ACTIVATE_PART_CMD");
1146
1147   ModuleBase_Operation* aCurrentOp = myWorkshop->currentOperation();
1148   if (aSelected == 1) {
1149     bool hasResult = false;
1150     bool hasFeature = false;
1151     bool hasParameter = false;
1152     bool hasCompositeOwner = false;
1153     ModuleBase_Tools::checkObjects(aObjects, hasResult, hasFeature, hasParameter,
1154                                    hasCompositeOwner);
1155     ObjectPtr aObject = aObjects.first();
1156     if (aObject) {
1157       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1158       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
1159       bool isPart = aPart.get() ||
1160         (aFeature.get() && (aFeature->getKind() == PartSetPlugin_Part::ID()));
1161       if (isPart) {
1162         DocumentPtr aPartDoc;
1163         if (!aPart.get()) {
1164           aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aFeature->firstResult());
1165         }
1166         if (aPart.get()) // this may be null is Part feature is disabled
1167           aPartDoc = aPart->partDoc();
1168
1169         theMenu->addAction(aActivatePartAction);
1170         aActivatePartAction->setEnabled((aMgr->activeDocument() != aPartDoc));
1171
1172       } else if (aObject->document() == aMgr->activeDocument()) {
1173         if (hasParameter || hasFeature) {
1174           myMenuMgr->action("EDIT_CMD")->setEnabled(true);
1175           theMenu->addAction(myMenuMgr->action("EDIT_CMD"));
1176           if (aCurrentOp && aFeature.get()) {
1177             if (aCurrentOp->id().toStdString() == aFeature->getKind())
1178               myMenuMgr->action("EDIT_CMD")->setEnabled(false);
1179           }
1180         }
1181       }
1182
1183       ResultBodyPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aObject);
1184       if( aResult.get() )
1185         theMenu->addAction(myMenuMgr->action("SELECT_PARENT_CMD"));
1186     }
1187   }
1188   bool aNotDeactivate = (aCurrentOp == 0);
1189   if (!aNotDeactivate) {
1190     aActivatePartAction->setEnabled(false);
1191   }
1192 }
1193
1194 #define EXPAND_PARENT(OBJ) \
1195 QModelIndex aObjIndex = aDataModel->objectIndex(OBJ); \
1196 if (aObjIndex.isValid()) { \
1197   QModelIndex aParent = aObjIndex.parent(); \
1198   int aCount = aDataModel->rowCount(aParent); \
1199   if (aCount == 1) \
1200     aTreeView->setExpanded(aParent, true); \
1201 }
1202
1203
1204 void PartSet_Module::processEvent(const std::shared_ptr<Events_Message>& theMessage)
1205 {
1206   if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_DOCUMENT_CHANGED)) {
1207     // Do not change activation of parts if an operation active
1208     static QStringList aAllowActivationList;
1209     if (aAllowActivationList.isEmpty())
1210       aAllowActivationList <<
1211       QString(PartSetPlugin_Part::ID().c_str()) <<
1212       QString(PartSetPlugin_Duplicate::ID().c_str()) <<
1213       QString(PartSetPlugin_Remove::ID().c_str());
1214     if (myWorkshop->currentOperation() &&
1215       (!aAllowActivationList.contains(myWorkshop->currentOperation()->id())))
1216       return;
1217     XGUI_Workshop* aWorkshop = getWorkshop();
1218     XGUI_DataTree* aTreeView = aWorkshop->objectBrowser()->treeView();
1219     QLabel* aLabel = aWorkshop->objectBrowser()->activeDocLabel();
1220     QPalette aPalet = aLabel->palette();
1221
1222     SessionPtr aMgr = ModelAPI_Session::get();
1223     DocumentPtr aActiveDoc = aMgr->activeDocument();
1224     if (aActivePartIndex.isValid())
1225       aTreeView->setExpanded(aActivePartIndex, false);
1226     XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1227     aActivePartIndex = aDataModel->documentRootIndex(aActiveDoc);
1228     if (aActivePartIndex.isValid())
1229       aTreeView->setExpanded(aActivePartIndex, true);
1230
1231     aLabel->setPalette(aPalet);
1232     aWorkshop->updateCommandStatus();
1233
1234     // Update displayed objects in order to update active color
1235     XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1236     QObjectPtrList aObjects = aDisplayer->displayedObjects();
1237     bool aHidden;
1238     foreach(ObjectPtr aObj, aObjects) {
1239       aHidden = !aObj->data() || !aObj->data()->isValid() ||
1240         aObj->isDisabled() || (!aObj->isDisplayed());
1241       if (!aHidden)
1242         aDisplayer->redisplay(aObj, false);
1243     }
1244     aDisplayer->updateViewer();
1245   } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
1246     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
1247         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
1248     std::set<ObjectPtr> aObjects = aUpdMsg->objects();
1249
1250     ObjectPtr aConstrObj;
1251     ObjectPtr aResultObj;
1252     std::set<ObjectPtr>::const_iterator aIt;
1253     DocumentPtr aRootDoc = ModelAPI_Session::get()->moduleDocument();
1254     for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
1255       ObjectPtr aObject = (*aIt);
1256       if ((!aResultObj.get()) && (aObject->groupName() == ModelAPI_ResultBody::group())
1257           && (aObject->document() != aRootDoc))
1258         aResultObj = aObject;
1259       if ((!aConstrObj.get()) && (aObject->groupName() == ModelAPI_ResultConstruction::group())
1260           && (aObject->document() != aRootDoc))
1261         aConstrObj = aObject;
1262       if (aResultObj.get() && aConstrObj.get())
1263         break;
1264     }
1265
1266     if (aResultObj.get() || aConstrObj.get()) {
1267       XGUI_Workshop* aWorkshop = getWorkshop();
1268       XGUI_DataTree* aTreeView = aWorkshop->objectBrowser()->treeView();
1269       XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1270
1271       if (aResultObj.get()) {
1272         EXPAND_PARENT(aResultObj)
1273       }
1274       if (aConstrObj.get()) {
1275         EXPAND_PARENT(aConstrObj)
1276       }
1277     }
1278   }
1279 }
1280
1281 void PartSet_Module::onTreeViewDoubleClick(const QModelIndex& theIndex)
1282 {
1283   if (myWorkshop->currentOperation()) // Do not change activation of parts if an operation active
1284     return;
1285   SessionPtr aMgr = ModelAPI_Session::get();
1286   if (!theIndex.isValid()) {
1287     aMgr->setActiveDocument(aMgr->moduleDocument());
1288     return;
1289   }
1290   if (theIndex.column() != 0) // Use only first column
1291     return;
1292
1293   XGUI_Workshop* aWorkshop = getWorkshop();
1294   XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1295   // De not use non editable Indexes
1296   if ((aDataModel->flags(theIndex) & Qt::ItemIsSelectable) == 0)
1297     return;
1298   ObjectPtr aObj = aDataModel->object(theIndex);
1299
1300   ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1301   if (!aPart.get()) { // Probably this is Feature
1302     FeaturePtr aPartFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
1303     if (aPartFeature.get() && (aPartFeature->getKind() == PartSetPlugin_Part::ID())) {
1304       aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aPartFeature->firstResult());
1305     }
1306   }
1307   if (aPart.get()) { // if this is a part
1308     if (aPart->partDoc() == aMgr->activeDocument()) {
1309       myMenuMgr->activatePartSet();
1310     } else {
1311       myMenuMgr->activatePart(aPart);
1312     }
1313   }
1314 }
1315
1316
1317 void PartSet_Module::onViewCreated(ModuleBase_IViewWindow*)
1318 {
1319   // z layer is created for all started operations in order to visualize operation AIS presentation
1320   // over the object
1321   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
1322   if (aContext.IsNull())
1323     return;
1324
1325   Handle(V3d_Viewer) aViewer = aContext->CurrentViewer();
1326   if (myVisualLayerId == 0) {
1327     if (myVisualLayerId == 0)
1328       aViewer->AddZLayer(myVisualLayerId);
1329   } else {
1330     TColStd_SequenceOfInteger aZList;
1331     aViewer->GetAllZLayers(aZList);
1332     bool aFound = false;
1333     for (int i = 1; i <= aZList.Length(); i++) {
1334       if (aZList(i) == myVisualLayerId) {
1335         aFound = true;
1336         break;
1337       }
1338     }
1339     if (!aFound)
1340       aViewer->AddZLayer(myVisualLayerId);
1341   }
1342   // if there is an active operation with validated widget,
1343   // the filters of this widget should be activated in the created view
1344   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1345   if (aOperation) {
1346     ModuleBase_ModelWidget* anActiveWidget = activeWidget();
1347     if (anActiveWidget) {
1348       ModuleBase_WidgetSelector* aWSelector =
1349         dynamic_cast<ModuleBase_WidgetSelector*>(anActiveWidget);
1350       if (aWSelector)
1351         aWSelector->activateSelectionAndFilters(true);
1352     }
1353   }
1354 }
1355
1356 //******************************************************
1357 void PartSet_Module::widgetStateChanged(int thePreviousState)
1358 {
1359   mySketchMgr->widgetStateChanged(thePreviousState);
1360 }
1361
1362 bool PartSet_Module::processEnter(const std::string& thePreviousAttributeID)
1363 {
1364   return mySketchReentrantMgr->processEnter(thePreviousAttributeID);
1365 }
1366
1367 //******************************************************
1368 void PartSet_Module::beforeOperationStopped(ModuleBase_Operation* theOperation)
1369 {
1370   if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
1371     mySketchMgr->stopSketch(theOperation);
1372   }
1373 }
1374
1375 //******************************************************
1376 GeomShapePtr PartSet_Module::findShape(const AttributePtr& theAttribute)
1377 {
1378   GeomShapePtr aGeomShape;
1379
1380   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
1381   if (anOperation && sketchMgr()->isNestedSketchOperation(anOperation)) {
1382     aGeomShape = PartSet_Tools::findShapeBy2DPoint(theAttribute, myWorkshop);
1383   }
1384   return aGeomShape;
1385 }
1386
1387 //******************************************************
1388 AttributePtr PartSet_Module::findAttribute(const ObjectPtr& theObject,
1389                                            const GeomShapePtr& theGeomShape)
1390 {
1391   AttributePtr anAttribute;
1392   GeomShapePtr aGeomShape = theGeomShape;
1393   if (!aGeomShape.get()) {
1394     // processing shape of result, e.g. sketch circle center is selected, this is a result
1395     // the geom shape is empty, the shape of result should be used
1396     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
1397     if (aResult.get()) {
1398       aGeomShape = aResult->shape();
1399     }
1400   }
1401
1402   if (aGeomShape.get()) {
1403     TopoDS_Shape aTDSShape = aGeomShape->impl<TopoDS_Shape>();
1404     return PartSet_Tools::findAttributeBy2dPoint(theObject, aTDSShape,
1405                                                  mySketchMgr->activeSketch());
1406   }
1407   return anAttribute;
1408 }
1409
1410 //******************************************************
1411 void PartSet_Module::onChoiceChanged(ModuleBase_ModelWidget* theWidget,
1412                                      int theIndex)
1413 {
1414   PartSet_WidgetChoice* aChoiceWidget = dynamic_cast<PartSet_WidgetChoice*>(theWidget);
1415   if (!aChoiceWidget)
1416     return;
1417
1418   QString aChoiceTitle = aChoiceWidget->getPropertyPanelTitle(theIndex);
1419   if (!aChoiceTitle.isEmpty()) {
1420     ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1421     if (!aOperation)
1422       return;
1423     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
1424     if (aPanel)
1425       aPanel->setWindowTitle(aChoiceTitle);
1426   }
1427 }
1428
1429 //******************************************************
1430 XGUI_Workshop* PartSet_Module::getWorkshop() const
1431 {
1432   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
1433   return aConnector->workshop();
1434 }
1435
1436 //******************************************************
1437 void PartSet_Module::setDefaultConstraintShown()
1438 {
1439   myHasConstraintShown[PartSet_Tools::Geometrical] = true;
1440   myHasConstraintShown[PartSet_Tools::Dimensional] = true;
1441   myHasConstraintShown[PartSet_Tools::Expressions] = false;
1442 }