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