Salome HOME
#1119 Confirmation box for deleting parts
[modules/shaper.git] / src / PartSet / PartSet_WidgetShapeSelector.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_WidgetShapeSelector.cpp
4 // Created:     27 Nov 2014
5 // Author:      Vitaly Smetannikov
6
7 #include "PartSet_WidgetShapeSelector.h"
8 #include "PartSet_Module.h"
9 #include "PartSet_SketcherMgr.h"
10
11 #include <ModelAPI_AttributeRefAttr.h>
12 #include <ModelAPI_Session.h>
13 #include <ModelAPI_Validator.h>
14
15 #include <ModuleBase_Definitions.h>
16 #include <Config_WidgetAPI.h>
17
18 #include <PartSet_ExternalObjectsMgr.h>
19 #include <SketchPlugin_Feature.h>
20
21 #include <XGUI_Workshop.h>
22
23 #include <XGUI_ModuleConnector.h>
24 #include <XGUI_Displayer.h>
25 #include <XGUI_SelectionMgr.h>
26 #include <XGUI_Selection.h>
27 #include <XGUI_Tools.h>
28
29 PartSet_WidgetShapeSelector::PartSet_WidgetShapeSelector(QWidget* theParent,
30                                                          ModuleBase_IWorkshop* theWorkshop,
31                                                          const Config_WidgetAPI* theData,
32                                                          const std::string& theParentId)
33 : ModuleBase_WidgetShapeSelector(theParent, theWorkshop, theData, theParentId)
34 {
35   myUseSketchPlane = theData->getBooleanAttribute("use_sketch_plane", true);
36   myExternalObjectMgr = new PartSet_ExternalObjectsMgr(theData->getProperty("use_external"), true);
37 }
38
39 PartSet_WidgetShapeSelector::~PartSet_WidgetShapeSelector()
40 {
41   delete myExternalObjectMgr;
42 }
43
44 //********************************************************************
45 void PartSet_WidgetShapeSelector::activateSelectionAndFilters(bool toActivate)
46 {
47   ModuleBase_WidgetShapeSelector::activateSelectionAndFilters(toActivate);
48   if (!myUseSketchPlane) {
49     XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
50     PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(aWorkshop->module());
51     aModule->sketchMgr()->activatePlaneFilter(false);
52   }
53 }
54
55 //********************************************************************
56 bool PartSet_WidgetShapeSelector::isValidSelectionCustom(const ModuleBase_ViewerPrs& thePrs)
57 {
58   bool aValid = ModuleBase_WidgetShapeSelector::isValidSelectionCustom(thePrs);
59   if (aValid) {
60     ObjectPtr anObject = myWorkshop->selection()->getResult(thePrs);
61     aValid = myExternalObjectMgr->isValidObject(anObject);
62   }
63   return aValid;
64 }
65
66 void PartSet_WidgetShapeSelector::getGeomSelection(const ModuleBase_ViewerPrs& thePrs,
67                                                    ObjectPtr& theObject,
68                                                    GeomShapePtr& theShape)
69 {
70   ModuleBase_WidgetShapeSelector::getGeomSelection(thePrs, theObject, theShape);
71
72   FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(theObject);
73   std::shared_ptr<SketchPlugin_Feature> aSPFeature = 
74           std::dynamic_pointer_cast<SketchPlugin_Feature>(aSelectedFeature);
75   // there is no a sketch feature is selected, but the shape exists, try to create an exernal object
76   // TODO: unite with the same functionality in PartSet_WidgetShapeSelector
77   if (aSPFeature.get() == NULL && myExternalObjectMgr->useExternal()) {
78     GeomShapePtr aShape = theShape;
79     if (!aShape.get()) {
80       ResultPtr aResult = myWorkshop->selection()->getResult(thePrs);
81       if (aResult.get())
82         aShape = aResult->shape();
83     }
84     if (aShape.get() != NULL && !aShape->isNull())
85       theObject = myExternalObjectMgr->externalObject(theObject, aShape, sketch(), myIsInValidate);
86   }
87 }
88
89 //********************************************************************
90 void PartSet_WidgetShapeSelector::restoreAttributeValue(const bool theValid)
91 {
92   ModuleBase_WidgetShapeSelector::restoreAttributeValue(theValid);
93   myExternalObjectMgr->removeExternal(sketch(), myFeature, myWorkshop, true);
94 }
95