Salome HOME
Issue #1343 Improvement of Extrusion and Revolution operations: extrusion cut.
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetShapeSelector.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetShapeSelector.cpp
4 // Created:     2 June 2014
5 // Author:      Vitaly Smetannikov
6
7 #include <ModuleBase_WidgetShapeSelector.h>
8 #include <ModuleBase_Definitions.h>
9 #include <ModuleBase_ISelection.h>
10 #include <ModuleBase_IWorkshop.h>
11 #include <ModuleBase_IViewer.h>
12 #include <ModuleBase_Tools.h>
13 #include <ModuleBase_FilterFactory.h>
14 #include <ModuleBase_Filter.h>
15 #include <ModuleBase_IModule.h>
16
17 #include <Config_WidgetAPI.h>
18 #include <Events_Loop.h>
19 #include <Events_Message.h>
20 #include <GeomAPI_Interface.h>
21 #include <GeomAPI_Shape.h>
22
23 #include <ModelAPI_AttributeReference.h>
24 #include <ModelAPI_Data.h>
25 #include <ModelAPI_Document.h>
26 #include <ModelAPI_Events.h>
27 #include <ModelAPI_Feature.h>
28 #include <ModelAPI_Result.h>
29 #include <ModelAPI_ResultConstruction.h>
30 #include <ModelAPI_AttributeReference.h>
31 #include <ModelAPI_AttributeSelection.h>
32 #include <ModelAPI_Session.h>
33 #include <ModelAPI_Tools.h>
34 #include <ModelAPI_ResultBody.h>
35 #include <ModelAPI_AttributeRefAttr.h>
36 #include <ModelAPI_Validator.h>
37 #include <ModelAPI_AttributeValidator.h>
38
39 #include <Config_WidgetAPI.h>
40 #include <Events_Error.h>
41
42 #include <GeomAPI_Shape.h>
43
44 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
45 #include <TopoDS_Shape.hxx>
46 #include <TopExp_Explorer.hxx>
47
48 #include <QWidget>
49 #include <QLayout>
50 #include <QLabel>
51 #include <QLineEdit>
52 #include <QToolButton>
53 #include <QString>
54 #include <QEvent>
55 #include <QDockWidget>
56 #include <QApplication>
57 #include <QFormLayout>
58
59 #include <TopExp_Explorer.hxx>
60 #include <TopoDS_Shape.hxx>
61
62 #include <memory>
63
64 #include <list>
65 #include <string>
66
67 ModuleBase_WidgetShapeSelector::ModuleBase_WidgetShapeSelector(QWidget* theParent,
68                                                      ModuleBase_IWorkshop* theWorkshop,
69                                                      const Config_WidgetAPI* theData)
70 : ModuleBase_WidgetSelector(theParent, theWorkshop, theData)
71 {
72   QFormLayout* aLayout = new QFormLayout(this);
73   ModuleBase_Tools::adjustMargins(aLayout);
74
75   QString aLabelText = QString::fromStdString(theData->widgetLabel());
76   QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
77   myLabel = new QLabel(aLabelText, this);
78   if (!aLabelIcon.isEmpty())
79     myLabel->setPixmap(QPixmap(aLabelIcon));
80
81
82   QString aToolTip = QString::fromStdString(theData->widgetTooltip());
83   myTextLine = new QLineEdit(this);
84   QString anObjName = QString::fromStdString(attributeID());
85   myTextLine->setObjectName(anObjName);
86   myTextLine->setReadOnly(true);
87   myTextLine->setToolTip(aToolTip);
88   myTextLine->installEventFilter(this);
89
90   aLayout->addRow(myLabel, myTextLine);
91   myLabel->setToolTip(aToolTip);
92
93   std::string aTypes = theData->getProperty("shape_types");
94   myShapeTypes = QString(aTypes.c_str()).split(' ', QString::SkipEmptyParts);
95 }
96
97 //********************************************************************
98 ModuleBase_WidgetShapeSelector::~ModuleBase_WidgetShapeSelector()
99 {
100 }
101
102 //********************************************************************
103 bool ModuleBase_WidgetShapeSelector::storeValueCustom() const
104 {
105   // the value is stored on the selection changed signal processing 
106   return true;
107 }
108
109 //********************************************************************
110 void ModuleBase_WidgetShapeSelector::setObject(ObjectPtr theObject,
111                                                GeomShapePtr theShape)
112 {
113   DataPtr aData = myFeature->data();
114   ModuleBase_Tools::setObject(aData->attribute(attributeID()), theObject, theShape,
115                               myWorkshop, myIsInValidate);
116 }
117
118 //********************************************************************
119 QList<ModuleBase_ViewerPrs> ModuleBase_WidgetShapeSelector::getAttributeSelection() const
120 {
121   QList<ModuleBase_ViewerPrs> aSelected;
122   if(myFeature) {
123     DataPtr aData = myFeature->data();
124     AttributePtr anAttribute = myFeature->attribute(attributeID());
125
126     ObjectPtr anObject = ModuleBase_Tools::getObject(anAttribute);
127     std::shared_ptr<GeomAPI_Shape> aShapePtr = getShape();
128     ModuleBase_ViewerPrs aPrs(anObject, aShapePtr, NULL);
129     aSelected.append(aPrs);
130   }
131   return aSelected;
132 }
133
134 //********************************************************************
135 bool ModuleBase_WidgetShapeSelector::restoreValueCustom()
136 {
137   bool isBlocked = this->blockSignals(true);
138   updateSelectionName();
139   this->blockSignals(isBlocked);
140
141   return true;
142 }
143
144 //********************************************************************
145 QList<QWidget*> ModuleBase_WidgetShapeSelector::getControls() const
146 {
147   QList<QWidget*> aControls;
148   aControls.append(myTextLine);
149   return aControls;
150 }
151
152 void ModuleBase_WidgetShapeSelector::updateFocus()
153 {
154   emit focusOutWidget(this);
155 }
156
157 //********************************************************************
158 QIntList ModuleBase_WidgetShapeSelector::getShapeTypes() const
159 {
160   QIntList aShapeTypes;
161   foreach(QString aType, myShapeTypes) {
162     aShapeTypes.append(ModuleBase_Tools::shapeType(aType));
163   }
164   return aShapeTypes;
165 }
166
167 //********************************************************************
168 GeomShapePtr ModuleBase_WidgetShapeSelector::getShape() const
169 {
170   GeomShapePtr aShape;
171   DataPtr aData = myFeature->data();
172   if (!aData->isValid())
173     return aShape;
174
175   std::string aType = aData->attribute(attributeID())->attributeType();
176   if (aType == ModelAPI_AttributeReference::typeId()) {
177   } else if (aType == ModelAPI_AttributeRefAttr::typeId()) {
178     AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
179     if (aRefAttr.get() && !aRefAttr->isObject()) {
180       AttributePtr anAttribute = aRefAttr->attr();
181       aShape = myWorkshop->module()->findShape(anAttribute);
182     }
183   } else if (aType == ModelAPI_AttributeSelection::typeId()) {
184     AttributeSelectionPtr aSelectAttr = aData->selection(attributeID());
185     aShape = aSelectAttr->value();
186   }
187
188   return aShape;
189 }
190
191 //********************************************************************
192 void ModuleBase_WidgetShapeSelector::updateSelectionName()
193 {
194   DataPtr aData = myFeature->data();
195   if (!aData->isValid())
196     return;
197
198   bool isNameUpdated = false;
199   AttributeSelectionPtr aSelect = aData->selection(attributeID());
200   if (aSelect) {
201     myTextLine->setText(QString::fromStdString(aSelect->namingName(getDefaultValue())));
202     isNameUpdated = true;
203   }
204   if (!isNameUpdated) {
205     ObjectPtr anObject = ModuleBase_Tools::getObject(myFeature->attribute(attributeID()));
206     if (anObject.get() != NULL) {
207       std::string aName = anObject->data()->name();
208       myTextLine->setText(QString::fromStdString(aName));
209     } else {
210       AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
211       if (aRefAttr && aRefAttr->attr().get() != NULL) {
212         //myIsObject = aRefAttr->isObject();
213         std::string anAttrName = generateName(aRefAttr->attr(), myWorkshop);
214         myTextLine->setText(QString::fromStdString(anAttrName));
215       }
216       else {
217         myTextLine->setText(getDefaultValue().c_str());
218       }
219     }
220   }
221 }
222
223 //********************************************************************
224 void ModuleBase_WidgetShapeSelector::storeAttributeValue()
225 {
226   ModuleBase_WidgetValidated::storeAttributeValue();
227
228   DataPtr aData = myFeature->data();
229   AttributePtr anAttribute = myFeature->attribute(attributeID());
230
231   myObject = ModuleBase_Tools::getObject(anAttribute);
232   myShape = getShape();
233   myRefAttribute = AttributePtr();
234   myIsObject = false;
235   AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
236   if (aRefAttr) {
237     myIsObject = aRefAttr->isObject();
238     myRefAttribute = aRefAttr->attr();
239   }
240 }
241
242 //********************************************************************
243 void ModuleBase_WidgetShapeSelector::restoreAttributeValue(bool theValid)
244 {
245   ModuleBase_WidgetValidated::restoreAttributeValue(theValid);
246
247   DataPtr aData = myFeature->data();
248   AttributePtr anAttribute = myFeature->attribute(attributeID());
249
250   setObject(myObject, myShape);
251   AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
252   if (aRefAttr) {
253     if (!myIsObject)
254       aRefAttr->setAttr(myRefAttribute);
255   }
256 }