Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetShapeSelector.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetShapeSelector.h
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
16 #include <Config_WidgetAPI.h>
17 #include <Events_Loop.h>
18 #include <Events_Message.h>
19 #include <GeomAPI_Interface.h>
20 #include <GeomAPI_Shape.h>
21 #include <GeomValidators_Tools.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 #include <ModelAPI_ShapeValidator.h>
39
40 #include <Config_WidgetAPI.h>
41 #include <Events_Error.h>
42
43 #include <GeomAPI_Shape.h>
44
45 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
46 #include <TopoDS_Shape.hxx>
47 #include <TopExp_Explorer.hxx>
48
49 #include <QWidget>
50 #include <QLayout>
51 #include <QLabel>
52 #include <QLineEdit>
53 #include <QToolButton>
54 #include <QString>
55 #include <QEvent>
56 #include <QDockWidget>
57 #include <QApplication>
58 #include <QFormLayout>
59
60 #include <TopExp_Explorer.hxx>
61 #include <TopoDS_Shape.hxx>
62
63 #include <memory>
64
65 #include <list>
66 #include <string>
67
68 typedef QMap<QString, TopAbs_ShapeEnum> ShapeTypes;
69 static ShapeTypes MyShapeTypes;
70
71 TopAbs_ShapeEnum ModuleBase_WidgetShapeSelector::shapeType(const QString& theType)
72 {
73   if (MyShapeTypes.count() == 0) {
74     MyShapeTypes["face"] = TopAbs_FACE;
75     MyShapeTypes["faces"] = TopAbs_FACE;
76     MyShapeTypes["vertex"] = TopAbs_VERTEX;
77     MyShapeTypes["vertices"] = TopAbs_VERTEX;
78     MyShapeTypes["wire"] = TopAbs_WIRE;
79     MyShapeTypes["edge"] = TopAbs_EDGE;
80     MyShapeTypes["edges"] = TopAbs_EDGE;
81     MyShapeTypes["shell"] = TopAbs_SHELL;
82     MyShapeTypes["solid"] = TopAbs_SOLID;
83     MyShapeTypes["solids"] = TopAbs_SOLID;
84   }
85   QString aType = theType.toLower();
86   if (MyShapeTypes.contains(aType))
87     return MyShapeTypes[aType];
88   Events_Error::send("Shape type defined in XML is not implemented!");
89   return TopAbs_SHAPE;
90 }
91
92 ModuleBase_WidgetShapeSelector::ModuleBase_WidgetShapeSelector(QWidget* theParent,
93                                                      ModuleBase_IWorkshop* theWorkshop,
94                                                      const Config_WidgetAPI* theData,
95                                                      const std::string& theParentId)
96     : ModuleBase_WidgetValidated(theParent, theData, theParentId),
97       myWorkshop(theWorkshop), myIsActive(false)
98 {
99   QFormLayout* aLayout = new QFormLayout(this);
100   ModuleBase_Tools::adjustMargins(aLayout);
101
102   QString aLabelText = QString::fromStdString(theData->widgetLabel());
103   QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
104   myLabel = new QLabel(aLabelText, this);
105   if (!aLabelIcon.isEmpty())
106     myLabel->setPixmap(QPixmap(aLabelIcon));
107
108
109   QString aToolTip = QString::fromStdString(theData->widgetTooltip());
110   myTextLine = new QLineEdit(this);
111   myTextLine->setReadOnly(true);
112   myTextLine->setToolTip(aToolTip);
113   myTextLine->installEventFilter(this);
114
115   aLayout->addRow(myLabel, myTextLine);
116
117   std::string aTypes = theData->getProperty("shape_types");
118   myShapeTypes = QString(aTypes.c_str()).split(' ', QString::SkipEmptyParts);
119 }
120
121 //********************************************************************
122 ModuleBase_WidgetShapeSelector::~ModuleBase_WidgetShapeSelector()
123 {
124   activateSelection(false);
125 }
126
127 //********************************************************************
128 bool ModuleBase_WidgetShapeSelector::storeValueCustom() const
129 {
130   // the value is stored on the selection changed signal processing 
131   return true;
132 }
133
134 //********************************************************************
135 bool ModuleBase_WidgetShapeSelector::setObject(ObjectPtr theSelectedObject,
136                                                GeomShapePtr theShape)
137 {
138   bool isChanged = false;
139   FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(theSelectedObject);
140   if (aSelectedFeature == myFeature)  // In order to avoid selection of the same object
141     return isChanged;
142
143   DataPtr aData = myFeature->data();
144   AttributeReferencePtr aRef = aData->reference(attributeID());
145   if (aRef) {
146     ObjectPtr aObject = aRef->value();
147     if (!(aObject && aObject->isSame(theSelectedObject))) {
148       aRef->setValue(theSelectedObject);
149       isChanged = true;
150     }
151   } else {
152     AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
153     if (aRefAttr) {
154       ObjectPtr aObject = aRefAttr->object();
155       if (!(aObject && aObject->isSame(theSelectedObject))) {
156         aRefAttr->setObject(theSelectedObject);
157         isChanged = true;
158       }
159     } else {
160       AttributeSelectionPtr aSelectAttr = aData->selection(attributeID());
161       ResultPtr aBody = std::dynamic_pointer_cast<ModelAPI_Result>(theSelectedObject);
162       if (aSelectAttr && aBody && (theShape.get() != NULL)) {
163         aSelectAttr->setValue(aBody, theShape);
164         isChanged = true;
165       }
166     }
167   }
168   return isChanged;
169 }
170
171 //********************************************************************
172 void ModuleBase_WidgetShapeSelector::clearAttribute()
173 {
174   DataPtr aData = myFeature->data();
175   AttributeSelectionPtr aSelect = aData->selection(attributeID());
176   if (aSelect) {
177     aSelect->setValue(ResultPtr(), std::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape()));
178     return;
179   }
180   AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
181   if (aRefAttr) {
182     aRefAttr->setObject(ObjectPtr());
183     return;
184   }
185   AttributeReferencePtr aRef = aData->reference(attributeID());
186   if (aRef) {
187     aRef->setObject(ObjectPtr());
188   }
189 }
190
191 //********************************************************************
192 bool ModuleBase_WidgetShapeSelector::restoreValue()
193 {
194   bool isBlocked = this->blockSignals(true);
195   updateSelectionName();
196   this->blockSignals(isBlocked);
197
198   return true;
199 }
200
201 //********************************************************************
202 QList<QWidget*> ModuleBase_WidgetShapeSelector::getControls() const
203 {
204   QList<QWidget*> aControls;
205   aControls.append(myTextLine);
206   return aControls;
207 }
208
209 //********************************************************************
210 void ModuleBase_WidgetShapeSelector::onSelectionChanged()
211 {
212   // In order to make reselection possible
213   // TODO: check with MPV clearAttribute();
214
215   QList<ModuleBase_ViewerPrs> aSelectedPrs = getSelectedEntitiesOrObjects(myWorkshop->selection());
216   if (aSelectedPrs.empty())
217     return;
218   ModuleBase_ViewerPrs aPrs = aSelectedPrs.first();
219   if (aPrs.isEmpty() || !isValidSelection(aPrs))
220     return;
221
222   if (!aPrs.isEmpty() && isValidSelection(aPrs)) {
223     setSelectionCustom(aPrs);
224     // the updateObject method should be called to flush the updated sigal. The workshop listens it,
225     // calls validators for the feature and, as a result, updates the Apply button state.
226     updateObject(myFeature);
227     //if (theObj) {
228       //  raisePanel();
229     //} 
230     //updateSelectionName();
231     //emit valuesChanged();
232     emit focusOutWidget(this);
233   }
234
235 }
236
237 //********************************************************************
238 //bool ModuleBase_WidgetShapeSelector::acceptObjectShape(const ObjectPtr theResult) const
239 //{
240 //  ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theResult);
241 //
242 //  // Check that the shape of necessary type
243 //  std::shared_ptr<GeomAPI_Shape> aShapePtr = ModelAPI_Tools::shape(aResult);
244 //  if (!aShapePtr)
245 //    return false;
246 //  TopoDS_Shape aShape = aShapePtr->impl<TopoDS_Shape>();
247 //  if (aShape.IsNull())
248 //    return false;
249 //
250 //  TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
251 //  if (aShapeType == TopAbs_COMPOUND) {
252 //    foreach (QString aType,
253 //      myShapeTypes) {
254 //      TopExp_Explorer aEx(aShape, shapeType(aType));
255 //      if (aEx.More())
256 //        return true;
257 //    }
258 //  } else {
259 //    foreach (QString aType, myShapeTypes) {
260 //      if (shapeType(aType) == aShapeType)
261 //        return true;
262 //    }
263 //  }
264 //  return false;
265 //}
266
267 //********************************************************************
268 bool ModuleBase_WidgetShapeSelector::acceptSubShape(std::shared_ptr<GeomAPI_Shape> theShape) const
269 {
270   TopoDS_Shape aShape = theShape->impl<TopoDS_Shape>();
271   foreach (QString aType, myShapeTypes) {
272     if (aShape.ShapeType() == shapeType(aType))
273       return true;
274   }
275   return false;
276 }
277
278 //********************************************************************
279 GeomShapePtr ModuleBase_WidgetShapeSelector::getShape() const
280 {
281   GeomShapePtr aShape;
282   DataPtr aData = myFeature->data();
283   if (aData.get() == NULL)
284     return aShape;
285
286   AttributeSelectionPtr aSelect = aData->selection(attributeID());
287   if (aSelect)
288     aShape = aSelect->value();
289
290   return aShape;
291 }
292
293 //********************************************************************
294 void ModuleBase_WidgetShapeSelector::updateSelectionName()
295 {
296   DataPtr aData = myFeature->data();
297   if (aData.get() == NULL)
298     return;
299
300   bool isNameUpdated = false;
301   AttributeSelectionPtr aSelect = aData->selection(attributeID());
302   if (aSelect) {
303     myTextLine->setText(QString::fromStdString(aSelect->namingName()));
304     isNameUpdated = true;
305   }
306   if (!isNameUpdated) {
307     ObjectPtr anObject = GeomValidators_Tools::getObject(myFeature->attribute(attributeID()));
308     if (anObject.get() != NULL) {
309       std::string aName = anObject->data()->name();
310       myTextLine->setText(QString::fromStdString(aName));
311     } else {
312       AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
313       if (aRefAttr && aRefAttr->attr().get() != NULL) {
314         //myIsObject = aRefAttr->isObject();
315         AttributePtr anAttr = aRefAttr->attr();
316         if (anAttr.get() != NULL) {
317           std::stringstream aName;
318           aName <<anAttr->owner()->data()->name()<<"/"<<anAttr->id();
319           myTextLine->setText(QString::fromStdString(aName.str()));
320         }
321       }
322       else if (myIsActive) {
323         myTextLine->setText("");
324       }
325     }
326   }
327 }
328
329
330 //********************************************************************
331 void ModuleBase_WidgetShapeSelector::activateSelection(bool toActivate)
332 {
333   if (myIsActive == toActivate)
334     return;
335   myIsActive = toActivate;
336   updateSelectionName();
337
338   if (myIsActive) {
339     QIntList aList;
340     foreach (QString aType, myShapeTypes) {
341       aList.append(shapeType(aType));
342     }
343     myWorkshop->activateSubShapesSelection(aList);
344   } else {
345     myWorkshop->deactivateSubShapesSelection();
346   }
347
348   activateFilters(myWorkshop, myIsActive);
349 }
350
351 //********************************************************************
352 void ModuleBase_WidgetShapeSelector::raisePanel() const
353 {
354   QWidget* aParent = this->parentWidget();
355   QWidget* aLastPanel = 0;
356   while (!aParent->inherits("QDockWidget")) {
357     aLastPanel = aParent;
358     aParent = aParent->parentWidget();
359     if (!aParent)
360       return;
361   }
362   if (aParent->inherits("QDockWidget")) {
363     QDockWidget* aTabWgt = (QDockWidget*) aParent;
364     aTabWgt->raise();
365   }
366 }
367
368 //********************************************************************
369 void ModuleBase_WidgetShapeSelector::activateCustom()
370 {
371   connect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
372   activateSelection(true);
373 }
374
375 //********************************************************************
376 void ModuleBase_WidgetShapeSelector::storeAttributeValue()
377 {
378   DataPtr aData = myFeature->data();
379   AttributePtr anAttribute = myFeature->attribute(attributeID());
380
381   myObject = GeomValidators_Tools::getObject(anAttribute);
382   myShape = getShape();
383   myRefAttribute = AttributePtr();
384   myIsObject = false;
385   AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
386   if (aRefAttr) {
387     myIsObject = aRefAttr->isObject();
388     myRefAttribute = aRefAttr->attr();
389   }
390 }
391
392 //********************************************************************
393 void ModuleBase_WidgetShapeSelector::restoreAttributeValue(bool theValid)
394 {
395   DataPtr aData = myFeature->data();
396   AttributePtr anAttribute = myFeature->attribute(attributeID());
397
398   setObject(myObject, myShape);
399   AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID());
400   if (aRefAttr) {
401     if (!myIsObject)
402       aRefAttr->setAttr(myRefAttribute);
403   }
404 }
405
406 //********************************************************************
407 bool ModuleBase_WidgetShapeSelector::setSelectionCustom(const ModuleBase_ViewerPrs& thePrs)
408 {
409   bool isDone = false;
410
411   // It should be checked by corresponded validator
412   ObjectPtr aObject = thePrs.object();
413   ObjectPtr aCurrentObject = GeomValidators_Tools::getObject(myFeature->attribute(attributeID()));
414   /*
415   if ((!aCurrentObject) && (!aObject))
416     return false;*/
417
418   // It should be checked by corresponded validator
419   // Check that the selected object is result (others can not be accepted)
420   ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObject);
421   if (!aRes)
422     return false;
423   /*if (myFeature) {
424     // We can not select a result of our feature
425     const std::list<std::shared_ptr<ModelAPI_Result>>& aResList = myFeature->results();
426     std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aIt;
427     for (aIt = aResList.cbegin(); aIt != aResList.cend(); ++aIt) {
428       if ((*aIt) == aRes)
429         return false;
430     }
431   }
432   */
433   // It should be checked by corresponded validator
434   /*
435   // Check that object belongs to active document or PartSet
436   DocumentPtr aDoc = aRes->document();
437   SessionPtr aMgr = ModelAPI_Session::get();
438   if (!(aDoc == aMgr->activeDocument()) && !(aDoc == aMgr->moduleDocument()))
439     return false;*/
440
441   // It should be checked by corresponded validator
442   // Check that the result has a shape
443   GeomShapePtr aShape = ModelAPI_Tools::shape(aRes);
444   if (!aShape)
445     return false;
446
447   // Get sub-shapes from local selection
448   if (!thePrs.shape().IsNull()) {
449     aShape = std::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape());
450     aShape->setImpl(new TopoDS_Shape(thePrs.shape()));
451   }
452   // Check that the selection corresponds to selection type
453   if (!acceptSubShape(aShape))
454     return false;
455
456   setObject(aObject, aShape);
457   return true;
458 }
459
460 //********************************************************************
461 void ModuleBase_WidgetShapeSelector::deactivate()
462 {
463   activateSelection(false);
464   disconnect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
465 }