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