]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_Module.cpp
Salome HOME
Issue #2200: Fix for highlighting of points
[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
990   ModuleBase_Operation* aCurrentOperation = myWorkshop->currentOperation();
991   if (aCurrentOperation &&
992     (PartSet_SketcherMgr::isSketchOperation(aCurrentOperation) ||
993      sketchMgr()->isNestedSketchOperation(aCurrentOperation)))
994   {
995     double aLen = aView->Convert(SketcherPrs_Tools::getConfigArrowSize());
996
997     double aPrevLen = SketcherPrs_Tools::getArrowSize();
998     SketcherPrs_Tools::setArrowSize(aLen);
999     const double aCurScale = aViewer->activeView()->Camera()->Scale();
1000     aViewer->SetScale(aViewer->activeView(), aCurScale);
1001     double aTextHeight = SketcherPrs_Tools::getConfigTextHeight();
1002     SketcherPrs_Tools::setTextHeight (aTextHeight);
1003     bool isModified = false;
1004     QList<AISObjectPtr> aPrsList = aDisplayer->displayedPresentations();
1005     foreach (AISObjectPtr aAIS, aPrsList) {
1006       Handle(AIS_InteractiveObject) aAisObj = aAIS->impl<Handle(AIS_InteractiveObject)>();
1007
1008       Handle(AIS_Dimension) aDim = Handle(AIS_Dimension)::DownCast(aAisObj);
1009       if (!aDim.IsNull()) {
1010         aDim->DimensionAspect()->ArrowAspect()->SetLength(aLen);
1011         aDim->DimensionAspect()->TextAspect()->SetHeight(aTextHeight);
1012         aContext->Redisplay(aDim, false);
1013         isModified = true;
1014       }
1015     }
1016     if (isModified)
1017       aDisplayer->updateViewer();
1018   }
1019 }
1020
1021 bool PartSet_Module::isCustomPrsActivated(const ModuleBase_CustomizeFlag& theFlag) const
1022 {
1023   return myCustomPrs->isActive(theFlag);
1024 }
1025
1026 void PartSet_Module::activateCustomPrs(const FeaturePtr& theFeature,
1027                                        const ModuleBase_CustomizeFlag& theFlag,
1028                                        const bool theUpdateViewer)
1029 {
1030   myCustomPrs->activate(theFeature, theFlag, theUpdateViewer);
1031 }
1032
1033 void PartSet_Module::deactivateCustomPrs(const ModuleBase_CustomizeFlag& theFlag,
1034                                          const bool theUpdateViewer)
1035 {
1036   myCustomPrs->deactivate(theFlag, theUpdateViewer);
1037 }
1038
1039 bool PartSet_Module::customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
1040                                            std::shared_ptr<GeomAPI_ICustomPrs> theCustomPrs)
1041 {
1042   bool aCustomized = false;
1043
1044   XGUI_Workshop* aWorkshop = getWorkshop();
1045   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1046   ObjectPtr anObject = aDisplayer->getObject(thePrs);
1047   if (!anObject)
1048     return aCustomized;
1049
1050   if (!theResult.get()) {
1051     std::vector<int> aColor;
1052     XGUI_CustomPrs::getDefaultColor(anObject, true, aColor);
1053     if (!aColor.empty()) {
1054       aCustomized = thePrs->setColor(aColor[0], aColor[1], aColor[2]);
1055     }
1056   }
1057   // customize dimentional constrains
1058   sketchMgr()->customizePresentation(anObject);
1059
1060   return aCustomized;
1061 }
1062
1063 bool PartSet_Module::afterCustomisePresentation(std::shared_ptr<ModelAPI_Result> theResult,
1064                                                 AISObjectPtr thePrs,
1065                                                 GeomCustomPrsPtr theCustomPrs)
1066 {
1067   bool aCustomized = false;
1068
1069   XGUI_Workshop* aWorkshop = getWorkshop();
1070   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1071   ObjectPtr anObject = aDisplayer->getObject(thePrs);
1072   if (!anObject)
1073     return aCustomized;
1074
1075   std::vector<int> aColor;
1076   bool aUseCustomColor = true;
1077   if (aUseCustomColor)
1078     myOverconstraintListener->getCustomColor(anObject, aColor);
1079   // customize sketch symbol presentation
1080   Handle(AIS_InteractiveObject) anAISIO = thePrs->impl<Handle(AIS_InteractiveObject)>();
1081   if (!anAISIO.IsNull()) {
1082     if (!Handle(SketcherPrs_SymbolPrs)::DownCast(anAISIO).IsNull()) {
1083       Handle(SketcherPrs_SymbolPrs) aPrs = Handle(SketcherPrs_SymbolPrs)::DownCast(anAISIO);
1084       if (!aPrs.IsNull()) {
1085         aPrs->SetCustomColor(aColor);
1086         aCustomized = true;
1087       }
1088     } else if (!Handle(SketcherPrs_Coincident)::DownCast(anAISIO).IsNull()) {
1089       Handle(SketcherPrs_Coincident) aPrs = Handle(SketcherPrs_Coincident)::DownCast(anAISIO);
1090       if (!aPrs.IsNull()) {
1091         aPrs->SetCustomColor(aColor);
1092         aCustomized = true;
1093       }
1094     }
1095   }
1096   // customize sketch dimension constraint presentation
1097   if (!aCustomized) {
1098     if (!aColor.empty()) { // otherwise presentation has the default color
1099       aCustomized = thePrs->setColor(aColor[0], aColor[1], aColor[2]);
1100     }
1101   }
1102   return aCustomized;
1103 }
1104
1105 bool PartSet_Module::customizeObject(ObjectPtr theObject, const ModuleBase_CustomizeFlag& theFlag,
1106                                      const bool theUpdateViewer)
1107 {
1108   bool isRedisplayed = false;
1109   if (myCustomPrs->isActive(theFlag))
1110     isRedisplayed = myCustomPrs->redisplay(theObject, theFlag, theUpdateViewer);
1111
1112   return isRedisplayed;
1113 }
1114
1115 void PartSet_Module::customizeObjectBrowser(QWidget* theObjectBrowser)
1116 {
1117   XGUI_ObjectsBrowser* aOB = dynamic_cast<XGUI_ObjectsBrowser*>(theObjectBrowser);
1118   if (aOB) {
1119     QLabel* aLabel = aOB->activeDocLabel();
1120     aLabel->installEventFilter(myMenuMgr);
1121     connect(aLabel, SIGNAL(customContextMenuRequested(const QPoint&)),
1122           SLOT(onActiveDocPopup(const QPoint&)));
1123     aOB->treeView()->setExpandsOnDoubleClick(false);
1124     connect(aOB->treeView(), SIGNAL(doubleClicked(const QModelIndex&)),
1125       SLOT(onTreeViewDoubleClick(const QModelIndex&)));
1126
1127     Events_Loop* aLoop = Events_Loop::loop();
1128     aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
1129   }
1130 }
1131
1132 void PartSet_Module::onActiveDocPopup(const QPoint& thePnt)
1133 {
1134   SessionPtr aMgr = ModelAPI_Session::get();
1135   QAction* aActivatePartAction = myMenuMgr->action("ACTIVATE_PARTSET_CMD");
1136
1137   XGUI_Workshop* aWorkshop = getWorkshop();
1138   QLabel* aHeader = aWorkshop->objectBrowser()->activeDocLabel();
1139
1140   aActivatePartAction->setEnabled((aMgr->activeDocument() != aMgr->moduleDocument()));
1141
1142   QMenu aMenu;
1143   aMenu.addAction(aActivatePartAction);
1144   aMenu.exec(aHeader->mapToGlobal(thePnt));
1145 }
1146
1147 Handle(AIS_InteractiveObject) PartSet_Module::createPresentation(const ResultPtr& theResult)
1148 {
1149   return mySketchMgr->createPresentation(theResult);
1150 }
1151
1152
1153 ObjectPtr PartSet_Module::findPresentedObject(const AISObjectPtr& theAIS) const
1154 {
1155   ObjectPtr anObject;
1156   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1157   if (aOperation) {
1158     /// If last line finished on vertex the lines creation sequence has to be break
1159     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
1160     if (aPanel) {
1161       ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
1162       // if there is an active widget, find the presented object in it
1163       if (!anActiveWidget)
1164         anActiveWidget = aPanel->preselectionWidget();
1165
1166       ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
1167                                                                              (anActiveWidget);
1168       if (aWidgetValidated)
1169         anObject = aWidgetValidated->findPresentedObject(theAIS);
1170     }
1171   }
1172   return anObject;
1173 }
1174
1175 bool PartSet_Module::canBeShaded(Handle(AIS_InteractiveObject) theAIS) const
1176 {
1177   bool aCanBeShaged = true;
1178
1179   Handle(PartSet_ResultSketchPrs) aPrs = Handle(PartSet_ResultSketchPrs)::DownCast(theAIS);
1180   if (!aPrs.IsNull())
1181     aCanBeShaged = false;
1182
1183   return aCanBeShaged;
1184 }
1185
1186 void PartSet_Module::addObjectBrowserMenu(QMenu* theMenu) const
1187 {
1188   QObjectPtrList aObjects = myWorkshop->selection()->selectedObjects();
1189   int aSelected = aObjects.size();
1190   SessionPtr aMgr = ModelAPI_Session::get();
1191   QAction* aActivatePartAction = myMenuMgr->action("ACTIVATE_PART_CMD");
1192
1193   bool hasResult = false;
1194   bool hasFeature = false;
1195   bool hasParameter = false;
1196   bool hasCompositeOwner = false;
1197   bool hasResultInHistory = false;
1198   ModuleBase_Tools::checkObjects(aObjects, hasResult, hasFeature, hasParameter,
1199                                   hasCompositeOwner, hasResultInHistory);
1200
1201   ModuleBase_Operation* aCurrentOp = myWorkshop->currentOperation();
1202   if (aSelected == 1) {
1203     ObjectPtr aObject = aObjects.first();
1204     if (aObject) {
1205       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1206       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
1207       bool isPart = aPart.get() ||
1208         (aFeature.get() && (aFeature->getKind() == PartSetPlugin_Part::ID()));
1209       if (isPart) {
1210         DocumentPtr aPartDoc;
1211         if (!aPart.get()) {
1212           aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aFeature->firstResult());
1213         }
1214         if (aPart.get()) // this may be null is Part feature is disabled
1215           aPartDoc = aPart->partDoc();
1216
1217         theMenu->addAction(aActivatePartAction);
1218         aActivatePartAction->setEnabled((aMgr->activeDocument() != aPartDoc));
1219
1220       } else if (aObject->document() == aMgr->activeDocument()) {
1221         if (hasParameter || hasFeature) {
1222           myMenuMgr->action("EDIT_CMD")->setEnabled(true);
1223           theMenu->addAction(myMenuMgr->action("EDIT_CMD"));
1224           if (aCurrentOp && aFeature.get()) {
1225             if (aCurrentOp->id().toStdString() == aFeature->getKind())
1226               myMenuMgr->action("EDIT_CMD")->setEnabled(false);
1227           }
1228         }
1229       }
1230     }
1231   } else {
1232     if (hasFeature) {
1233       myMenuMgr->action("EDIT_CMD")->setEnabled(aCurrentOp == 0);
1234       theMenu->addAction(myMenuMgr->action("EDIT_CMD"));
1235       theMenu->addSeparator();
1236     }
1237   }
1238   bool aNotDeactivate = (aCurrentOp == 0);
1239   if (!aNotDeactivate) {
1240     aActivatePartAction->setEnabled(false);
1241   }
1242 }
1243
1244 #define EXPAND_PARENT(OBJ) \
1245 QModelIndex aObjIndex = aDataModel->objectIndex(OBJ); \
1246 if (aObjIndex.isValid()) { \
1247   QModelIndex aParent = aObjIndex.parent(); \
1248   int aCount = aDataModel->rowCount(aParent); \
1249   if (aCount == 1) \
1250     aTreeView->setExpanded(aParent, true); \
1251 }
1252
1253
1254 void PartSet_Module::processEvent(const std::shared_ptr<Events_Message>& theMessage)
1255 {
1256   if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_DOCUMENT_CHANGED)) {
1257     // Do not change activation of parts if an operation active
1258     static QStringList aAllowActivationList;
1259     if (aAllowActivationList.isEmpty())
1260       aAllowActivationList <<
1261       QString(PartSetPlugin_Part::ID().c_str()) <<
1262       QString(PartSetPlugin_Duplicate::ID().c_str()) <<
1263       QString(PartSetPlugin_Remove::ID().c_str());
1264     if (myWorkshop->currentOperation() &&
1265       (!aAllowActivationList.contains(myWorkshop->currentOperation()->id())))
1266       return;
1267     XGUI_Workshop* aWorkshop = getWorkshop();
1268     XGUI_DataTree* aTreeView = aWorkshop->objectBrowser()->treeView();
1269     QLabel* aLabel = aWorkshop->objectBrowser()->activeDocLabel();
1270     QPalette aPalet = aLabel->palette();
1271
1272     SessionPtr aMgr = ModelAPI_Session::get();
1273     DocumentPtr aActiveDoc = aMgr->activeDocument();
1274     if (myActivePartIndex.isValid())
1275       aTreeView->setExpanded(myActivePartIndex, false);
1276
1277     XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1278     myActivePartIndex = aDataModel->documentRootIndex(aActiveDoc, 0);
1279     bool needUpdate = false;
1280     if (myActivePartIndex.isValid()) {
1281       needUpdate = aTreeView->isExpanded(myActivePartIndex);
1282       if (!needUpdate)
1283         aTreeView->setExpanded(myActivePartIndex, true);
1284     }
1285
1286     aLabel->setPalette(aPalet);
1287     aWorkshop->updateCommandStatus();
1288
1289     // Update displayed objects in order to update active color
1290     XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1291     QObjectPtrList aObjects = aDisplayer->displayedObjects();
1292     bool aHidden;
1293     foreach(ObjectPtr aObj, aObjects) {
1294       aHidden = !aObj->data() || !aObj->data()->isValid() ||
1295         aObj->isDisabled() || (!aObj->isDisplayed());
1296       if (!aHidden)
1297         aDisplayer->redisplay(aObj, false);
1298     }
1299     aDisplayer->updateViewer();
1300     // Update tree items if they are expanded
1301     if (needUpdate) {
1302       aTreeView->viewport()->repaint(aTreeView->viewport()->rect());
1303     }
1304   } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
1305     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
1306         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
1307     std::set<ObjectPtr> aObjects = aUpdMsg->objects();
1308
1309     ObjectPtr aConstrObj;
1310     ObjectPtr aResultObj;
1311     std::set<ObjectPtr>::const_iterator aIt;
1312     DocumentPtr aRootDoc = ModelAPI_Session::get()->moduleDocument();
1313     for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
1314       ObjectPtr aObject = (*aIt);
1315       if ((!aResultObj.get()) && (aObject->groupName() == ModelAPI_ResultBody::group())
1316           && (aObject->document() != aRootDoc))
1317         aResultObj = aObject;
1318       if ((!aConstrObj.get()) && (aObject->groupName() == ModelAPI_ResultConstruction::group())
1319           && (aObject->document() != aRootDoc))
1320         aConstrObj = aObject;
1321       if (aResultObj.get() && aConstrObj.get())
1322         break;
1323     }
1324
1325     if (aResultObj.get() || aConstrObj.get()) {
1326       XGUI_Workshop* aWorkshop = getWorkshop();
1327       XGUI_DataTree* aTreeView = aWorkshop->objectBrowser()->treeView();
1328       XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1329
1330       if (aResultObj.get()) {
1331         EXPAND_PARENT(aResultObj)
1332       }
1333       if (aConstrObj.get()) {
1334         EXPAND_PARENT(aConstrObj)
1335       }
1336     }
1337   }
1338 }
1339
1340 void PartSet_Module::onTreeViewDoubleClick(const QModelIndex& theIndex)
1341 {
1342   if (myWorkshop->currentOperation()) // Do not change activation of parts if an operation active
1343     return;
1344   SessionPtr aMgr = ModelAPI_Session::get();
1345   if (!theIndex.isValid()) {
1346     // It seems that this code is obsolete
1347     //aMgr->setActiveDocument(aMgr->moduleDocument());
1348     return;
1349   }
1350   if (theIndex.column() != 1) // Use only first column
1351     return;
1352
1353   XGUI_Workshop* aWorkshop = getWorkshop();
1354   XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1355   // De not use non editable Indexes
1356   if ((aDataModel->flags(theIndex) & Qt::ItemIsSelectable) == 0)
1357     return;
1358   ObjectPtr aObj = aDataModel->object(theIndex);
1359
1360   ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1361   if (!aPart.get()) { // Probably this is Feature
1362     FeaturePtr aPartFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
1363     if (aPartFeature.get() && (aPartFeature->getKind() == PartSetPlugin_Part::ID())) {
1364       aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aPartFeature->firstResult());
1365     }
1366   }
1367   if (aPart.get()) { // if this is a part
1368     if (aPart->partDoc() == aMgr->activeDocument()) {
1369       myMenuMgr->activatePartSet();
1370     } else {
1371       myMenuMgr->activatePart(aPart);
1372     }
1373   }
1374 }
1375
1376
1377 void PartSet_Module::onViewCreated(ModuleBase_IViewWindow*)
1378 {
1379   // z layer is created for all started operations in order to visualize operation AIS presentation
1380   // over the object
1381   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
1382   if (aContext.IsNull())
1383     return;
1384
1385   Handle(V3d_Viewer) aViewer = aContext->CurrentViewer();
1386   if (myVisualLayerId == 0) {
1387     if (myVisualLayerId == 0)
1388       aViewer->AddZLayer(myVisualLayerId);
1389   } else {
1390     TColStd_SequenceOfInteger aZList;
1391     aViewer->GetAllZLayers(aZList);
1392     bool aFound = false;
1393     for (int i = 1; i <= aZList.Length(); i++) {
1394       if (aZList(i) == myVisualLayerId) {
1395         aFound = true;
1396         break;
1397       }
1398     }
1399     if (!aFound)
1400       aViewer->AddZLayer(myVisualLayerId);
1401   }
1402   // if there is an active operation with validated widget,
1403   // the filters of this widget should be activated in the created view
1404   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1405   if (aOperation) {
1406     ModuleBase_ModelWidget* anActiveWidget = activeWidget();
1407     if (anActiveWidget) {
1408       ModuleBase_WidgetSelector* aWSelector =
1409         dynamic_cast<ModuleBase_WidgetSelector*>(anActiveWidget);
1410       if (aWSelector)
1411         aWSelector->activateSelectionAndFilters(true);
1412     }
1413   }
1414 }
1415
1416 //******************************************************
1417 void PartSet_Module::widgetStateChanged(int thePreviousState)
1418 {
1419   mySketchMgr->widgetStateChanged(thePreviousState);
1420 }
1421
1422 bool PartSet_Module::processEnter(const std::string& thePreviousAttributeID)
1423 {
1424   return mySketchReentrantMgr->processEnter(thePreviousAttributeID);
1425 }
1426
1427 //******************************************************
1428 void PartSet_Module::beforeOperationStopped(ModuleBase_Operation* theOperation)
1429 {
1430   if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
1431     mySketchMgr->stopSketch(theOperation);
1432   }
1433 }
1434
1435 //******************************************************
1436 GeomShapePtr PartSet_Module::findShape(const AttributePtr& theAttribute)
1437 {
1438   GeomShapePtr aGeomShape;
1439
1440   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
1441   if (anOperation && sketchMgr()->isNestedSketchOperation(anOperation)) {
1442     aGeomShape = PartSet_Tools::findShapeBy2DPoint(theAttribute, myWorkshop);
1443   }
1444   return aGeomShape;
1445 }
1446
1447 //******************************************************
1448 AttributePtr PartSet_Module::findAttribute(const ObjectPtr& theObject,
1449                                            const GeomShapePtr& theGeomShape)
1450 {
1451   AttributePtr anAttribute;
1452   GeomShapePtr aGeomShape = theGeomShape;
1453   if (!aGeomShape.get()) {
1454     // processing shape of result, e.g. sketch circle center is selected, this is a result
1455     // the geom shape is empty, the shape of result should be used
1456     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
1457     if (aResult.get()) {
1458       aGeomShape = aResult->shape();
1459     }
1460   }
1461
1462   if (aGeomShape.get()) {
1463     TopoDS_Shape aTDSShape = aGeomShape->impl<TopoDS_Shape>();
1464     return PartSet_Tools::findAttributeBy2dPoint(theObject, aTDSShape,
1465                                                  mySketchMgr->activeSketch());
1466   }
1467   return anAttribute;
1468 }
1469
1470 //******************************************************
1471 std::shared_ptr<Events_Message> PartSet_Module::reentrantMessage()
1472 {
1473   return sketchReentranceMgr()->reentrantMessage();
1474 }
1475
1476 //******************************************************
1477 void PartSet_Module::setReentrantPreSelection(const std::shared_ptr<Events_Message>& theMessage)
1478 {
1479   sketchReentranceMgr()->setReentrantPreSelection(theMessage);
1480 }
1481
1482 //******************************************************
1483 void PartSet_Module::onChoiceChanged(ModuleBase_ModelWidget* theWidget,
1484                                      int theIndex)
1485 {
1486   ModuleBase_WidgetChoice* aChoiceWidget = dynamic_cast<ModuleBase_WidgetChoice*>(theWidget);
1487   if (!aChoiceWidget)
1488     return;
1489
1490   QString aChoiceTitle = aChoiceWidget->getPropertyPanelTitle(theIndex);
1491   if (!aChoiceTitle.isEmpty()) {
1492     ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1493     if (!aOperation)
1494       return;
1495     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
1496     if (aPanel)
1497       aPanel->setWindowTitle(aChoiceTitle);
1498   }
1499 }
1500
1501 //******************************************************
1502 XGUI_Workshop* PartSet_Module::getWorkshop() const
1503 {
1504   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
1505   return aConnector->workshop();
1506 }
1507
1508 //******************************************************
1509 void PartSet_Module::setDefaultConstraintShown()
1510 {
1511   myHasConstraintShown[PartSet_Tools::Geometrical] = true;
1512   myHasConstraintShown[PartSet_Tools::Dimensional] = true;
1513   myHasConstraintShown[PartSet_Tools::Expressions] = false;
1514 }