]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_Module.cpp
Salome HOME
Issue #640 It is impossible to remove dimension
[modules/shaper.git] / src / PartSet / PartSet_Module.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 #include "PartSet_Module.h"
4 #include "PartSet_WidgetSketchLabel.h"
5 #include "PartSet_Validators.h"
6 #include "PartSet_Tools.h"
7 #include "PartSet_WidgetPoint2d.h"
8 #include "PartSet_WidgetPoint2dDistance.h"
9 #include "PartSet_WidgetShapeSelector.h"
10 #include "PartSet_WidgetPoint2dAngle.h"
11 #include "PartSet_WidgetMultiSelector.h"
12 #include "PartSet_WidgetEditor.h"
13 #include "PartSet_WidgetFileSelector.h"
14 #include "PartSet_WidgetSketchCreator.h"
15 #include "PartSet_SketcherMgr.h"
16 #include "PartSet_MenuMgr.h"
17
18 #include "PartSet_Filters.h"
19 #include "PartSet_FilterInfinite.h"
20
21 #include <PartSetPlugin_Remove.h>
22 #include <PartSetPlugin_Part.h>
23
24 #include <ModuleBase_Operation.h>
25 #include <ModuleBase_IViewer.h>
26 #include <ModuleBase_IViewWindow.h>
27 #include <ModuleBase_IPropertyPanel.h>
28 #include <ModuleBase_WidgetEditor.h>
29 #include <ModuleBase_FilterFactory.h>
30 #include <ModuleBase_Tools.h>
31 #include <GeomValidators_ShapeType.h>
32
33 #include <GeomValidators_Face.h>
34 #include <GeomValidators_ConstructionComposite.h>
35 #include <GeomValidators_ZeroOffset.h>
36
37
38 #include <ModelAPI_Object.h>
39 #include <ModelAPI_Events.h>
40 #include <ModelAPI_Validator.h>
41 #include <ModelAPI_Data.h>
42 #include <ModelAPI_Session.h>
43 #include <ModelAPI_ShapeValidator.h>
44
45 #include <GeomDataAPI_Point2D.h>
46 #include <GeomDataAPI_Point.h>
47 #include <GeomDataAPI_Dir.h>
48
49 #include <XGUI_Displayer.h>
50 #include <XGUI_Workshop.h>
51 #include <XGUI_OperationMgr.h>
52 #include <XGUI_PropertyPanel.h>
53 #include <XGUI_ModuleConnector.h>
54 #include <XGUI_ContextMenuMgr.h>
55 #include <XGUI_Tools.h>
56 #include <XGUI_ObjectsBrowser.h>
57 #include <XGUI_SelectionMgr.h>
58
59 #include <SketchPlugin_Feature.h>
60 #include <SketchPlugin_Sketch.h>
61 #include <SketchPlugin_Line.h>
62 #include <SketchPlugin_Arc.h>
63 #include <SketchPlugin_Circle.h>
64 #include <SketchPlugin_Point.h>
65 #include <SketchPlugin_ConstraintLength.h>
66 #include <SketchPlugin_ConstraintDistance.h>
67 #include <SketchPlugin_ConstraintParallel.h>
68 #include <SketchPlugin_ConstraintPerpendicular.h>
69 #include <SketchPlugin_ConstraintRadius.h>
70
71 #include <SketcherPrs_SymbolPrs.h>
72 #include <SketcherPrs_Tools.h>
73
74 #include <Events_Loop.h>
75 #include <Config_PropManager.h>
76 #include <Config_Keywords.h>
77
78 #include <StdSelect_TypeOfFace.hxx>
79 #include <TopoDS_Vertex.hxx>
80 #include <TopoDS.hxx>
81 #include <TopoDS_Shape.hxx>
82 #include <BRep_Tool.hxx>
83 #include <AIS_Dimension.hxx>
84
85 #include <QObject>
86 #include <QMouseEvent>
87 #include <QString>
88 #include <QTimer>
89 #include <QApplication>
90 #include <QMessageBox>
91 #include <QMainWindow>
92 #include <QLineEdit>
93
94 #include <GeomAlgoAPI_FaceBuilder.h>
95 #include <GeomDataAPI_Dir.h>
96
97 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
98
99 #ifdef _DEBUG
100 #include <QDebug>
101 #endif
102
103
104
105 /*!Create and return new instance of XGUI_Module*/
106 extern "C" PARTSET_EXPORT ModuleBase_IModule* createModule(ModuleBase_IWorkshop* theWshop)
107 {
108   return new PartSet_Module(theWshop);
109 }
110
111 PartSet_Module::PartSet_Module(ModuleBase_IWorkshop* theWshop)
112   : ModuleBase_IModule(theWshop),
113   myRestartingMode(RM_None), myVisualLayerId(0)
114 {
115   mySketchMgr = new PartSet_SketcherMgr(this);
116   myDataModel = new PartSet_DocumentDataModel(this);
117
118   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWshop);
119   XGUI_Workshop* aWorkshop = aConnector->workshop();
120
121   XGUI_OperationMgr* anOpMgr = aWorkshop->operationMgr();
122   connect(anOpMgr, SIGNAL(keyEnterReleased()), this, SLOT(onEnterReleased()));
123   connect(anOpMgr, SIGNAL(operationActivatedByPreselection()),
124           this, SLOT(onOperationActivatedByPreselection()));
125
126   ModuleBase_IViewer* aViewer = theWshop->viewer();
127   connect(aViewer, SIGNAL(keyRelease(ModuleBase_IViewWindow*, QKeyEvent*)),
128           this, SLOT(onKeyRelease(ModuleBase_IViewWindow*, QKeyEvent*)));
129   connect(aViewer, SIGNAL(viewTransformed(int)),
130           SLOT(onViewTransformed(int)));
131
132   myMenuMgr = new PartSet_MenuMgr(this);
133
134   Events_Loop* aLoop = Events_Loop::loop();
135   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_DOCUMENT_CHANGED));
136
137   mySelectionFilters.Append(new PartSet_GlobalFilter(myWorkshop));
138   mySelectionFilters.Append(new PartSet_FilterInfinite(myWorkshop));
139 }
140
141 PartSet_Module::~PartSet_Module()
142 {
143   SelectMgr_ListIteratorOfListOfFilter aIt(mySelectionFilters);
144   for (; aIt.More(); aIt.Next()) {
145     Handle(SelectMgr_Filter) aFilter = aIt.Value();
146     if (!aFilter.IsNull())
147       aFilter.Nullify();
148   }
149 }
150
151 void PartSet_Module::activateSelectionFilters()
152 {
153   SelectMgr_ListIteratorOfListOfFilter aIt(mySelectionFilters);
154   for (; aIt.More(); aIt.Next()) {
155     Handle(SelectMgr_Filter) aFilter = aIt.Value();
156     if (!aFilter.IsNull())
157       myWorkshop->viewer()->addSelectionFilter(aFilter);
158   }
159 }
160
161 void PartSet_Module::deactivateSelectionFilters()
162 {
163   SelectMgr_ListIteratorOfListOfFilter aIt(mySelectionFilters);
164   for (; aIt.More(); aIt.Next()) {
165     Handle(SelectMgr_Filter) aFilter = aIt.Value();
166     if (!aFilter.IsNull())
167       myWorkshop->viewer()->removeSelectionFilter(aFilter);
168   }
169 }
170
171 void PartSet_Module::registerValidators()
172 {
173   //Registering of validators
174   SessionPtr aMgr = ModelAPI_Session::get();
175   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
176   aFactory->registerValidator("PartSet_DistanceSelection", new PartSet_DistanceSelection);
177   aFactory->registerValidator("PartSet_LengthSelection", new PartSet_LengthSelection);
178   aFactory->registerValidator("PartSet_PerpendicularSelection", new PartSet_PerpendicularSelection);
179   aFactory->registerValidator("PartSet_ParallelSelection", new PartSet_ParallelSelection);
180   aFactory->registerValidator("PartSet_RadiusSelection", new PartSet_RadiusSelection);
181   aFactory->registerValidator("PartSet_RigidSelection", new PartSet_RigidSelection);
182   aFactory->registerValidator("PartSet_CoincidentSelection", new PartSet_CoincidentSelection);
183   aFactory->registerValidator("PartSet_HVDirSelection", new PartSet_HVDirSelection);
184   aFactory->registerValidator("PartSet_TangentSelection", new PartSet_TangentSelection);
185   aFactory->registerValidator("PartSet_FilletSelection", new PartSet_FilletSelection);
186
187   aFactory->registerValidator("PartSet_DifferentObjects", new PartSet_DifferentObjectsValidator);
188   aFactory->registerValidator("PartSet_DifferentShapes", new ModelAPI_ShapeValidator);
189
190   aFactory->registerValidator("GeomValidators_ShapeType", new GeomValidators_ShapeType);
191   aFactory->registerValidator("GeomValidators_Face", new GeomValidators_Face);
192
193   aFactory->registerValidator("GeomValidators_ConstructionComposite",
194                               new GeomValidators_ConstructionComposite);
195
196   aFactory->registerValidator("GeomValidators_ZeroOffset",
197                               new GeomValidators_ZeroOffset);
198
199   aFactory->registerValidator("PartSet_SketchEntityValidator",
200                               new PartSet_SketchEntityValidator);
201
202   aFactory->registerValidator("PartSet_SameTypeAttr",
203                               new PartSet_SameTypeAttrValidator);
204 }
205
206 void PartSet_Module::registerFilters()
207 {
208   //Registering of selection filters
209   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
210   ModuleBase_FilterFactory* aFactory = aConnector->selectionFilters();
211 }
212
213 void PartSet_Module::registerProperties()
214 {
215   Config_PropManager::registerProp("Sketch planes", "planes_size", "Size", Config_Prop::Double,
216                                    PLANE_SIZE);
217   Config_PropManager::registerProp("Sketch planes", "planes_thickness", "Thickness",
218                                    Config_Prop::Integer, SKETCH_WIDTH);
219 }
220
221 void PartSet_Module::onOperationCommitted(ModuleBase_Operation* theOperation) 
222 {
223   if (PartSet_SketcherMgr::isNestedSketchOperation(theOperation)) {
224     mySketchMgr->commitNestedSketch(theOperation);
225   }
226
227   if (theOperation->isEditOperation())
228     return;
229   // the selection is cleared after commit the create operation
230   // in order to do not use the same selected objects in the restarted operation
231   // for common behaviour, the selection is cleared even if the operation is not restarted
232   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
233   XGUI_Workshop* aWorkshop = aConnector->workshop();
234   aWorkshop->selector()->clearSelection();
235
236   /// Restart sketcher operations automatically
237   FeaturePtr aFeature = theOperation->feature();
238   std::shared_ptr<SketchPlugin_Feature> aSPFeature = 
239             std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
240   if (aSPFeature && (myRestartingMode == RM_LastFeatureUsed ||
241                      myRestartingMode == RM_EmptyFeatureUsed)) {
242     myLastOperationId = theOperation->id();
243     myLastFeature = myRestartingMode == RM_LastFeatureUsed ? theOperation->feature() : FeaturePtr();
244     
245     launchOperation(myLastOperationId);
246   }
247   breakOperationSequence();
248 }
249
250 void PartSet_Module::breakOperationSequence()
251 {
252   myLastOperationId = "";
253   myLastFeature = FeaturePtr();
254   myRestartingMode = RM_None;
255 }
256
257 void PartSet_Module::onOperationAborted(ModuleBase_Operation* theOperation)
258 {
259   breakOperationSequence();
260 }
261
262 void PartSet_Module::onOperationStarted(ModuleBase_Operation* theOperation)
263 {
264   if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
265     Handle(V3d_Viewer) aViewer = myWorkshop->viewer()->AISContext()->CurrentViewer();
266     aViewer->AddZLayer(myVisualLayerId);
267     mySketchMgr->startSketch(theOperation);
268   }
269   else if (PartSet_SketcherMgr::isNestedSketchOperation(theOperation)) {
270     mySketchMgr->startNestedSketch(theOperation);
271   }
272 }
273
274 void PartSet_Module::onOperationStopped(ModuleBase_Operation* theOperation)
275 {
276   if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
277     mySketchMgr->stopSketch(theOperation);
278     Handle(V3d_Viewer) aViewer = myWorkshop->viewer()->AISContext()->CurrentViewer();
279     aViewer->RemoveZLayer(myVisualLayerId);
280     myVisualLayerId = 0;
281   }
282   else if (PartSet_SketcherMgr::isNestedSketchOperation(theOperation)) {
283     mySketchMgr->stopNestedSketch(theOperation);
284   }
285 }
286
287 ModuleBase_Operation* PartSet_Module::currentOperation() const
288 {
289   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
290   XGUI_OperationMgr* anOpMgr = aConnector->workshop()->operationMgr();
291   return anOpMgr->currentOperation();
292 }
293
294 bool PartSet_Module::canUndo() const
295 {
296   bool aCanUndo = false;
297   SessionPtr aMgr = ModelAPI_Session::get();
298   if (aMgr->hasModuleDocument() && aMgr->canUndo()) {
299     aCanUndo = !aMgr->isOperation();
300     if (!aCanUndo) // check the enable state additionally by sketch manager
301       aCanUndo = aMgr->canUndo();
302   }
303   return aCanUndo;
304 }
305
306 bool PartSet_Module::canRedo() const
307 {
308   bool aCanRedo = false;
309   SessionPtr aMgr = ModelAPI_Session::get();
310   if (aMgr->hasModuleDocument() && aMgr->canRedo()) {
311     aCanRedo = !aMgr->isOperation();
312     if (!aCanRedo) // check the enable state additionally by sketch manager
313       aCanRedo = aMgr->canRedo();
314   }
315   return aCanRedo;
316 }
317
318 bool PartSet_Module::canDisplayObject(const ObjectPtr& theObject) const
319 {
320   // the sketch manager put the restriction to the objects display
321   return mySketchMgr->canDisplayObject(theObject);
322 }
323
324 bool PartSet_Module::canActivateSelection(const ObjectPtr& theObject) const
325 {
326   bool aCanActivate = ModuleBase_IModule::canActivateSelection(theObject);
327
328   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
329   bool isSketchOp = PartSet_SketcherMgr::isSketchOperation(anOperation),
330        isNestedOp = PartSet_SketcherMgr::isNestedSketchOperation(anOperation);
331   if (isSketchOp || isNestedOp) {
332     // in active sketch operation it is possible to activate operation object in selection
333     // in the edit operation, e.g. points of the line can be moved when the line is edited
334     aCanActivate = aCanActivate || anOperation->isEditOperation();
335   }
336   return aCanActivate;
337 }
338
339 bool PartSet_Module::addViewerMenu(QMenu* theMenu, const QMap<QString, QAction*>& theStdActions) const
340 {
341   return myMenuMgr->addViewerMenu(theMenu, theStdActions);
342 }
343
344 void PartSet_Module::activeSelectionModes(QIntList& theModes)
345 {
346   theModes.clear();
347   if (mySketchMgr->activeSketch().get())
348     PartSet_SketcherMgr::sketchSelectionModes(theModes);
349 }
350
351 bool PartSet_Module::isMouseOverWindow()
352 {
353   return mySketchMgr->isMouseOverWindow();
354 }
355
356 void PartSet_Module::propertyPanelDefined(ModuleBase_Operation* theOperation)
357 {
358   ModuleBase_IPropertyPanel* aPanel = theOperation->propertyPanel();
359   if (PartSet_SketcherMgr::isSketchOperation(theOperation) &&  (theOperation->isEditOperation())) {
360     // we have to manually activate the sketch label in edit mode
361       aPanel->activateWidget(aPanel->modelWidgets().first());
362       return;
363   }
364
365   // Restart last operation type 
366   if ((theOperation->id() == myLastOperationId) && myLastFeature) {
367     ModuleBase_ModelWidget* aWgt = aPanel->activeWidget();
368     if (theOperation->id().toStdString() == SketchPlugin_Line::ID()) {
369       // Initialise new line with first point equal to end of previous
370       PartSet_WidgetPoint2D* aPnt2dWgt = dynamic_cast<PartSet_WidgetPoint2D*>(aWgt);
371       if (aPnt2dWgt) {
372         std::shared_ptr<ModelAPI_Data> aData = myLastFeature->data();
373         std::shared_ptr<GeomDataAPI_Point2D> aPoint = 
374           std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(SketchPlugin_Line::END_ID()));
375         if (aPoint) {
376           aPnt2dWgt->setPoint(aPoint->x(), aPoint->y());
377           PartSet_Tools::setConstraints(mySketchMgr->activeSketch(), theOperation->feature(), 
378             aWgt->attributeID(), aPoint->x(), aPoint->y());
379           aPanel->activateNextWidget(aPnt2dWgt);
380         }
381       }
382     }
383   }
384 }
385
386
387 void PartSet_Module::onSelectionChanged()
388 {
389   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
390   if (!aOperation)
391     return;
392
393   bool isSketcherOp = false;
394   // An edit operation is enable only if the current opeation is the sketch operation
395   if (mySketchMgr->activeSketch()) {
396     if (PartSet_Tools::sketchPlane(mySketchMgr->activeSketch()))
397       isSketcherOp = PartSet_SketcherMgr::isSketchOperation(aOperation);
398   }
399   if (isSketcherOp) {
400     // Editing of constraints can be done on selection
401     ModuleBase_ISelection* aSelect = myWorkshop->selection();
402     QList<ModuleBase_ViewerPrs> aSelected = aSelect->getSelected();
403     if (aSelected.size() == 1) {
404       ModuleBase_ViewerPrs aPrs = aSelected.first();
405       ObjectPtr aObject = aPrs.object();
406       FeaturePtr aFeature = ModelAPI_Feature::feature(aObject);
407       if (aFeature) {
408         std::string aId = aFeature->getKind();
409         if ((aId == SketchPlugin_ConstraintRadius::ID()) ||
410             (aId == SketchPlugin_ConstraintLength::ID()) || 
411             (aId == SketchPlugin_ConstraintDistance::ID())) {
412           editFeature(aFeature);
413         }
414       }
415     }
416   } 
417 }
418
419 void PartSet_Module::onKeyRelease(ModuleBase_IViewWindow* theWnd, QKeyEvent* theEvent)
420 {
421   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
422   XGUI_OperationMgr* anOpMgr = aConnector->workshop()->operationMgr();
423   anOpMgr->onKeyReleased(theEvent);
424 }
425
426 void PartSet_Module::onEnterReleased()
427 {
428   myRestartingMode = RM_EmptyFeatureUsed;
429 }
430
431 void PartSet_Module::onOperationActivatedByPreselection()
432 {
433   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
434   if(anOperation && PartSet_SketcherMgr::isNestedSketchOperation(anOperation)) {
435     // Set final definitions if they are necessary
436     //propertyPanelDefined(aOperation);
437
438     /// Commit sketcher operations automatically
439     anOperation->commit();
440   }
441 }
442
443 void PartSet_Module::onNoMoreWidgets()
444 {
445   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
446   if (anOperation) {
447     if (PartSet_SketcherMgr::isNestedSketchOperation(anOperation)) {
448       if (myRestartingMode != RM_Forbided)
449         myRestartingMode = RM_LastFeatureUsed;
450       anOperation->commit();
451     }
452   }
453 }
454
455 void PartSet_Module::onVertexSelected()
456 {
457   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
458   if (aOperation->id().toStdString() == SketchPlugin_Line::ID()) {
459     /// If last line finished on vertex the lines creation sequence has to be break
460     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
461     ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
462     const QList<ModuleBase_ModelWidget*>& aWidgets = aPanel->modelWidgets();
463     QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
464     bool aFoundWidget = false;
465     bool aFoundObligatory = false;
466     for (; anIt != aLast && !aFoundObligatory; anIt++) {
467       if (!aFoundWidget)
468         aFoundWidget = *anIt == anActiveWidget;
469       else
470         aFoundObligatory = (*anIt)->isObligatory();
471     }
472     if (!aFoundObligatory)
473       myRestartingMode = RM_Forbided;
474   }
475 }
476
477 ModuleBase_ModelWidget* PartSet_Module::createWidgetByType(const std::string& theType, QWidget* theParent,
478                                             Config_WidgetAPI* theWidgetApi, std::string theParentId)
479 {
480   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
481   XGUI_Workshop* aWorkshop = aConnector->workshop();
482   ModuleBase_ModelWidget* aWgt = NULL;
483   if (theType == "sketch-start-label") {
484     PartSet_WidgetSketchLabel* aLabelWgt = new PartSet_WidgetSketchLabel(theParent, 
485       theWidgetApi, theParentId, mySketchMgr->isConstraintsShown());
486     aLabelWgt->setWorkshop(aWorkshop);
487     connect(aLabelWgt, SIGNAL(planeSelected(const std::shared_ptr<GeomAPI_Pln>&)),
488       mySketchMgr, SLOT(onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>&)));
489     connect(aLabelWgt, SIGNAL(showConstraintToggled(bool)),
490       mySketchMgr, SLOT(onShowConstraintsToggle(bool)));
491     aWgt = aLabelWgt;
492   } else if (theType == "sketch-2dpoint_selector") {
493     PartSet_WidgetPoint2D* aPointWgt = new PartSet_WidgetPoint2D(theParent, theWidgetApi, theParentId);
494     aPointWgt->setWorkshop(aWorkshop);
495     aPointWgt->setSketch(mySketchMgr->activeSketch());
496     connect(aPointWgt, SIGNAL(vertexSelected()), this, SLOT(onVertexSelected()));
497     aWgt = aPointWgt;
498   } else if (theType == "point2ddistance") {
499     PartSet_WidgetPoint2dDistance* aDistanceWgt = new PartSet_WidgetPoint2dDistance(theParent, theWidgetApi, theParentId);
500     aDistanceWgt->setWorkshop(aWorkshop);
501     aDistanceWgt->setSketch(mySketchMgr->activeSketch());
502     aWgt = aDistanceWgt;
503   } else if(theType == "point2dangle") {
504     PartSet_WidgetPoint2dAngle* anAngleWgt = new PartSet_WidgetPoint2dAngle(theParent, theWidgetApi, theParentId);
505     anAngleWgt->setWorkshop(aWorkshop);
506     anAngleWgt->setSketch(mySketchMgr->activeSketch());
507     aWgt = anAngleWgt;
508   } else if (theType == "sketch_shape_selector") {
509     PartSet_WidgetShapeSelector* aShapeSelectorWgt =
510       new PartSet_WidgetShapeSelector(theParent, workshop(), theWidgetApi, theParentId);
511     aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch());
512     aWgt = aShapeSelectorWgt;
513   } else if (theType == "sketch_multi_selector") {
514     PartSet_WidgetMultiSelector* aShapeSelectorWgt =
515       new PartSet_WidgetMultiSelector(theParent, workshop(), theWidgetApi, theParentId);
516     aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch());
517     aWgt = aShapeSelectorWgt;
518   } else if (theType == WDG_DOUBLEVALUE_EDITOR) {
519     aWgt = new PartSet_WidgetEditor(theParent, workshop(), theWidgetApi, theParentId);
520   } else if (theType == "export_file_selector") {
521     aWgt = new PartSet_WidgetFileSelector(theParent, workshop(), theWidgetApi, theParentId);
522   } else if (theType == "sketch_launcher") {
523     aWgt = new PartSet_WidgetSketchCreator(theParent, this, theWidgetApi, theParentId);
524   }
525   return aWgt;
526 }
527
528
529 bool PartSet_Module::deleteObjects()
530 {
531   SessionPtr aMgr = ModelAPI_Session::get();
532   // 1. check whether the delete should be processed in the module
533   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
534   bool isSketchOp = PartSet_SketcherMgr::isSketchOperation(anOperation),
535        isNestedOp = PartSet_SketcherMgr::isNestedSketchOperation(anOperation);
536   if (isSketchOp || isNestedOp) {
537     // 2. find selected presentations
538     // selected objects should be collected before the current operation abort because
539     // the abort leads to selection lost on constraint objects. It can be corrected after #386 issue
540     XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
541     XGUI_Workshop* aWorkshop = aConnector->workshop();
542     ModuleBase_ISelection* aSel = workshop()->selection();
543     QObjectPtrList aSelectedObj = aSel->selectedPresentations();
544     // if there are no selected objects in the viewer, that means that the selection in another
545     // place cased this method. It is necessary to return the false value to understande in above
546     // method that delete is not processed
547     if (aSelectedObj.count() == 0)
548       return false;
549
550     // avoid delete of the objects, which are not belong to the current sketch
551     // in order to do not delete results of other sketches
552     QObjectPtrList aSketchObjects;
553     QObjectPtrList::const_iterator anIt = aSelectedObj.begin(), aLast = aSelectedObj.end();
554     for ( ; anIt != aLast; anIt++) {
555       ObjectPtr anObject = *anIt;
556       if (mySketchMgr->isObjectOfSketch(anObject)) {
557         // sketch feature should be used in this list because workshop deletes features only
558         // results are skipped
559         FeaturePtr aSketchFeature = ModelAPI_Feature::feature(anObject);
560         aSketchObjects.append(aSketchFeature);
561       }
562     }
563     // if the selection contains only local selected presentations from other sketches,
564     // the Delete operation should not be done at all
565     if (aSketchObjects.size() == 0)
566       return true;
567
568     // the active nested sketch operation should be aborted unconditionally
569     if (isNestedOp)
570       anOperation->abort();
571
572     // 3. start operation
573     QString aDescription = aWorkshop->contextMenuMgr()->action("DELETE_CMD")->text();
574     aMgr->startOperation(aDescription.toStdString());
575
576     // 4. delete features
577     // sketch feature should be skipped, only sub-features can be removed
578     // when sketch operation is active
579     std::set<FeaturePtr> anIgnoredFeatures;
580     anIgnoredFeatures.insert(mySketchMgr->activeSketch());
581     aWorkshop->deleteFeatures(aSketchObjects, anIgnoredFeatures);
582   
583     // 5. stop operation
584     aWorkshop->displayer()->updateViewer();
585     aMgr->finishOperation();
586   } else {
587     bool isPartRemoved = false;
588     // Delete part with help of PartSet plugin
589     // TODO: the deleted objects has to be processed by multiselection
590     QObjectPtrList aObjects = myWorkshop->selection()->selectedObjects();
591     if (aObjects.size() == 1) {
592       ObjectPtr aObj = aObjects.first();
593       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
594       if (aFeature.get() && (aFeature->getKind() == PartSetPlugin_Part::ID())) {
595         // Remove feature should be created in the document of the part results
596         ResultPtr aPartResult = aFeature->firstResult();
597         if (aPartResult.get()) {
598           std::shared_ptr<ModelAPI_ResultPart> aPart =
599                        std::dynamic_pointer_cast<ModelAPI_ResultPart>(aPartResult);
600           DocumentPtr aPartDoc = aPart->partDoc();
601           if (aPartDoc.get()) {
602             aMgr->startOperation(PartSetPlugin_Remove::ID());
603             FeaturePtr aFeature = aPartDoc->addFeature(PartSetPlugin_Remove::ID());
604             aFeature->execute();
605             aMgr->finishOperation();
606             isPartRemoved = true;
607           }
608         }
609       }
610     }
611     return isPartRemoved;
612   }
613   return true;
614 }
615
616 void PartSet_Module::onFeatureTriggered()
617 {
618   SessionPtr aMgr = ModelAPI_Session::get();
619   // 1. check whether the delete should be processed in the module
620   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
621   bool isNestedOp = PartSet_SketcherMgr::isNestedCreateOperation(anOperation);
622   if (isNestedOp) {
623     // in case if in the viewer nothing is displayed, the create operation should not be
624     // comitted even if all values of the feature are initialized
625     if (!mySketchMgr->canDisplayCurrentCreatedFeature()) {
626       QAction* aCmd = dynamic_cast<QAction*>(sender());
627       //Do nothing on uncheck
628       if (aCmd->isCheckable() && !aCmd->isChecked())
629         return;
630
631       // the action information should be saved before the operation is aborted
632       // because this abort leads to update command status, which unchecks this action
633       anOperation->abort();
634
635       launchOperation(aCmd->data().toString());
636     }
637   }
638   ModuleBase_IModule::onFeatureTriggered();
639 }
640
641 void PartSet_Module::onObjectDisplayed(ObjectPtr theObject, AISObjectPtr theAIS) 
642 {
643   Handle(AIS_InteractiveObject) anAIS = theAIS->impl<Handle(AIS_InteractiveObject)>();
644   if (!anAIS.IsNull()) {
645     Handle(AIS_InteractiveContext) aCtx = anAIS->GetContext();
646     Handle(AIS_Dimension) aDim = Handle(AIS_Dimension)::DownCast(anAIS);
647     if (!aDim.IsNull()) {
648       aCtx->SetZLayer(aDim, myVisualLayerId);
649     } else {
650       Handle(SketcherPrs_SymbolPrs) aCons = Handle(SketcherPrs_SymbolPrs)::DownCast(anAIS);
651       if (!aCons.IsNull())
652         aCtx->SetZLayer(aCons, myVisualLayerId);
653     }
654   }
655 }
656
657 void PartSet_Module::onViewTransformed(int theTrsfType)
658 {
659   // Set length of arrows constant in pixel size
660   // if the operation is panning or rotate or panglobal then do nothing
661   if ((theTrsfType == 1) || (theTrsfType == 3) || (theTrsfType == 4))
662     return;
663
664   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
665   //Handle(V3d_View) aView = aViewer->activeView();
666
667   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
668   XGUI_Workshop* aWorkshop = aConnector->workshop();
669   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
670   Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
671
672   Handle(V3d_Viewer) aV3dViewer = aContext->CurrentViewer();
673   Handle(V3d_View) aView;
674   double aScale = 0;
675   for (aV3dViewer->InitDefinedViews(); 
676        aV3dViewer->MoreDefinedViews(); 
677        aV3dViewer->NextDefinedViews()) {
678     Handle(V3d_View) aV = aV3dViewer->DefinedView();
679     double aS = aV->Scale();
680     if (aS > aScale) {
681       aScale = aS;
682       aView = aV;
683     }
684   }
685   if (aView.IsNull())
686     return;
687   double aLen = aView->Convert(20);
688
689   double aPrevLen = SketcherPrs_Tools::getArrowSize();
690   SketcherPrs_Tools::setArrowSize(aLen);
691   const double aPrevScale = aViewer->Scale(aViewer->activeView());
692   const double aCurScale = aViewer->activeView()->Camera()->Scale();
693   aViewer->SetScale(aViewer->activeView(), aCurScale);
694   SketcherPrs_Tools::setTextHeight (aCurScale / aPrevScale * SketcherPrs_Tools::getTextHeight());
695   bool isModified = false;
696   QList<AISObjectPtr> aPrsList = aDisplayer->displayedPresentations();
697   foreach (AISObjectPtr aAIS, aPrsList) {
698     Handle(AIS_InteractiveObject) aAisObj = aAIS->impl<Handle(AIS_InteractiveObject)>();
699
700     Handle(AIS_Dimension) aDim = Handle(AIS_Dimension)::DownCast(aAisObj);
701     if (!aDim.IsNull()) {
702       aDim->DimensionAspect()->ArrowAspect()->SetLength(aLen);
703       aContext->Redisplay(aDim, false);
704       isModified = true;
705     }
706   }
707   if (isModified)
708     aDisplayer->updateViewer();
709 }
710
711
712 void PartSet_Module::customizeObjectBrowser(QWidget* theObjectBrowser)
713 {
714   XGUI_ObjectsBrowser* aOB = dynamic_cast<XGUI_ObjectsBrowser*>(theObjectBrowser);
715   if (aOB) {
716     QLineEdit* aLabel = aOB->activeDocLabel();
717     QPalette aPalet = aLabel->palette();
718     aPalet.setColor(QPalette::Text, QColor(0, 72, 140));
719     aLabel->setPalette(aPalet);
720     aOB->treeView()->setExpandsOnDoubleClick(false);
721     connect(aOB->treeView(), SIGNAL(doubleClicked(const QModelIndex&)), 
722       SLOT(onTreeViewDoubleClick(const QModelIndex&)));
723     connect(aOB, SIGNAL(headerMouseDblClicked(const QModelIndex&)), 
724       SLOT(onTreeViewDoubleClick(const QModelIndex&)));
725     connect(aOB->treeView(), SIGNAL(doubleClicked(const QModelIndex&)), 
726       myDataModel, SLOT(onMouseDoubleClick(const QModelIndex&)));
727   }
728 }
729
730
731 void PartSet_Module::addObjectBrowserMenu(QMenu* theMenu) const
732 {
733   QObjectPtrList aObjects = myWorkshop->selection()->selectedObjects();
734   int aSelected = aObjects.size();
735   SessionPtr aMgr = ModelAPI_Session::get();
736   if (aSelected == 1) {
737     bool hasResult = false;
738     bool hasFeature = false;
739     bool hasParameter = false;
740     ModuleBase_Tools::checkObjects(aObjects, hasResult, hasFeature, hasParameter);
741
742     ObjectPtr aObject = aObjects.first();
743     if (aObject) {
744       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
745       FeaturePtr aPartFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
746       bool isPart = aPart.get() || 
747         (aPartFeature.get() && (aPartFeature->getKind() == PartSetPlugin_Part::ID()));
748       if (isPart) {
749         DocumentPtr aPartDoc;
750         if (!aPart.get()) {
751           aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aPartFeature->firstResult());
752         }
753         if (aPart.get()) // this may be null is Part feature is disabled
754           aPartDoc = aPart->partDoc();
755         if (aMgr->activeDocument() == aPartDoc)
756           theMenu->addAction(myMenuMgr->action("DEACTIVATE_PART_CMD"));
757         else
758           theMenu->addAction(myMenuMgr->action("ACTIVATE_PART_CMD"));
759       } else if (aObject->document() == aMgr->activeDocument()) {
760         if (hasParameter || hasFeature)
761           theMenu->addAction(myMenuMgr->action("EDIT_CMD"));
762       }
763     } else {  // If feature is 0 the it means that selected root object (document)
764       if (aMgr->activeDocument() != aMgr->moduleDocument())
765         theMenu->addAction(myMenuMgr->action("ACTIVATE_PARTSET_CMD"));
766     }
767   } else if (aSelected == 0) {
768     // if there is no selection then it means that upper label is selected
769     QModelIndexList aIndexes = myWorkshop->selection()->selectedIndexes();
770     if (aIndexes.size() == 0) // it means that selection happens in top label outside of tree view
771       if (aMgr->activeDocument() != aMgr->moduleDocument())
772         theMenu->addAction(myMenuMgr->action("ACTIVATE_PARTSET_CMD"));
773   }
774 }
775
776 void PartSet_Module::processEvent(const std::shared_ptr<Events_Message>& theMessage)
777 {
778   if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_DOCUMENT_CHANGED)) {
779     XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
780     XGUI_Workshop* aWorkshop = aConnector->workshop();
781     XGUI_DataTree* aTreeView = aWorkshop->objectBrowser()->treeView();
782     QLineEdit* aLabel = aWorkshop->objectBrowser()->activeDocLabel();
783     QPalette aPalet = aLabel->palette();
784
785     SessionPtr aMgr = ModelAPI_Session::get();
786     DocumentPtr aActiveDoc = aMgr->activeDocument();
787     DocumentPtr aDoc = aMgr->moduleDocument();
788     QModelIndex aOldIndex = myDataModel->activePartTree();
789     if (aActiveDoc == aDoc) {
790       if (aOldIndex.isValid())
791         aTreeView->setExpanded(aOldIndex, false);
792       myDataModel->deactivatePart();
793       aPalet.setColor(QPalette::Text, QColor(0, 72, 140));
794     } else {
795       std::string aGrpName = ModelAPI_ResultPart::group();
796       for (int i = 0; i < aDoc->size(aGrpName); i++) {
797         ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aDoc->object(aGrpName, i));
798         if (aPart->partDoc() == aActiveDoc) {
799           QModelIndex aIndex = myDataModel->partIndex(aPart);
800           if (myDataModel->activatePart(aIndex)) {
801             if (aOldIndex.isValid())
802               aTreeView->setExpanded(aOldIndex, false);
803             aTreeView->setExpanded(myDataModel->activePartTree(), true);
804             aPalet.setColor(QPalette::Text, Qt::black);
805           }
806           break;
807         }
808       }
809     }
810     aLabel->setPalette(aPalet);
811     aWorkshop->updateCommandStatus();
812
813     // Update displayed objects in order to update active color
814     XGUI_Displayer* aDisplayer = aWorkshop->displayer();
815     QObjectPtrList aObjects = aDisplayer->displayedObjects();
816     foreach(ObjectPtr aObj, aObjects)
817       aDisplayer->redisplay(aObj, false);
818     aDisplayer->updateViewer();
819   }
820 }
821
822 void PartSet_Module::onTreeViewDoubleClick(const QModelIndex& theIndex)
823 {
824   SessionPtr aMgr = ModelAPI_Session::get();
825   if (!theIndex.isValid()) {
826     aMgr->setActiveDocument(aMgr->moduleDocument());
827     return;
828   }
829   if (theIndex.column() != 0) // Use only first column
830     return;
831   ObjectPtr aObj = myDataModel->object(theIndex);
832   ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
833   if (!aPart.get()) { // Probably this is Feature
834     FeaturePtr aPartFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
835     if (aPartFeature.get() && (aPartFeature->getKind() == PartSetPlugin_Part::ID())) {
836       aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aPartFeature->firstResult());
837     }
838   }
839   if (aPart.get()) { // if this is a part
840     if (aPart->partDoc() == aMgr->activeDocument()) {
841       aMgr->setActiveDocument(aMgr->moduleDocument());
842     } else {
843       aPart->activate();
844     }
845   }
846 }