Salome HOME
1de73631a75a822059f694ee04595d6f7d59c3e3
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetShapeSelector.cpp
1 // File:        ModuleBase_WidgetShapeSelector.h
2 // Created:     2 June 2014
3 // Author:      Vitaly Smetannikov
4
5 #include <ModuleBase_WidgetShapeSelector.h>
6 #include <ModuleBase_Definitions.h>
7 #include <ModuleBase_ISelection.h>
8 #include <ModuleBase_IWorkshop.h>
9 #include <ModuleBase_Tools.h>
10 #include <ModuleBase_WidgetValueFeature.h>
11 #include <Config_WidgetAPI.h>
12 #include <Events_Loop.h>
13 #include <Events_Message.h>
14 #include <GeomAPI_Interface.h>
15 #include <GeomAPI_Shape.h>
16 #include <ModelAPI_AttributeReference.h>
17 #include <ModelAPI_Data.h>
18 #include <ModelAPI_Document.h>
19 #include <ModelAPI_Events.h>
20 #include <ModelAPI_Feature.h>
21 #include <ModelAPI_Result.h>
22 #include <ModelAPI_AttributeReference.h>
23 #include <ModelAPI_AttributeSelection.h>
24 #include <ModelAPI_Session.h>
25 #include <ModelAPI_Tools.h>
26 #include <Config_WidgetAPI.h>
27 #include <Events_Error.h>
28
29 #include <GeomAPI_Shape.h>
30
31 #include <TopoDS_Shape.hxx>
32 #include <TopExp_Explorer.hxx>
33
34 #include <QWidget>
35 #include <QLayout>
36 #include <QLabel>
37 #include <QLineEdit>
38 #include <QToolButton>
39 #include <QString>
40 #include <QEvent>
41 #include <QDockWidget>
42
43 #include <TopExp_Explorer.hxx>
44 #include <TopoDS_Shape.hxx>
45
46 #include <boost/smart_ptr/shared_ptr.hpp>
47
48 #include <list>
49 #include <stdexcept>
50 #include <xstring>
51
52 typedef QMap<QString, TopAbs_ShapeEnum> ShapeTypes;
53 static ShapeTypes MyShapeTypes;
54
55 TopAbs_ShapeEnum ModuleBase_WidgetShapeSelector::shapeType(const QString& theType)
56 {
57   if (MyShapeTypes.count() == 0) {
58     MyShapeTypes["face"] = TopAbs_FACE;
59     MyShapeTypes["faces"] = TopAbs_FACE;
60     MyShapeTypes["vertex"] = TopAbs_VERTEX;
61     MyShapeTypes["vertices"] = TopAbs_VERTEX;
62     MyShapeTypes["wire"] = TopAbs_WIRE;
63     MyShapeTypes["edge"] = TopAbs_EDGE;
64     MyShapeTypes["edges"] = TopAbs_EDGE;
65     MyShapeTypes["shell"] = TopAbs_SHELL;
66     MyShapeTypes["solid"] = TopAbs_SOLID;
67     MyShapeTypes["solids"] = TopAbs_SOLID;
68   }
69   QString aType = theType.toLower();
70   if (MyShapeTypes.contains(aType))
71     return MyShapeTypes[aType];
72   Events_Error::send("Shape type defined in XML is not implemented!");
73   return TopAbs_SHAPE;
74 }
75
76 ModuleBase_WidgetShapeSelector::ModuleBase_WidgetShapeSelector(QWidget* theParent,
77                                                      ModuleBase_IWorkshop* theWorkshop,
78                                                      const Config_WidgetAPI* theData,
79                                                      const std::string& theParentId)
80     : ModuleBase_ModelWidget(theParent, theData, theParentId),
81       myWorkshop(theWorkshop), myIsActive(false), myUseSubShapes(false)
82 {
83   myContainer = new QWidget(theParent);
84   QHBoxLayout* aLayout = new QHBoxLayout(myContainer);
85   ModuleBase_Tools::adjustMargins(aLayout);
86
87   QString aLabelText = QString::fromStdString(theData->widgetLabel());
88   QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
89   myLabel = new QLabel(aLabelText, myContainer);
90   if (!aLabelIcon.isEmpty())
91     myLabel->setPixmap(QPixmap(aLabelIcon));
92
93   aLayout->addWidget(myLabel);
94
95   QString aToolTip = QString::fromStdString(theData->widgetTooltip());
96   myTextLine = new QLineEdit(myContainer);
97   myTextLine->setReadOnly(true);
98   myTextLine->setToolTip(aToolTip);
99   myTextLine->installEventFilter(this);
100
101   myBasePalet = myTextLine->palette();
102   myInactivePalet = myBasePalet;
103   myInactivePalet.setBrush(QPalette::Base, QBrush(Qt::gray, Qt::Dense6Pattern));
104   myTextLine->setPalette(myInactivePalet);
105
106   aLayout->addWidget(myTextLine, 1);
107
108   std::string aTypes = theData->getProperty("shape_types");
109   myShapeTypes = QString(aTypes.c_str()).split(' ');
110
111   myUseSubShapes = theData->getBooleanAttribute("use_subshapes", false); 
112 }
113
114 //********************************************************************
115 ModuleBase_WidgetShapeSelector::~ModuleBase_WidgetShapeSelector()
116 {
117   activateSelection(false);
118 }
119
120 //********************************************************************
121 bool ModuleBase_WidgetShapeSelector::storeValue() const
122 {
123   FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(mySelectedObject);
124   if (aSelectedFeature == myFeature)  // In order to avoid selection of the same object
125     return false;
126
127   DataPtr aData = myFeature->data();
128   if (myUseSubShapes) {
129     boost::shared_ptr<ModelAPI_AttributeSelection> aSelect = 
130       boost::dynamic_pointer_cast<ModelAPI_AttributeSelection>(aData->attribute(attributeID()));
131
132     ResultPtr aBody = boost::dynamic_pointer_cast<ModelAPI_Result>(mySelectedObject);
133     if (aBody) {
134       aSelect->setValue(aBody, myShape);
135       updateObject(myFeature);
136       return true;
137     }
138   } else {
139     boost::shared_ptr<ModelAPI_AttributeReference> aRef = 
140       boost::dynamic_pointer_cast<ModelAPI_AttributeReference>(aData->attribute(attributeID()));
141
142     ObjectPtr aObject = aRef->value();
143     if (!(aObject && aObject->isSame(mySelectedObject))) {
144       aRef->setValue(mySelectedObject);
145       updateObject(myFeature);
146       return true;
147     }
148   }
149   return false;
150 }
151
152 //********************************************************************
153 bool ModuleBase_WidgetShapeSelector::restoreValue()
154 {
155   DataPtr aData = myFeature->data();
156   bool isBlocked = this->blockSignals(true);
157   if (myUseSubShapes) {
158     boost::shared_ptr<ModelAPI_AttributeSelection> aSelect = aData->selection(attributeID());
159     if (aSelect) {
160       mySelectedObject = aSelect->context();
161       myShape = aSelect->value();
162     }
163   } else {
164     boost::shared_ptr<ModelAPI_AttributeReference> aRef = aData->reference(attributeID());
165     mySelectedObject = aRef->value();
166   }
167   updateSelectionName();
168
169   this->blockSignals(isBlocked);
170   return true;
171 }
172
173 //********************************************************************
174 QList<QWidget*> ModuleBase_WidgetShapeSelector::getControls() const
175 {
176   QList<QWidget*> aControls;
177   aControls.append(myLabel);
178   aControls.append(myTextLine);
179   return aControls;
180 }
181
182 //********************************************************************
183 void ModuleBase_WidgetShapeSelector::onSelectionChanged()
184 {
185   QList<ObjectPtr> aObjects = myWorkshop->selection()->selectedObjects();
186   if (aObjects.size() > 0) {
187     ObjectPtr aObject = aObjects.first();
188     if ((!mySelectedObject) && (!aObject))
189       return;
190     if (mySelectedObject && aObject && mySelectedObject->isSame(aObject))
191       return;
192
193     // Get sub-shapes from local selection
194     boost::shared_ptr<GeomAPI_Shape> aShape;
195     if (myUseSubShapes) {
196       NCollection_List<TopoDS_Shape> aShapeList;
197       std::list<ObjectPtr> aOwners;
198       myWorkshop->selection()->selectedShapes(aShapeList, aOwners);
199       if (aShapeList.Extent() > 0) {
200         aShape = boost::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape());
201         aShape->setImpl(new TopoDS_Shape(aShapeList.First()));
202       }
203     }
204
205     // Check that the selection corresponds to selection type
206     if (myUseSubShapes) {
207       if (!isAccepted(aShape))
208         return;
209     } else {
210       if (!isAccepted(aObject))
211         return;
212     }
213     setObject(aObject, aShape);
214     emit focusOutWidget(this);
215   }
216 }
217
218 //********************************************************************
219 void ModuleBase_WidgetShapeSelector::setObject(ObjectPtr theObj, boost::shared_ptr<GeomAPI_Shape> theShape)
220 {
221   if (mySelectedObject == theObj)
222     return;
223   mySelectedObject = theObj;
224   myShape = theShape;
225   if (mySelectedObject) {
226     raisePanel();
227     if (!myUseSubShapes) {
228       static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_TOHIDE);
229       ModelAPI_EventCreator::get()->sendUpdated(mySelectedObject, anEvent);
230     }
231   } 
232   updateSelectionName();
233   activateSelection(false);
234   emit valuesChanged();
235 }
236
237 //********************************************************************
238 bool ModuleBase_WidgetShapeSelector::isAccepted(const ObjectPtr theResult) const
239 {
240   ResultPtr aResult = boost::dynamic_pointer_cast<ModelAPI_Result>(theResult);
241   if (myFeature) {
242     // We can not select a result of our feature
243     const std::list<boost::shared_ptr<ModelAPI_Result>>& aRes = myFeature->results();
244     std::list<boost::shared_ptr<ModelAPI_Result> >::const_iterator aIt;
245     for (aIt = aRes.cbegin(); aIt != aRes.cend(); ++aIt) {
246       if ((*aIt) == aResult)
247         return false;
248     }
249   }
250   // Check that object belongs to active document or PartSet
251   DocumentPtr aDoc = aResult->document();
252   SessionPtr aMgr = ModelAPI_Session::get();
253   if (!(aDoc == aMgr->activeDocument()) || (aDoc == aMgr->moduleDocument()))
254     return false;
255
256   // Check that the shape of necessary type
257   boost::shared_ptr<GeomAPI_Shape> aShapePtr = ModelAPI_Tools::shape(aResult);
258   if (!aShapePtr)
259     return false;
260   TopoDS_Shape aShape = aShapePtr->impl<TopoDS_Shape>();
261   if (aShape.IsNull())
262     return false;
263
264   TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
265   if (aShapeType == TopAbs_COMPOUND) {
266     foreach (QString aType, myShapeTypes) {
267       TopExp_Explorer aEx(aShape, shapeType(aType));
268       if (aEx.More())
269         return true;
270     }
271   } else {
272     foreach (QString aType, myShapeTypes) {
273       if (shapeType(aType) == aShapeType)
274         return true;
275     }
276   }
277   return false;
278 }
279
280 //********************************************************************
281 bool ModuleBase_WidgetShapeSelector::isAccepted(boost::shared_ptr<GeomAPI_Shape> theShape) const
282 {
283   TopoDS_Shape aShape = theShape->impl<TopoDS_Shape>();
284   foreach (QString aType, myShapeTypes) {
285     if (aShape.ShapeType() == shapeType(aType))
286       return true;
287   }
288   return false;
289 }
290
291 //********************************************************************
292 void ModuleBase_WidgetShapeSelector::updateSelectionName()
293 {
294   if (mySelectedObject) {
295     std::string aName = mySelectedObject->data()->name();
296     myTextLine->setText(QString::fromStdString(aName));
297   } else {
298     if (myIsActive) {
299       QString aMsg = tr("Select a ");
300       int i = 0;
301       foreach (QString aType, myShapeTypes) {
302         if (i > 0)
303           aMsg += " or ";
304         aMsg += aType;
305         i++;
306       }
307       myTextLine->setText(aMsg);
308     } else
309       myTextLine->setText(tr("No object selected"));
310   }
311 }
312
313
314 //********************************************************************
315 void ModuleBase_WidgetShapeSelector::activateSelection(bool toActivate)
316 {
317   myIsActive = toActivate;
318   if (myIsActive)
319     myTextLine->setPalette(myBasePalet);
320   else
321     myTextLine->setPalette(myInactivePalet);
322   updateSelectionName();
323
324   if (myIsActive) {
325     connect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
326     if (myUseSubShapes) {
327       QIntList aList;
328       foreach (QString aType, myShapeTypes)
329         aList.append(shapeType(aType));
330       myWorkshop->activateSubShapesSelection(aList);
331     }
332   } else {
333     disconnect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
334     if (myUseSubShapes) 
335       myWorkshop->deactivateSubShapesSelection();
336   }
337 }
338
339 //********************************************************************
340 void ModuleBase_WidgetShapeSelector::raisePanel() const
341 {
342   QWidget* aParent = myContainer->parentWidget();
343   QWidget* aLastPanel = 0;
344   while (!aParent->inherits("QDockWidget")) {
345     aLastPanel = aParent;
346     aParent = aParent->parentWidget();
347     if (!aParent)
348       return;
349   }
350   if (aParent->inherits("QDockWidget")) {
351     QDockWidget* aTabWgt = (QDockWidget*) aParent;
352     aTabWgt->raise();
353   }
354 }
355
356 //********************************************************************
357 bool ModuleBase_WidgetShapeSelector::focusTo()
358 {
359   activateSelection(true);
360   return true;
361 }
362
363 //********************************************************************
364 bool ModuleBase_WidgetShapeSelector::eventFilter(QObject* theObj, QEvent* theEvent)
365 {
366   if (theObj == myTextLine) {
367     if (theEvent->type() == QEvent::FocusIn)
368       activateSelection(true);
369   }
370   return ModuleBase_ModelWidget::eventFilter(theObj, theEvent);
371 }
372
373 //********************************************************************
374 bool ModuleBase_WidgetShapeSelector::setValue(ModuleBase_WidgetValue* theValue)
375 {
376   if (theValue) {
377     ModuleBase_WidgetValueFeature* aFeatureValue =
378         dynamic_cast<ModuleBase_WidgetValueFeature*>(theValue);
379     if (aFeatureValue && aFeatureValue->object()) {
380       ObjectPtr aObject = aFeatureValue->object();
381       if (isAccepted(aObject)) {
382         setObject(aObject);
383         return true;
384       }
385     }
386   }
387   return false;
388 }
389