Salome HOME
b01892e6a4b658821ff9052a07f1adcb51af2ad1
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetMultiSelector.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_WidgetMultiSelector.cpp
5  *
6  *  Created on: Aug 28, 2014
7  *      Author: sbh
8  */
9
10 #include <ModuleBase_WidgetMultiSelector.h>
11 #include <ModuleBase_WidgetShapeSelector.h>
12 #include <ModuleBase_ISelection.h>
13 #include <ModuleBase_IWorkshop.h>
14 #include <ModuleBase_IViewer.h>
15 #include <ModuleBase_Tools.h>
16 #include <ModuleBase_Definitions.h>
17
18 #include <GeomValidators_ShapeType.h>
19
20 #include <ModelAPI_Data.h>
21 #include <ModelAPI_Object.h>
22
23 #include <Config_WidgetAPI.h>
24
25 #include <QGridLayout>
26 #include <QLabel>
27 #include <QListWidget>
28 #include <QObject>
29 #include <QString>
30 #include <QComboBox>
31 #include <QEvent>
32 #include <QAction>
33 #include <QApplication>
34 #include <QClipboard>
35
36 #include <memory>
37 #include <string>
38
39 //#define DEBUG_SHAPE_VALIDATION_PREVIOUS
40
41 ModuleBase_WidgetMultiSelector::ModuleBase_WidgetMultiSelector(QWidget* theParent,
42                                                                ModuleBase_IWorkshop* theWorkshop,
43                                                                const Config_WidgetAPI* theData,
44                                                                const std::string& theParentId)
45     : ModuleBase_WidgetValidated(theParent, theData, theParentId),
46       myWorkshop(theWorkshop)
47 {
48   QGridLayout* aMainLay = new QGridLayout(this);
49   ModuleBase_Tools::adjustMargins(aMainLay);
50
51   QLabel* aTypeLabel = new QLabel(tr("Type"), this);
52   aMainLay->addWidget(aTypeLabel, 0, 0);
53
54   myTypeCombo = new QComboBox(this);
55   // There is no sence to paramerize list of types while we can not parametrize selection mode
56
57   myShapeValidator = new GeomValidators_ShapeType();
58
59   std::string aPropertyTypes = theData->getProperty("type_choice");
60   QString aTypesStr = aPropertyTypes.c_str();
61   QStringList aShapeTypes = aTypesStr.split(' ');
62
63   //myIsUseChoice = theData->getBooleanAttribute("use_choice", true);
64
65   myTypeCombo->addItems(aShapeTypes);
66   aMainLay->addWidget(myTypeCombo, 0, 1);
67   // if the xml definition contains one type, the controls to select a type should not be shown
68   if (aShapeTypes.size() == 1/* || !myIsUseChoice*/) {
69     aTypeLabel->setVisible(false);
70     myTypeCombo->setVisible(false);
71   }
72
73   std::string aLabelText = theData->getProperty("label");
74   QLabel* aListLabel = new QLabel(!aLabelText.empty() ? aLabelText.c_str()
75                                                       : tr("Selected objects:"), this);
76   aMainLay->addWidget(aListLabel, 1, 0);
77   // if the xml definition contains one type, an information label should be shown near to the latest
78   if (aShapeTypes.size() == 1) {
79     QString aLabelText = QString::fromStdString(theData->widgetLabel());
80     QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
81     QLabel* aSelectedLabel = new QLabel(aLabelText, this);
82     if (!aLabelIcon.isEmpty())
83       aSelectedLabel->setPixmap(QPixmap(aLabelIcon));
84     aMainLay->addWidget(aSelectedLabel, 1, 1);
85     aMainLay->setColumnStretch(2, 1);
86   }
87
88   myListControl = new QListWidget(this);
89   aMainLay->addWidget(myListControl, 2, 0, 2, -1);
90   aMainLay->setRowStretch(2, 1);
91   aMainLay->addWidget(new QLabel(this)); //FIXME(sbh)???
92   aMainLay->setRowMinimumHeight(3, 20);
93   this->setLayout(aMainLay);
94   connect(myTypeCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(onSelectionTypeChanged()));
95
96   myCopyAction = new QAction(QIcon(":pictures/copy.png"), tr("Copy"), this);
97   myCopyAction->setShortcut(QKeySequence::Copy);
98   myCopyAction->setEnabled(false);
99   connect(myCopyAction, SIGNAL(triggered(bool)), SLOT(onCopyItem()));
100   myListControl->addAction(myCopyAction);
101   myListControl->setContextMenuPolicy(Qt::ActionsContextMenu);
102   connect(myListControl, SIGNAL(itemSelectionChanged()), SLOT(onListSelection()));
103 }
104
105 ModuleBase_WidgetMultiSelector::~ModuleBase_WidgetMultiSelector()
106 {
107   delete myShapeValidator;
108 }
109
110 //TODO: nds stabilization hotfix
111 void ModuleBase_WidgetMultiSelector::disconnectSignals()
112 {
113   disconnect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
114 }
115
116 //********************************************************************
117 void ModuleBase_WidgetMultiSelector::activateCustom()
118 {
119   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
120   connect(myWorkshop, SIGNAL(selectionChanged()), 
121           this,       SLOT(onSelectionChanged()), 
122           Qt::UniqueConnection);
123
124   activateShapeSelection(true);
125
126   // Restore selection in the viewer by the attribute selection list
127   myWorkshop->setSelected(getAttributeSelection());
128
129   activateFilters(myWorkshop, true);
130 }
131
132 //********************************************************************
133 void ModuleBase_WidgetMultiSelector::deactivate()
134 {
135   disconnect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
136   activateShapeSelection(false);
137   activateFilters(myWorkshop, false);
138 }
139
140 //********************************************************************
141 bool ModuleBase_WidgetMultiSelector::storeValueCustom() const
142 {
143   // the value is stored on the selection changed signal processing 
144   // A rare case when plugin was not loaded. 
145   if(!myFeature)
146     return false;
147   DataPtr aData = myFeature->data();
148   AttributeSelectionListPtr aSelectionListAttr = 
149     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(aData->attribute(attributeID()));
150
151   if (aSelectionListAttr) {
152     // Store shapes type
153      TopAbs_ShapeEnum aCurrentType =
154            ModuleBase_Tools::shapeType(myTypeCombo->currentText());
155      aSelectionListAttr->setSelectionType(myTypeCombo->currentText().toStdString());
156   }   
157    return true;
158 }
159
160 //********************************************************************
161 bool ModuleBase_WidgetMultiSelector::restoreValue()
162 {
163   // A rare case when plugin was not loaded. 
164   if(!myFeature)
165     return false;
166   DataPtr aData = myFeature->data();
167   AttributeSelectionListPtr aSelectionListAttr = 
168     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(aData->attribute(attributeID()));
169
170   if (aSelectionListAttr) {
171     // Restore shape type
172     if (!aSelectionListAttr->selectionType().empty())
173       setCurrentShapeType(ModuleBase_Tools::shapeType(aSelectionListAttr->selectionType().c_str()));
174     updateSelectionList(aSelectionListAttr);
175     return true;
176   }
177   return false;
178 }
179
180 //********************************************************************
181 void ModuleBase_WidgetMultiSelector::storeAttributeValue()
182 {
183   DataPtr aData = myFeature->data();
184   AttributeSelectionListPtr aSelectionListAttr = 
185     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(aData->attribute(attributeID()));
186   if (aSelectionListAttr.get() == NULL)
187     return;
188
189   mySelectionType = aSelectionListAttr->selectionType();
190   mySelection.clear();
191   int aSize = aSelectionListAttr->size();
192   for (int i = 0; i < aSelectionListAttr->size(); i++) {
193     AttributeSelectionPtr aSelectAttr = aSelectionListAttr->value(i);
194     mySelection.append(GeomSelection(aSelectAttr->context(), aSelectAttr->value()));
195   }
196 }
197
198 //********************************************************************
199 void ModuleBase_WidgetMultiSelector::restoreAttributeValue(bool/* theValid*/)
200 {
201   DataPtr aData = myFeature->data();
202   AttributeSelectionListPtr aSelectionListAttr = 
203     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(aData->attribute(attributeID()));
204   if (aSelectionListAttr.get() == NULL)
205     return;
206   aSelectionListAttr->clear();
207
208   // Store shapes type
209   aSelectionListAttr->setSelectionType(mySelectionType);
210
211   // Store selection in the attribute
212   int aSize = mySelection.size();
213   foreach (GeomSelection aSelec, mySelection) {
214     aSelectionListAttr->append(aSelec.first, aSelec.second);
215   }
216 }
217
218 //********************************************************************
219 void ModuleBase_WidgetMultiSelector::customValidators(
220                                         std::list<ModelAPI_Validator*>& theValidators,
221                                         std::list<std::list<std::string> >& theArguments) const
222 {
223   return;
224   std::list<std::string> anArguments;
225
226   theValidators.push_back(myShapeValidator);
227   if (true/*myIsUseChoice*/) {
228     QString aType = myTypeCombo->currentText();
229     anArguments.push_back(validatorType(aType));
230   }
231   else {
232     for(int i = 0, aCount = myTypeCombo->count(); i < aCount; i++) {
233       anArguments.push_back(validatorType(myTypeCombo->itemText(i)));
234     }
235   }
236   theArguments.push_back(anArguments);
237 }
238
239 //********************************************************************
240 bool ModuleBase_WidgetMultiSelector::acceptSubShape(const TopoDS_Shape& theShape) const
241 {
242   bool aValid = true;
243   if (theShape.IsNull()) {
244     aValid = true; // do not check the shape type if the shape is empty
245     // extrusion uses a sketch object selectected in Object browser
246   }
247   else {
248     aValid = false;
249     TopAbs_ShapeEnum aShapeType = theShape.ShapeType();
250     if (myTypeCombo->count() > 1) {
251       TopAbs_ShapeEnum aType = ModuleBase_Tools::shapeType(myTypeCombo->currentText());
252       aValid = aShapeType == aType;
253     }
254     else {
255       for(int i = 0, aCount = myTypeCombo->count(); i < aCount && !aValid; i++) {
256         TopAbs_ShapeEnum aType = ModuleBase_Tools::shapeType(myTypeCombo->itemText(i));
257         aValid = aShapeType == aType;
258       }
259     }
260   }
261   return aValid;
262 }
263
264 //********************************************************************
265 bool ModuleBase_WidgetMultiSelector::setSelection(QList<ModuleBase_ViewerPrs>& theValues)
266 {
267   QList<ModuleBase_ViewerPrs> aSkippedValues;
268
269   QList<ModuleBase_ViewerPrs>::const_iterator anIt = theValues.begin(), aLast = theValues.end();
270   bool isDone = false;
271   for (; anIt != aLast; anIt++) {
272     ModuleBase_ViewerPrs aValue = *anIt;
273     bool aProcessed = false;
274     if (isValidSelection(aValue)) {
275       aProcessed = setSelectionCustom(aValue);
276     }
277     else
278       aSkippedValues.append(aValue);
279     // if there is at least one set, the result is true
280     isDone = isDone || aProcessed;
281   }
282   // updateObject - to update/redisplay feature
283   // it is commented in order to perfom it outside the method
284   //if (isDone) {
285     //updateObject(myFeature);
286     // this emit is necessary to call store/restore method an restore type of selection
287     //emit valuesChanged();
288   //}
289   theValues.clear();
290   if (!aSkippedValues.empty())
291     theValues.append(aSkippedValues);
292
293   return isDone;
294 }
295
296 //********************************************************************
297 bool ModuleBase_WidgetMultiSelector::isValidSelectionCustom(const ModuleBase_ViewerPrs& thePrs)
298 {
299 #ifdef DEBUG_SHAPE_VALIDATION_PREVIOUS
300   return true;
301 #endif
302   GeomShapePtr aShape = myWorkshop->selection()->getShape(thePrs);
303   // if there is no result(the feature is presentable only), result is false
304   ResultPtr aResult = myWorkshop->selection()->getResult(thePrs);
305   bool aValid = aResult.get() != NULL;
306   if (aValid) {
307     // if there is no selected shape, the method returns true
308     if (!aShape.get())
309       aValid = true;
310     else {
311       // Check that the selection corresponds to selection type
312       TopoDS_Shape aTopoShape = aShape->impl<TopoDS_Shape>();
313       aValid = acceptSubShape(aTopoShape);
314     }
315   }
316
317   if (aValid) {
318     if (myFeature) {
319       // We can not select a result of our feature
320       const std::list<ResultPtr>& aResList = myFeature->results();
321       std::list<ResultPtr>::const_iterator aIt;
322       bool isSkipSelf = false;
323       for (aIt = aResList.cbegin(); aIt != aResList.cend(); ++aIt) {
324         if ((*aIt) == aResult) {
325           isSkipSelf = true;
326           break;
327         }
328       }
329       if(isSkipSelf)
330         aValid = false;
331     }
332   }
333
334   return aValid;
335 }
336
337 //********************************************************************
338 bool ModuleBase_WidgetMultiSelector::setSelectionCustom(const ModuleBase_ViewerPrs& thePrs)
339 {
340   //TopoDS_Shape aShape = thePrs.shape();
341   //if (!acceptSubShape(aShape))
342   //  return false;
343
344   ResultPtr aResult = myWorkshop->selection()->getResult(thePrs);
345   /*
346   if (myFeature) {
347     // We can not select a result of our feature
348     const std::list<ResultPtr>& aResList = myFeature->results();
349     std::list<ResultPtr>::const_iterator aIt;
350     bool isSkipSelf = false;
351     for (aIt = aResList.cbegin(); aIt != aResList.cend(); ++aIt) {
352       if ((*aIt) == aResult) {
353         isSkipSelf = true;
354         break;
355       }
356     }
357     if(isSkipSelf)
358       return false;
359   }*/
360
361   // if the result has the similar shap as the parameter shape, just the context is set to the
362   // selection list attribute.
363   DataPtr aData = myFeature->data();
364   AttributeSelectionListPtr aSelectionListAttr = 
365     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(aData->attribute(attributeID()));
366
367   /*const TopoDS_Shape& aTDSShape = thePrs.shape();
368   // if only result is selected, an empty shape is set to the model
369   if (aTDSShape.IsNull()) {
370     aSelectionListAttr->append(aResult, GeomShapePtr());
371   }
372   else {
373     GeomShapePtr aShape(new GeomAPI_Shape());
374     aShape->setImpl(new TopoDS_Shape(aTDSShape));
375     // We can not select a result of our feature
376     if (aShape->isEqual(aResult->shape()))
377       aSelectionListAttr->append(aResult, GeomShapePtr());
378     else
379       aSelectionListAttr->append(aResult, aShape);
380   }*/
381   GeomShapePtr aShape = myWorkshop->selection()->getShape(thePrs);
382   aSelectionListAttr->append(aResult, aShape);
383   
384   return true;
385 }
386
387 //********************************************************************
388 QList<QWidget*> ModuleBase_WidgetMultiSelector::getControls() const
389 {
390   QList<QWidget*> result;
391   //result << myTypeCombo;
392   result << myListControl;
393   return result;
394 }
395
396 //********************************************************************
397 void ModuleBase_WidgetMultiSelector::onSelectionTypeChanged()
398 {
399   activateShapeSelection(true);
400   activateFilters(myWorkshop, true);
401   QList<ModuleBase_ViewerPrs> anEmptyList;
402   // This method will call Selection changed event which will call onSelectionChanged
403   // To clear mySelection, myListControl and storeValue()
404   // So, we don't need to call it
405   myWorkshop->setSelected(anEmptyList);
406 }
407
408 //********************************************************************
409 void ModuleBase_WidgetMultiSelector::onSelectionChanged()
410 {
411   QList<ModuleBase_ViewerPrs> aSelected = myWorkshop->selection()->getSelected(ModuleBase_ISelection::AllControls);
412
413   DataPtr aData = myFeature->data();
414   AttributeSelectionListPtr aSelectionListAttr = 
415     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(aData->attribute(attributeID()));
416   aSelectionListAttr->clear();
417
418   setSelection(aSelected);
419
420   emit valuesChanged();
421   // the updateObject method should be called to flush the updated sigal. The workshop listens it,
422   // calls validators for the feature and, as a result, updates the Apply button state.
423   updateObject(myFeature);
424
425   // Set focus to List control in order to make possible 
426   // to use Tab key for transfer the focus to next widgets
427   myListControl->setCurrentRow(myListControl->model()->rowCount() - 1);
428   myListControl->setFocus();
429 }
430
431 //********************************************************************
432 void ModuleBase_WidgetMultiSelector::setCurrentShapeType(const TopAbs_ShapeEnum theShapeType)
433 {
434   QString aShapeTypeName;
435   
436   for (int idx = 0; idx < myTypeCombo->count(); ++idx) {
437     aShapeTypeName = myTypeCombo->itemText(idx);
438     TopAbs_ShapeEnum aRefType = ModuleBase_Tools::shapeType(aShapeTypeName);
439     if(aRefType == theShapeType && idx != myTypeCombo->currentIndex()) {
440       activateShapeSelection(false);
441       activateFilters(myWorkshop, false);
442       bool isBlocked = myTypeCombo->blockSignals(true);
443       myTypeCombo->setCurrentIndex(idx);
444       myTypeCombo->blockSignals(isBlocked);
445
446       activateShapeSelection(true);
447       activateFilters(myWorkshop, true);
448       break;
449     }
450   }
451 }
452
453 void ModuleBase_WidgetMultiSelector::activateShapeSelection(const bool isActivated)
454 {
455   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
456
457   if (isActivated) {
458     QString aNewType = myTypeCombo->currentText();
459     QIntList aList;
460     if (true /*myIsUseChoice*/) {
461       aList.append(ModuleBase_Tools::shapeType(aNewType));
462     }
463     else {
464       for(int i = 0, aCount = myTypeCombo->count(); i < aCount; i++)
465         aList.append(ModuleBase_Tools::shapeType(myTypeCombo->itemText(i)));
466     }
467     myWorkshop->activateSubShapesSelection(aList);
468   } else {
469     myWorkshop->deactivateSubShapesSelection();
470   }
471 }
472
473 QList<ModuleBase_ViewerPrs> ModuleBase_WidgetMultiSelector::getAttributeSelection() const
474 {
475   QList<ModuleBase_ViewerPrs> aSelected;
476   // Restore selection in the viewer by the attribute selection list
477   if(myFeature) {
478     DataPtr aData = myFeature->data();
479     AttributeSelectionListPtr aListAttr = 
480       std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(aData->attribute(attributeID()));
481     if (aListAttr) {
482       for (int i = 0; i < aListAttr->size(); i++) {
483         AttributeSelectionPtr anAttr = aListAttr->value(i);
484         ResultPtr anObject = anAttr->context();
485         if (anObject.get()) {
486           TopoDS_Shape aShape;
487           std::shared_ptr<GeomAPI_Shape> aShapePtr = anAttr->value();
488           if (aShapePtr.get()) {
489             aShape = aShapePtr->impl<TopoDS_Shape>();
490           }
491           aSelected.append(ModuleBase_ViewerPrs(anObject, aShape, NULL));
492         }
493       }
494     }
495   }
496   return aSelected;
497 }
498
499 //********************************************************************
500 void ModuleBase_WidgetMultiSelector::updateSelectionList(AttributeSelectionListPtr theList)
501 {
502   myListControl->clear();
503   for (int i = 0; i < theList->size(); i++) {
504     AttributeSelectionPtr aAttr = theList->value(i);
505     myListControl->addItem(aAttr->namingName().c_str());
506   }
507   // We have to call repaint because sometimes the List control is not updated
508   myListControl->repaint();
509 }
510
511 //********************************************************************
512 std::string ModuleBase_WidgetMultiSelector::validatorType(const QString& theType) const
513 {
514   std::string aType;
515
516   if (theType == "Vertices")
517     aType = "vertex";
518   else if (theType == "Edges")
519     aType = "edge";
520   else if (theType == "Faces")
521     aType = "face";
522   else if (theType == "Solids")
523     aType = "solid";
524
525   return aType;
526 }
527
528 //********************************************************************
529 void ModuleBase_WidgetMultiSelector::onCopyItem()
530 {
531   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
532   QString aRes;
533   foreach(QListWidgetItem* aItem, aItems) {
534     if (!aRes.isEmpty())
535       aRes += "\n";
536     aRes += aItem->text();
537   }
538   if (!aRes.isEmpty()) {
539     QClipboard *clipboard = QApplication::clipboard();
540     clipboard->setText(aRes);
541   }
542 }
543
544 //********************************************************************
545 void ModuleBase_WidgetMultiSelector::onListSelection()
546 {
547   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
548   myCopyAction->setEnabled(!aItems.isEmpty());
549 }
550