Salome HOME
378aa4a6229ed16f18e9578249bc27b21abc568b
[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 #include <ModuleBase_IModule.h>
18 #include <ModuleBase_ViewerPrs.h>
19 #include <ModuleBase_IconFactory.h>
20 #include <ModuleBase_Events.h>
21
22 #include <ModelAPI_Data.h>
23 #include <ModelAPI_Object.h>
24 #include <ModelAPI_AttributeSelectionList.h>
25 #include <ModelAPI_AttributeRefList.h>
26 #include <ModelAPI_AttributeRefAttrList.h>
27 #include <ModelAPI_Tools.h>
28 #include <ModelAPI_Events.h>
29
30 #include <Config_WidgetAPI.h>
31
32 #include <QGridLayout>
33 #include <QLabel>
34 #include <QListWidget>
35 #include <QObject>
36 #include <QString>
37 #include <QComboBox>
38 #include <QEvent>
39 #include <QAction>
40 #include <QApplication>
41 #include <QClipboard>
42 #include <QTimer>
43 #include <QMainWindow>
44
45 #include <memory>
46 #include <string>
47
48 const int ATTRIBUTE_SELECTION_INDEX_ROLE = Qt::UserRole + 1;
49
50 /**
51 * Customization of a List Widget to make it to be placed on full width of container
52 */
53 class CustomListWidget : public QListWidget
54 {
55 public:
56   /// Constructor
57   /// \param theParent a parent widget
58   CustomListWidget( QWidget* theParent )
59     : QListWidget( theParent )
60   {
61   }
62
63   /// Redefinition of virtual method
64   virtual QSize sizeHint() const
65   {
66     int aHeight = 2*QFontMetrics( font() ).height();
67     QSize aSize = QListWidget::sizeHint();
68     return QSize( aSize.width(), aHeight );
69   }
70
71   /// Redefinition of virtual method
72   virtual QSize minimumSizeHint() const
73   {
74     int aHeight = 4/*2*/*QFontMetrics( font() ).height();
75     QSize aSize = QListWidget::minimumSizeHint();
76     return QSize( aSize.width(), aHeight );
77   }
78
79 #ifndef WIN32
80 // The code is necessary only for Linux because
81 //it can not update viewport on widget resize
82 protected:
83   void resizeEvent(QResizeEvent* theEvent)
84   {
85     QListWidget::resizeEvent(theEvent);
86     QTimer::singleShot(5, viewport(), SLOT(repaint()));
87   }
88 #endif
89 };
90
91 ModuleBase_WidgetMultiSelector::ModuleBase_WidgetMultiSelector(QWidget* theParent,
92                                                                ModuleBase_IWorkshop* theWorkshop,
93                                                                const Config_WidgetAPI* theData)
94 : ModuleBase_WidgetSelector(theParent, theWorkshop, theData)
95 {
96   QGridLayout* aMainLay = new QGridLayout(this);
97   ModuleBase_Tools::adjustMargins(aMainLay);
98
99   QLabel* aTypeLabel = new QLabel(tr("Type"), this);
100   aMainLay->addWidget(aTypeLabel, 0, 0);
101
102   myTypeCombo = new QComboBox(this);
103   // There is no sense to parameterize list of types while we can not parameterize selection mode
104
105   std::string aPropertyTypes = theData->getProperty("type_choice");
106   QString aTypesStr = aPropertyTypes.c_str();
107   QStringList aShapeTypes = aTypesStr.split(' ', QString::SkipEmptyParts);
108
109   myIsUseChoice = theData->getBooleanAttribute("use_choice", false);
110
111   if (!aShapeTypes.empty())
112     myTypeCombo->addItems(aShapeTypes);
113   aMainLay->addWidget(myTypeCombo, 0, 1);
114   // if the xml definition contains one type, the controls to select a type should not be shown
115   if (aShapeTypes.size() <= 1 || !myIsUseChoice) {
116     aTypeLabel->setVisible(false);
117     myTypeCombo->setVisible(false);
118   }
119
120   std::string aLabelText = theData->getProperty("label");
121   QLabel* aListLabel = new QLabel(!aLabelText.empty() ? aLabelText.c_str()
122                                                       : tr("Selected objects:"), this);
123   aMainLay->addWidget(aListLabel, 1, 0);
124   // if the xml definition contains one type, an information label should be shown near to the latest
125   if (aShapeTypes.size() <= 1) {
126     QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
127     if (!aLabelIcon.isEmpty()) {
128       QLabel* aSelectedLabel = new QLabel("", this);
129       aSelectedLabel->setPixmap(ModuleBase_IconFactory::loadPixmap(aLabelIcon));
130       aMainLay->addWidget(aSelectedLabel, 1, 1);
131     }
132     aMainLay->setColumnStretch(2, 1);
133   }
134
135   QString aToolTip = QString::fromStdString(theData->widgetTooltip());
136   myListControl = new CustomListWidget(this);
137   QString anObjName = QString::fromStdString(attributeID());
138   myListControl->setObjectName(anObjName);
139   myListControl->setToolTip(aToolTip);
140   myListControl->setSelectionMode(QAbstractItemView::ExtendedSelection);
141
142   aMainLay->addWidget(myListControl, 2, 0, 1, -1);
143   aMainLay->setRowStretch(2, 1);
144   //aMainLay->addWidget(new QLabel(this)); //FIXME(sbh)???
145   //aMainLay->setRowMinimumHeight(3, 20);
146   //this->setLayout(aMainLay);
147   connect(myTypeCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(onSelectionTypeChanged()));
148
149   myCopyAction = ModuleBase_Tools::createAction(QIcon(":pictures/copy.png"), tr("Copy"),
150                           myWorkshop->desktop(), this, SLOT(onCopyItem()));
151   myCopyAction->setShortcut(QKeySequence::Copy);
152   myCopyAction->setEnabled(false);
153   myListControl->addAction(myCopyAction);
154
155   myDeleteAction = ModuleBase_Tools::createAction(QIcon(":pictures/delete.png"), tr("Delete"),
156                           myWorkshop->desktop(), this, SLOT(onDeleteItem()));
157   myDeleteAction->setEnabled(false);
158   myListControl->addAction(myDeleteAction);
159
160   myListControl->setContextMenuPolicy(Qt::ActionsContextMenu);
161   connect(myListControl, SIGNAL(itemSelectionChanged()), SLOT(onListSelection()));
162
163   myIsNeutralPointClear = theData->getBooleanAttribute("clear_in_neutral_point", true);
164 }
165
166 ModuleBase_WidgetMultiSelector::~ModuleBase_WidgetMultiSelector()
167 {
168 }
169
170 //********************************************************************
171 void ModuleBase_WidgetMultiSelector::activateCustom()
172 {
173   ModuleBase_WidgetSelector::activateCustom();
174
175   myWorkshop->module()->activateCustomPrs(myFeature,
176                             ModuleBase_IModule::CustomizeHighlightedObjects, true);
177 }
178
179 //********************************************************************
180 void ModuleBase_WidgetMultiSelector::deactivate()
181 {
182   ModuleBase_WidgetSelector::deactivate();
183
184   myWorkshop->module()->deactivateCustomPrs(ModuleBase_IModule::CustomizeHighlightedObjects, true);
185 }
186
187 //********************************************************************
188 bool ModuleBase_WidgetMultiSelector::storeValueCustom()
189 {
190   // the value is stored on the selection changed signal processing 
191   // A rare case when plugin was not loaded. 
192   if (!myFeature)
193     return false;
194
195   AttributePtr anAttribute = myFeature->data()->attribute(attributeID());
196   std::string aType = anAttribute->attributeType();
197   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
198     AttributeSelectionListPtr aSelectionListAttr = myFeature->data()->selectionList(attributeID());
199     aSelectionListAttr->setSelectionType(myTypeCombo->currentText().toStdString());
200   }
201   return true;
202 }
203
204 //********************************************************************
205 bool ModuleBase_WidgetMultiSelector::restoreValueCustom()
206 {
207   // A rare case when plugin was not loaded. 
208   if (!myFeature)
209     return false;
210
211   AttributePtr anAttribute = myFeature->data()->attribute(attributeID());
212   std::string aType = anAttribute->attributeType();
213   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
214     AttributeSelectionListPtr aSelectionListAttr = myFeature->data()->selectionList(attributeID());
215     // Restore shape type
216     std::string aSelectionType = aSelectionListAttr->selectionType().c_str();
217     if (!aSelectionType.empty())
218       setCurrentShapeType(ModuleBase_Tools::shapeType(aSelectionType.c_str()));
219   }
220   updateSelectionList();
221   return true;
222 }
223
224 //********************************************************************
225 bool ModuleBase_WidgetMultiSelector::setSelection(QList<ModuleBase_ViewerPrsPtr>& theValues,
226                                                   const bool theToValidate)
227 {
228   AttributeSelectionListPtr aSelectionListAttr;
229   if (attribute()->attributeType() == ModelAPI_AttributeSelectionList::typeId())
230     aSelectionListAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(attribute());
231   if (aSelectionListAttr.get())
232     aSelectionListAttr->cashValues(true);
233
234   /// remove unused objects from the model attribute.
235   /// It should be performed before new attributes append.
236   bool isDone = removeUnusedAttributeObjects(theValues);
237
238   QList<ModuleBase_ViewerPrsPtr> anInvalidValues;
239   QList<ModuleBase_ViewerPrsPtr> anAttributeValues;
240   QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = theValues.begin(), aLast = theValues.end();
241   for (; anIt != aLast; anIt++) {
242     ModuleBase_ViewerPrsPtr aValue = *anIt;
243     // do not validate and append to attribute selection presentation if it exists in the attribute
244     ObjectPtr anObject;
245     GeomShapePtr aShape;
246     getGeomSelection(aValue, anObject, aShape);
247     if (ModuleBase_Tools::hasObject(attribute(), anObject, aShape, myWorkshop, myIsInValidate)) {
248       anAttributeValues.append(aValue);
249       continue;
250     }
251     if (theToValidate && !isValidInFilters(aValue))
252       anInvalidValues.append(aValue);
253   }
254   bool aHasInvalidValues = anInvalidValues.size() > 0;
255
256   for (anIt = theValues.begin(); anIt != aLast; anIt++) {
257     ModuleBase_ViewerPrsPtr aValue = *anIt;
258     bool aProcessed = false;
259     if ((aHasInvalidValues && anInvalidValues.contains(aValue)) ||
260         anAttributeValues.contains(aValue))
261       continue;
262     aProcessed = setSelectionCustom(aValue); /// it is not optimal as hasObject() is already checked
263     // if there is at least one set, the result is true
264     isDone = isDone || aProcessed;
265   }
266   // updateObject - to update/redisplay feature
267   // it is commented in order to perfom it outside the method
268   //if (isDone) {
269     //updateObject(myFeature);
270     // this emit is necessary to call store/restore method an restore type of selection
271     //emit valuesChanged();
272   //}
273
274   if (aSelectionListAttr.get())
275     aSelectionListAttr->cashValues(false);
276
277   theValues.clear();
278   if (!anInvalidValues.empty())
279     theValues.append(anInvalidValues);
280
281   if (isDone) // may be the feature's result is not displayed, but attributes should be
282     myWorkshop->module()->customizeObject(myFeature, ModuleBase_IModule::CustomizeArguments,
283                                           true);/// hope that something is redisplayed by object updated
284
285   return isDone;
286 }
287
288 //********************************************************************
289 void ModuleBase_WidgetMultiSelector::getHighlighted(QList<ModuleBase_ViewerPrsPtr>& theValues)
290 {
291   std::set<int> anAttributeIds;
292   getSelectedAttributeIndices(anAttributeIds);
293   if (!anAttributeIds.empty())
294     convertIndicesToViewerSelection(anAttributeIds, theValues);
295 }
296
297 //********************************************************************
298 bool ModuleBase_WidgetMultiSelector::isValidSelectionCustom(const ModuleBase_ViewerPrsPtr& thePrs)
299 {
300   bool aValid = ModuleBase_WidgetSelector::isValidSelectionCustom(thePrs);
301   if (aValid) {
302     ResultPtr aResult = myWorkshop->selection()->getResult(thePrs);
303     aValid = aResult.get() != NULL;
304     if (aValid) {
305       if (myFeature) {
306         // We can not select a result of our feature
307         std::list<ResultPtr> aResults;
308         ModelAPI_Tools::allResults(myFeature, aResults);
309         std::list<ResultPtr>::const_iterator aIt;
310         bool isSkipSelf = false;
311         for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
312           if ((*aIt) == aResult) {
313             isSkipSelf = true;
314             break;
315           }
316         }
317         if (isSkipSelf)
318           aValid = false;
319       }
320     }
321   }
322   return aValid;
323 }
324
325 //********************************************************************
326 bool ModuleBase_WidgetMultiSelector::processDelete()
327 {
328   // find attribute indices to delete
329   std::set<int> anAttributeIds;
330   getSelectedAttributeIndices(anAttributeIds);
331
332   QModelIndexList aIndexes = myListControl->selectionModel()->selectedIndexes();
333
334   // refill attribute by the items which indices are not in the list of ids
335   bool aDone = false;
336   DataPtr aData = myFeature->data();
337   AttributePtr anAttribute = aData->attribute(attributeID());
338   std::string aType = anAttribute->attributeType();
339   aDone = !anAttributeIds.empty();
340   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
341     AttributeSelectionListPtr aSelectionListAttr = aData->selectionList(attributeID());
342     aSelectionListAttr->remove(anAttributeIds);
343
344   }
345   else if (aType == ModelAPI_AttributeRefList::typeId()) {
346     AttributeRefListPtr aRefListAttr = aData->reflist(attributeID());
347     aRefListAttr->remove(anAttributeIds);
348   }
349   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
350     AttributeRefAttrListPtr aRefAttrListAttr = aData->refattrlist(attributeID());
351     aRefAttrListAttr->remove(anAttributeIds);
352   }
353
354   if (aDone) {
355     // update object is necessary to flush update signal. It leads to objects references map update
356     // and the operation presentation will not contain deleted items visualized as parameters of
357     // the feature.
358     updateObject(myFeature);
359
360     restoreValue();
361     myWorkshop->setSelected(getAttributeSelection());
362
363     // may be the feature's result is not displayed, but attributes should be
364     myWorkshop->module()->customizeObject(myFeature, ModuleBase_IModule::CustomizeArguments,
365                                           true); /// hope that something is redisplayed by object updated
366   }
367
368   // Restore selection
369   int aRows = myListControl->model()->rowCount();
370   if (aRows > 0) {
371     foreach(QModelIndex aIndex, aIndexes) {
372       if (aIndex.row() < aRows)
373         myListControl->selectionModel()->select(aIndex, QItemSelectionModel::Select);
374       else {
375         QModelIndex aIdx = myListControl->model()->index(aRows - 1, 0);
376         myListControl->selectionModel()->select(aIdx, QItemSelectionModel::Select);
377       }
378     }
379   }
380   return aDone;
381 }
382
383 //********************************************************************
384 QList<QWidget*> ModuleBase_WidgetMultiSelector::getControls() const
385 {
386   QList<QWidget*> result;
387   //result << myTypeCombo;
388   result << myListControl;
389   return result;
390 }
391
392 //********************************************************************
393 void ModuleBase_WidgetMultiSelector::onSelectionTypeChanged()
394 {
395   activateSelectionAndFilters(true);
396   QList<ModuleBase_ViewerPrsPtr> anEmptyList;
397   // This method will call Selection changed event which will call onSelectionChanged
398   // To clear mySelection, myListControl and storeValue()
399   // So, we don't need to call it
400   myWorkshop->setSelected(anEmptyList);
401 }
402
403 //********************************************************************
404 void ModuleBase_WidgetMultiSelector::onSelectionChanged()
405 {
406   if (!myIsNeutralPointClear) {
407     QList<ModuleBase_ViewerPrsPtr> aSelected = getFilteredSelected();
408     // do not clear selected object
409     if (aSelected.size() == 0) {
410       if (!getAttributeSelection().empty()) {
411         // Restore selection in the viewer by the attribute selection list
412         // it should be postponed to exit from the selectionChanged processing
413         static Events_ID anEvent = Events_Loop::eventByName(EVENT_UPDATE_BY_WIDGET_SELECTION);
414         ModelAPI_EventCreator::get()->sendUpdated(myFeature, anEvent);
415       }
416     }
417   }
418   ModuleBase_WidgetSelector::onSelectionChanged();
419 }
420
421 void ModuleBase_WidgetMultiSelector::updateFocus()
422 {
423   // Set focus to List control in order to make possible 
424   // to use Tab key for transfer the focus to next widgets
425   myListControl->setCurrentRow(myListControl->model()->rowCount() - 1);
426   ModuleBase_Tools::setFocus(myListControl,
427                              "ModuleBase_WidgetMultiSelector::onSelectionTypeChanged()");
428 }
429
430 //********************************************************************
431 void ModuleBase_WidgetMultiSelector::updateSelectionName()
432 {
433 }
434
435 //********************************************************************
436 QIntList ModuleBase_WidgetMultiSelector::shapeTypes() const
437 {
438   QIntList aShapeTypes;
439
440   if (myTypeCombo->count() > 1 && myIsUseChoice) {
441     aShapeTypes.append(ModuleBase_Tools::shapeType(myTypeCombo->currentText()));
442   }
443   else {
444     for (int i = 0, aCount = myTypeCombo->count(); i < aCount; i++)
445       aShapeTypes.append(ModuleBase_Tools::shapeType(myTypeCombo->itemText(i)));
446   }
447   return aShapeTypes;
448 }
449
450 //********************************************************************
451 void ModuleBase_WidgetMultiSelector::setCurrentShapeType(const TopAbs_ShapeEnum theShapeType)
452 {
453   QString aShapeTypeName;
454   
455   for (int idx = 0; idx < myTypeCombo->count(); ++idx) {
456     aShapeTypeName = myTypeCombo->itemText(idx);
457     TopAbs_ShapeEnum aRefType = ModuleBase_Tools::shapeType(aShapeTypeName);
458     if(aRefType == theShapeType && idx != myTypeCombo->currentIndex()) {
459       bool aWasActivated = activateSelectionAndFilters(false);
460       bool isBlocked = myTypeCombo->blockSignals(true);
461       myTypeCombo->setCurrentIndex(idx);
462       myTypeCombo->blockSignals(isBlocked);
463       if (aWasActivated)
464         activateSelectionAndFilters(true);
465       break;
466     }
467   }
468 }
469
470 QList<ModuleBase_ViewerPrsPtr> ModuleBase_WidgetMultiSelector::getAttributeSelection() const
471 {
472   QList<ModuleBase_ViewerPrsPtr> aSelected;
473   convertIndicesToViewerSelection(std::set<int>(), aSelected);
474   return aSelected;
475 }
476
477 //********************************************************************
478 void ModuleBase_WidgetMultiSelector::updateSelectionList()
479 {
480   myListControl->clear();
481
482   DataPtr aData = myFeature->data();
483   AttributePtr anAttribute = aData->attribute(attributeID());
484   std::string aType = anAttribute->attributeType();
485   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
486     AttributeSelectionListPtr aSelectionListAttr = aData->selectionList(attributeID());
487     for (int i = 0; i < aSelectionListAttr->size(); i++) {
488       AttributeSelectionPtr aAttr = aSelectionListAttr->value(i);
489       QListWidgetItem* anItem = new QListWidgetItem(aAttr->namingName().c_str(), myListControl);
490       anItem->setData(ATTRIBUTE_SELECTION_INDEX_ROLE, i);
491       myListControl->addItem(anItem);
492     }
493   }
494   else if (aType == ModelAPI_AttributeRefList::typeId()) {
495     AttributeRefListPtr aRefListAttr = aData->reflist(attributeID());
496     for (int i = 0; i < aRefListAttr->size(); i++) {
497       ObjectPtr anObject = aRefListAttr->object(i);
498       if (anObject.get()) {
499         QListWidgetItem* anItem = new QListWidgetItem(anObject->data()->name().c_str(),
500                                                       myListControl);
501         anItem->setData(ATTRIBUTE_SELECTION_INDEX_ROLE, i);
502         myListControl->addItem(anItem);
503       }
504     }
505   }
506   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
507     AttributeRefAttrListPtr aRefAttrListAttr = aData->refattrlist(attributeID());
508     for (int i = 0; i < aRefAttrListAttr->size(); i++) {
509       AttributePtr anAttribute = aRefAttrListAttr->attribute(i);
510       QString aName;
511       if (anAttribute.get()) {
512         std::string anAttrName = generateName(anAttribute, myWorkshop);
513         aName = QString::fromStdString(anAttrName);
514       }
515       else {
516         ObjectPtr anObject = aRefAttrListAttr->object(i);
517         if (anObject.get()) {
518           aName = anObject->data()->name().c_str();
519         }
520       }
521       QListWidgetItem* anItem = new QListWidgetItem(aName, myListControl);
522       anItem->setData(ATTRIBUTE_SELECTION_INDEX_ROLE, i);
523       myListControl->addItem(anItem);
524     }
525   }
526
527   // We have to call repaint because sometimes the List control is not updated
528   myListControl->repaint();
529 }
530
531 //********************************************************************
532 std::string ModuleBase_WidgetMultiSelector::validatorType(const QString& theType) const
533 {
534   std::string aType;
535
536   if (theType == "Vertices")
537     aType = "vertex";
538   else if (theType == "Edges")
539     aType = "edge";
540   else if (theType == "Faces")
541     aType = "face";
542   else if (theType == "Solids")
543     aType = "solid";
544
545   return aType;
546 }
547
548 //********************************************************************
549 void ModuleBase_WidgetMultiSelector::onCopyItem()
550 {
551   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
552   QString aRes;
553   foreach(QListWidgetItem* aItem, aItems) {
554     if (!aRes.isEmpty())
555       aRes += "\n";
556     aRes += aItem->text();
557   }
558   if (!aRes.isEmpty()) {
559     QClipboard *clipboard = QApplication::clipboard();
560     clipboard->setText(aRes);
561   }
562 }
563
564 //********************************************************************
565 void ModuleBase_WidgetMultiSelector::onDeleteItem()
566 {
567   processDelete();
568 }
569
570 //********************************************************************
571 void ModuleBase_WidgetMultiSelector::onListSelection()
572 {
573   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
574   myCopyAction->setEnabled(!aItems.isEmpty());
575   myDeleteAction->setEnabled(!aItems.isEmpty());
576   
577   myWorkshop->module()->customizeObject(myFeature, ModuleBase_IModule::CustomizeHighlightedObjects,
578                                         true);
579 }
580
581 //********************************************************************
582 void ModuleBase_WidgetMultiSelector::getSelectedAttributeIndices(std::set<int>& theAttributeIds)
583 {
584   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
585   foreach(QListWidgetItem* anItem, aItems) {
586     int anIndex = anItem->data(ATTRIBUTE_SELECTION_INDEX_ROLE).toInt();
587     if (theAttributeIds.find(anIndex) == theAttributeIds.end())
588       theAttributeIds.insert(anIndex);
589   }
590 }
591
592 void ModuleBase_WidgetMultiSelector::convertIndicesToViewerSelection(std::set<int> theAttributeIds,
593                                                       QList<ModuleBase_ViewerPrsPtr>& theValues) const
594 {
595   if(myFeature.get() == NULL)
596     return;
597
598   DataPtr aData = myFeature->data();
599   AttributePtr anAttribute = aData->attribute(attributeID());
600   std::string aType = anAttribute->attributeType();
601   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
602     AttributeSelectionListPtr aSelectionListAttr = aData->selectionList(attributeID());
603     for (int i = 0; i < aSelectionListAttr->size(); i++) {
604       // filter by attribute indices only if the container is not empty otherwise return all items
605       if (!theAttributeIds.empty() && theAttributeIds.find(i) == theAttributeIds.end())
606         continue;
607       AttributeSelectionPtr anAttr = aSelectionListAttr->value(i);
608       ResultPtr anObject = anAttr->context();
609       if (anObject.get())
610         theValues.append(std::shared_ptr<ModuleBase_ViewerPrs>(
611                new ModuleBase_ViewerPrs(anObject, anAttr->value(), NULL)));
612     }
613   }
614   else if (aType == ModelAPI_AttributeRefList::typeId()) {
615     AttributeRefListPtr aRefListAttr = aData->reflist(attributeID());
616     for (int i = 0; i < aRefListAttr->size(); i++) {
617       // filter by attribute indices only if the container is not empty otherwise return all items
618       if (!theAttributeIds.empty() && theAttributeIds.find(i) == theAttributeIds.end())
619         continue;
620       ObjectPtr anObject = aRefListAttr->object(i);
621       if (anObject.get()) {
622         theValues.append(std::shared_ptr<ModuleBase_ViewerPrs>(
623                new ModuleBase_ViewerPrs(anObject, GeomShapePtr(), NULL)));
624       }
625     }
626   }
627   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
628     AttributeRefAttrListPtr aRefAttrListAttr = aData->refattrlist(attributeID());
629     for (int i = 0; i < aRefAttrListAttr->size(); i++) {
630       // filter by attribute indices only if the container is not empty otherwise return all items
631       if (!theAttributeIds.empty() && theAttributeIds.find(i) == theAttributeIds.end())
632         continue;
633       ObjectPtr anObject = aRefAttrListAttr->object(i);
634       if (!anObject.get())
635         continue;
636       TopoDS_Shape aShape;
637       AttributePtr anAttribute = aRefAttrListAttr->attribute(i);
638       if (anAttribute.get()) {
639         GeomShapePtr aGeomShape = ModuleBase_Tools::getShape(anAttribute, myWorkshop);
640         theValues.append(std::shared_ptr<ModuleBase_ViewerPrs>(
641                new ModuleBase_ViewerPrs(anObject, aGeomShape, NULL)));
642       }
643     }
644   }
645 }
646
647 bool ModuleBase_WidgetMultiSelector::removeUnusedAttributeObjects
648                                                  (QList<ModuleBase_ViewerPrsPtr>& theValues)
649 {
650   bool isDone = false;
651
652   std::map<ObjectPtr, std::set<GeomShapePtr> > aGeomSelection = convertSelection(theValues);
653   DataPtr aData = myFeature->data();
654   AttributePtr anAttribute = aData->attribute(attributeID());
655   std::string aType = anAttribute->attributeType();
656   std::set<GeomShapePtr> aShapes;
657   std::set<int> anIndicesToBeRemoved;
658   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
659     // iteration through data model to find not selected elements to remove them
660     AttributeSelectionListPtr aSelectionListAttr = aData->selectionList(attributeID());
661     for (int i = 0; i < aSelectionListAttr->size(); i++) {
662       AttributeSelectionPtr anAttr = aSelectionListAttr->value(i);
663       bool aFound = findInSelection(anAttr->context(), anAttr->value(), aGeomSelection);
664       if (!aFound)
665         anIndicesToBeRemoved.insert(i);
666     }
667     isDone = anIndicesToBeRemoved.size() > 0;
668     aSelectionListAttr->remove(anIndicesToBeRemoved);
669   }
670   else if (aType == ModelAPI_AttributeRefList::typeId()) {
671     AttributeRefListPtr aRefListAttr = aData->reflist(attributeID());
672     for (int i = 0; i < aRefListAttr->size(); i++) {
673       ObjectPtr anObject = aRefListAttr->object(i);
674       if (anObject.get()) {
675         bool aFound = findInSelection(anObject, GeomShapePtr(), aGeomSelection);
676         if (!aFound)
677           anIndicesToBeRemoved.insert(i);
678       }
679     }
680     isDone = anIndicesToBeRemoved.size() > 0;
681     aRefListAttr->remove(anIndicesToBeRemoved);
682   }
683   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
684     std::set<AttributePtr> anAttributes;
685     QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = theValues.begin(), aLast = theValues.end();
686     ObjectPtr anObject;
687     GeomShapePtr aShape;
688     for (; anIt != aLast; anIt++) {
689       ModuleBase_ViewerPrsPtr aPrs = *anIt;
690       getGeomSelection(aPrs, anObject, aShape);
691       AttributePtr anAttr = myWorkshop->module()->findAttribute(anObject, aShape);
692       if (anAttr.get() && anAttributes.find(anAttr) == anAttributes.end())
693         anAttributes.insert(anAttr);
694     }
695
696     AttributeRefAttrListPtr aRefAttrListAttr = aData->refattrlist(attributeID());
697     for (int i = 0; i < aRefAttrListAttr->size(); i++) {
698       bool aFound = false;
699       if (aRefAttrListAttr->isAttribute(i)) {
700         AttributePtr anAttribute = aRefAttrListAttr->attribute(i);
701         aFound = anAttributes.find(anAttribute) != anAttributes.end();
702       }
703       else {
704         aFound = findInSelection(aRefAttrListAttr->object(i), GeomShapePtr(), aGeomSelection);
705       }
706       if (!aFound)
707         anIndicesToBeRemoved.insert(i);
708     }
709     isDone = anIndicesToBeRemoved.size() > 0;
710     aRefAttrListAttr->remove(anIndicesToBeRemoved);
711   }
712
713   return isDone;
714 }
715
716 std::map<ObjectPtr, std::set<GeomShapePtr> > ModuleBase_WidgetMultiSelector::convertSelection
717                                                      (QList<ModuleBase_ViewerPrsPtr>& theValues)
718 {
719   // convert prs list to objects map
720   std::map<ObjectPtr, std::set<GeomShapePtr> > aGeomSelection;
721   std::set<GeomShapePtr> aShapes;
722   QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = theValues.begin(), aLast = theValues.end();
723   ObjectPtr anObject;
724   GeomShapePtr aShape;
725   GeomShapePtr anEmptyShape(new GeomAPI_Shape());
726   for (; anIt != aLast; anIt++) {
727     ModuleBase_ViewerPrsPtr aPrs = *anIt;
728     getGeomSelection(aPrs, anObject, aShape);
729     aShapes.clear();
730     if (aGeomSelection.find(anObject) != aGeomSelection.end()) // found
731       aShapes = aGeomSelection[anObject];
732     // we need to know if there was an empty shape in selection for the object
733     if (!aShape.get())
734       aShape = anEmptyShape;
735     if (aShape.get() && aShapes.find(aShape) == aShapes.end()) // not found
736       aShapes.insert(aShape);
737     aGeomSelection[anObject] = aShapes;
738   }
739   return aGeomSelection;
740 }
741
742 bool ModuleBase_WidgetMultiSelector::findInSelection(const ObjectPtr& theObject,
743                               const GeomShapePtr& theShape,
744                               const std::map<ObjectPtr, std::set<GeomShapePtr> >& theGeomSelection)
745 {
746   bool aFound = false;
747   GeomShapePtr anEmptyShape(new GeomAPI_Shape());
748   GeomShapePtr aShape = theShape.get() ? theShape : anEmptyShape;
749   if (theGeomSelection.find(theObject) != theGeomSelection.end()) {// found
750     const std::set<GeomShapePtr>& aShapes = theGeomSelection.at(theObject);
751     std::set<GeomShapePtr>::const_iterator anIt = aShapes.begin(), aLast = aShapes.end();
752     for (; anIt != aLast && !aFound; anIt++) {
753       GeomShapePtr aCShape = *anIt;
754       if (aCShape.get())
755         aFound = aCShape->isEqual(aShape);
756     }
757   }
758   return aFound;
759 }