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