]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_WidgetMultiSelector.cpp
Salome HOME
Do not clear in neutral point correction.
[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         return;
416       }
417     }
418   }
419   ModuleBase_WidgetSelector::onSelectionChanged();
420 }
421
422 void ModuleBase_WidgetMultiSelector::updateFocus()
423 {
424   // Set focus to List control in order to make possible 
425   // to use Tab key for transfer the focus to next widgets
426   myListControl->setCurrentRow(myListControl->model()->rowCount() - 1);
427   ModuleBase_Tools::setFocus(myListControl,
428                              "ModuleBase_WidgetMultiSelector::onSelectionTypeChanged()");
429 }
430
431 //********************************************************************
432 void ModuleBase_WidgetMultiSelector::updateSelectionName()
433 {
434 }
435
436 //********************************************************************
437 QIntList ModuleBase_WidgetMultiSelector::shapeTypes() const
438 {
439   QIntList aShapeTypes;
440
441   if (myTypeCombo->count() > 1 && myIsUseChoice) {
442     aShapeTypes.append(ModuleBase_Tools::shapeType(myTypeCombo->currentText()));
443   }
444   else {
445     for (int i = 0, aCount = myTypeCombo->count(); i < aCount; i++)
446       aShapeTypes.append(ModuleBase_Tools::shapeType(myTypeCombo->itemText(i)));
447   }
448   return aShapeTypes;
449 }
450
451 //********************************************************************
452 void ModuleBase_WidgetMultiSelector::setCurrentShapeType(const int theShapeType)
453 {
454   QString aShapeTypeName;
455   
456   for (int idx = 0; idx < myTypeCombo->count(); ++idx) {
457     aShapeTypeName = myTypeCombo->itemText(idx);
458     int aRefType = ModuleBase_Tools::shapeType(aShapeTypeName);
459     if(aRefType == theShapeType && idx != myTypeCombo->currentIndex()) {
460       bool aWasActivated = activateSelectionAndFilters(false);
461       bool isBlocked = myTypeCombo->blockSignals(true);
462       myTypeCombo->setCurrentIndex(idx);
463       myTypeCombo->blockSignals(isBlocked);
464       if (aWasActivated)
465         activateSelectionAndFilters(true);
466       break;
467     }
468   }
469 }
470
471 QList<ModuleBase_ViewerPrsPtr> ModuleBase_WidgetMultiSelector::getAttributeSelection() const
472 {
473   QList<ModuleBase_ViewerPrsPtr> aSelected;
474   convertIndicesToViewerSelection(std::set<int>(), aSelected);
475   return aSelected;
476 }
477
478 //********************************************************************
479 void ModuleBase_WidgetMultiSelector::updateSelectionList()
480 {
481   myListControl->clear();
482
483   DataPtr aData = myFeature->data();
484   AttributePtr anAttribute = aData->attribute(attributeID());
485   std::string aType = anAttribute->attributeType();
486   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
487     AttributeSelectionListPtr aSelectionListAttr = aData->selectionList(attributeID());
488     for (int i = 0; i < aSelectionListAttr->size(); i++) {
489       AttributeSelectionPtr aAttr = aSelectionListAttr->value(i);
490       QListWidgetItem* anItem = new QListWidgetItem(aAttr->namingName().c_str(), myListControl);
491       anItem->setData(ATTRIBUTE_SELECTION_INDEX_ROLE, i);
492       myListControl->addItem(anItem);
493     }
494   }
495   else if (aType == ModelAPI_AttributeRefList::typeId()) {
496     AttributeRefListPtr aRefListAttr = aData->reflist(attributeID());
497     for (int i = 0; i < aRefListAttr->size(); i++) {
498       ObjectPtr anObject = aRefListAttr->object(i);
499       if (anObject.get()) {
500         QListWidgetItem* anItem = new QListWidgetItem(anObject->data()->name().c_str(),
501                                                       myListControl);
502         anItem->setData(ATTRIBUTE_SELECTION_INDEX_ROLE, i);
503         myListControl->addItem(anItem);
504       }
505     }
506   }
507   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
508     AttributeRefAttrListPtr aRefAttrListAttr = aData->refattrlist(attributeID());
509     for (int i = 0; i < aRefAttrListAttr->size(); i++) {
510       AttributePtr anAttribute = aRefAttrListAttr->attribute(i);
511       QString aName;
512       if (anAttribute.get()) {
513         std::string anAttrName = generateName(anAttribute, myWorkshop);
514         aName = QString::fromStdString(anAttrName);
515       }
516       else {
517         ObjectPtr anObject = aRefAttrListAttr->object(i);
518         if (anObject.get()) {
519           aName = anObject->data()->name().c_str();
520         }
521       }
522       QListWidgetItem* anItem = new QListWidgetItem(aName, myListControl);
523       anItem->setData(ATTRIBUTE_SELECTION_INDEX_ROLE, i);
524       myListControl->addItem(anItem);
525     }
526   }
527
528   // We have to call repaint because sometimes the List control is not updated
529   myListControl->repaint();
530 }
531
532 //********************************************************************
533 std::string ModuleBase_WidgetMultiSelector::validatorType(const QString& theType) const
534 {
535   std::string aType;
536
537   if (theType == "Vertices")
538     aType = "vertex";
539   else if (theType == "Edges")
540     aType = "edge";
541   else if (theType == "Faces")
542     aType = "face";
543   else if (theType == "Solids")
544     aType = "solid";
545
546   return aType;
547 }
548
549 //********************************************************************
550 void ModuleBase_WidgetMultiSelector::onCopyItem()
551 {
552   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
553   QString aRes;
554   foreach(QListWidgetItem* aItem, aItems) {
555     if (!aRes.isEmpty())
556       aRes += "\n";
557     aRes += aItem->text();
558   }
559   if (!aRes.isEmpty()) {
560     QClipboard *clipboard = QApplication::clipboard();
561     clipboard->setText(aRes);
562   }
563 }
564
565 //********************************************************************
566 void ModuleBase_WidgetMultiSelector::onDeleteItem()
567 {
568   processDelete();
569 }
570
571 //********************************************************************
572 void ModuleBase_WidgetMultiSelector::onListSelection()
573 {
574   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
575   myCopyAction->setEnabled(!aItems.isEmpty());
576   myDeleteAction->setEnabled(!aItems.isEmpty());
577   
578   myWorkshop->module()->customizeObject(myFeature, ModuleBase_IModule::CustomizeHighlightedObjects,
579                                         true);
580 }
581
582 //********************************************************************
583 void ModuleBase_WidgetMultiSelector::getSelectedAttributeIndices(std::set<int>& theAttributeIds)
584 {
585   QList<QListWidgetItem*> aItems = myListControl->selectedItems();
586   foreach(QListWidgetItem* anItem, aItems) {
587     int anIndex = anItem->data(ATTRIBUTE_SELECTION_INDEX_ROLE).toInt();
588     if (theAttributeIds.find(anIndex) == theAttributeIds.end())
589       theAttributeIds.insert(anIndex);
590   }
591 }
592
593 void ModuleBase_WidgetMultiSelector::convertIndicesToViewerSelection(std::set<int> theAttributeIds,
594                                                       QList<ModuleBase_ViewerPrsPtr>& theValues) const
595 {
596   if(myFeature.get() == NULL)
597     return;
598
599   DataPtr aData = myFeature->data();
600   AttributePtr anAttribute = aData->attribute(attributeID());
601   std::string aType = anAttribute->attributeType();
602   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
603     AttributeSelectionListPtr aSelectionListAttr = aData->selectionList(attributeID());
604     for (int i = 0; i < aSelectionListAttr->size(); i++) {
605       // filter by attribute indices only if the container is not empty otherwise return all items
606       if (!theAttributeIds.empty() && theAttributeIds.find(i) == theAttributeIds.end())
607         continue;
608       AttributeSelectionPtr anAttr = aSelectionListAttr->value(i);
609       ResultPtr anObject = anAttr->context();
610       if (anObject.get())
611         theValues.append(std::shared_ptr<ModuleBase_ViewerPrs>(
612                new ModuleBase_ViewerPrs(anObject, anAttr->value(), NULL)));
613     }
614   }
615   else if (aType == ModelAPI_AttributeRefList::typeId()) {
616     AttributeRefListPtr aRefListAttr = aData->reflist(attributeID());
617     for (int i = 0; i < aRefListAttr->size(); i++) {
618       // filter by attribute indices only if the container is not empty otherwise return all items
619       if (!theAttributeIds.empty() && theAttributeIds.find(i) == theAttributeIds.end())
620         continue;
621       ObjectPtr anObject = aRefListAttr->object(i);
622       if (anObject.get()) {
623         theValues.append(std::shared_ptr<ModuleBase_ViewerPrs>(
624                new ModuleBase_ViewerPrs(anObject, GeomShapePtr(), NULL)));
625       }
626     }
627   }
628   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
629     AttributeRefAttrListPtr aRefAttrListAttr = aData->refattrlist(attributeID());
630     for (int i = 0; i < aRefAttrListAttr->size(); i++) {
631       // filter by attribute indices only if the container is not empty otherwise return all items
632       if (!theAttributeIds.empty() && theAttributeIds.find(i) == theAttributeIds.end())
633         continue;
634       ObjectPtr anObject = aRefAttrListAttr->object(i);
635       if (!anObject.get())
636         continue;
637       TopoDS_Shape aShape;
638       AttributePtr anAttribute = aRefAttrListAttr->attribute(i);
639       if (anAttribute.get()) {
640         GeomShapePtr aGeomShape = ModuleBase_Tools::getShape(anAttribute, myWorkshop);
641         theValues.append(std::shared_ptr<ModuleBase_ViewerPrs>(
642                new ModuleBase_ViewerPrs(anObject, aGeomShape, NULL)));
643       }
644     }
645   }
646 }
647
648 bool ModuleBase_WidgetMultiSelector::removeUnusedAttributeObjects
649                                                  (QList<ModuleBase_ViewerPrsPtr>& theValues)
650 {
651   bool isDone = false;
652
653   std::map<ObjectPtr, std::set<GeomShapePtr> > aGeomSelection = convertSelection(theValues);
654   DataPtr aData = myFeature->data();
655   AttributePtr anAttribute = aData->attribute(attributeID());
656   std::string aType = anAttribute->attributeType();
657   std::set<GeomShapePtr> aShapes;
658   std::set<int> anIndicesToBeRemoved;
659   if (aType == ModelAPI_AttributeSelectionList::typeId()) {
660     // iteration through data model to find not selected elements to remove them
661     AttributeSelectionListPtr aSelectionListAttr = aData->selectionList(attributeID());
662     for (int i = 0; i < aSelectionListAttr->size(); i++) {
663       AttributeSelectionPtr anAttr = aSelectionListAttr->value(i);
664       bool aFound = findInSelection(anAttr->context(), anAttr->value(), aGeomSelection);
665       if (!aFound)
666         anIndicesToBeRemoved.insert(i);
667     }
668     isDone = anIndicesToBeRemoved.size() > 0;
669     aSelectionListAttr->remove(anIndicesToBeRemoved);
670   }
671   else if (aType == ModelAPI_AttributeRefList::typeId()) {
672     AttributeRefListPtr aRefListAttr = aData->reflist(attributeID());
673     for (int i = 0; i < aRefListAttr->size(); i++) {
674       ObjectPtr anObject = aRefListAttr->object(i);
675       if (anObject.get()) {
676         bool aFound = findInSelection(anObject, GeomShapePtr(), aGeomSelection);
677         if (!aFound)
678           anIndicesToBeRemoved.insert(i);
679       }
680     }
681     isDone = anIndicesToBeRemoved.size() > 0;
682     aRefListAttr->remove(anIndicesToBeRemoved);
683   }
684   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
685     std::set<AttributePtr> anAttributes;
686     QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = theValues.begin(), aLast = theValues.end();
687     ObjectPtr anObject;
688     GeomShapePtr aShape;
689     for (; anIt != aLast; anIt++) {
690       ModuleBase_ViewerPrsPtr aPrs = *anIt;
691       getGeomSelection(aPrs, anObject, aShape);
692       AttributePtr anAttr = myWorkshop->module()->findAttribute(anObject, aShape);
693       if (anAttr.get() && anAttributes.find(anAttr) == anAttributes.end())
694         anAttributes.insert(anAttr);
695     }
696
697     AttributeRefAttrListPtr aRefAttrListAttr = aData->refattrlist(attributeID());
698     for (int i = 0; i < aRefAttrListAttr->size(); i++) {
699       bool aFound = false;
700       if (aRefAttrListAttr->isAttribute(i)) {
701         AttributePtr anAttribute = aRefAttrListAttr->attribute(i);
702         aFound = anAttributes.find(anAttribute) != anAttributes.end();
703       }
704       else {
705         aFound = findInSelection(aRefAttrListAttr->object(i), GeomShapePtr(), aGeomSelection);
706       }
707       if (!aFound)
708         anIndicesToBeRemoved.insert(i);
709     }
710     isDone = anIndicesToBeRemoved.size() > 0;
711     aRefAttrListAttr->remove(anIndicesToBeRemoved);
712   }
713
714   return isDone;
715 }
716
717 std::map<ObjectPtr, std::set<GeomShapePtr> > ModuleBase_WidgetMultiSelector::convertSelection
718                                                      (QList<ModuleBase_ViewerPrsPtr>& theValues)
719 {
720   // convert prs list to objects map
721   std::map<ObjectPtr, std::set<GeomShapePtr> > aGeomSelection;
722   std::set<GeomShapePtr> aShapes;
723   QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = theValues.begin(), aLast = theValues.end();
724   ObjectPtr anObject;
725   GeomShapePtr aShape;
726   GeomShapePtr anEmptyShape(new GeomAPI_Shape());
727   for (; anIt != aLast; anIt++) {
728     ModuleBase_ViewerPrsPtr aPrs = *anIt;
729     getGeomSelection(aPrs, anObject, aShape);
730     aShapes.clear();
731     if (aGeomSelection.find(anObject) != aGeomSelection.end()) // found
732       aShapes = aGeomSelection[anObject];
733     // we need to know if there was an empty shape in selection for the object
734     if (!aShape.get())
735       aShape = anEmptyShape;
736     if (aShape.get() && aShapes.find(aShape) == aShapes.end()) // not found
737       aShapes.insert(aShape);
738     aGeomSelection[anObject] = aShapes;
739   }
740   return aGeomSelection;
741 }
742
743 bool ModuleBase_WidgetMultiSelector::findInSelection(const ObjectPtr& theObject,
744                               const GeomShapePtr& theShape,
745                               const std::map<ObjectPtr, std::set<GeomShapePtr> >& theGeomSelection)
746 {
747   bool aFound = false;
748   GeomShapePtr anEmptyShape(new GeomAPI_Shape());
749   GeomShapePtr aShape = theShape.get() ? theShape : anEmptyShape;
750   if (theGeomSelection.find(theObject) != theGeomSelection.end()) {// found
751     const std::set<GeomShapePtr>& aShapes = theGeomSelection.at(theObject);
752     std::set<GeomShapePtr>::const_iterator anIt = aShapes.begin(), aLast = aShapes.end();
753     for (; anIt != aLast && !aFound; anIt++) {
754       GeomShapePtr aCShape = *anIt;
755       if (aCShape.get())
756         aFound = aCShape->isEqual(aShape);
757     }
758   }
759   return aFound;
760 }