From 045908212eb433024d3d7873d90e9336ab2086f5 Mon Sep 17 00:00:00 2001 From: vsr Date: Tue, 23 Dec 2014 16:19:54 +0300 Subject: [PATCH] 0022750: [EDF] Improve ergonomics of the "Detect Self-intersections" dialog box Additional improvements: - Allow multiple selection of interferences - Publish each interference as a Compound containing two sub-shapes --- .../GEOM/input/check_self_intersections.doc | 8 +- .../MeasureGUI_CheckSelfIntersectionsDlg.cxx | 140 ++++++++---------- .../MeasureGUI_CheckSelfIntersectionsDlg.h | 2 - 3 files changed, 64 insertions(+), 86 deletions(-) diff --git a/doc/salome/gui/GEOM/input/check_self_intersections.doc b/doc/salome/gui/GEOM/input/check_self_intersections.doc index 7446f3dd3..8cf4d57bf 100644 --- a/doc/salome/gui/GEOM/input/check_self_intersections.doc +++ b/doc/salome/gui/GEOM/input/check_self_intersections.doc @@ -14,10 +14,10 @@ In this dialog: - Compute self-intersections button computes self-interferences. - \b Summary section contains the general report if the object has self-intersections and/or if errors are occured during computation. - \b Self-intersections list contains the list of self-intersections detected. -Select the intersection to show Sub-shapes in the field to the right. -- \b Apply and Apply and Close buttons are used to store selected self-intersected shapes in the study for further analysis. -If no shapes are selected, but an intersection is selected the both of intersected shapes are stored. If no intersections selected -all shapes of all intersections are stored in the study. +Select the intersection(s) to show Sub-shapes in the field to the right. +- \b Apply and Apply and Close buttons are used to store interferences selected in the "Self-intersections" list box in the study for further analysis. +If no any interference is selected, all interferences are published in the study. Each interference is published as a child +compound of the source shape and contains a couple of intersecting sub-shapes. \note This tool is useful for detection of shapes, not suitable for arguments of Boolean operations and Partition algorithm. diff --git a/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.cxx b/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.cxx index de58de84c..ccf976acb 100644 --- a/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.cxx +++ b/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.cxx @@ -42,6 +42,7 @@ #include #include #include +#include #include @@ -105,6 +106,7 @@ MeasureGUI_CheckSelfIntersectionsDlg::MeasureGUI_CheckSelfIntersectionsDlg (Geom myInteList = new QListWidget; + myInteList->setSelectionMode(QAbstractItemView::ExtendedSelection); myShapeList = new QListWidget; myShapeList->setSelectionMode(QAbstractItemView::ExtendedSelection); @@ -196,15 +198,16 @@ void MeasureGUI_CheckSelfIntersectionsDlg::Init() void MeasureGUI_CheckSelfIntersectionsDlg::clear() { myTextView->setText(""); - disconnect(myInteList, SIGNAL(itemSelectionChanged()), this, 0); - disconnect(myShapeList, SIGNAL(itemSelectionChanged()), this, 0); + + myInteList->blockSignals(true); + myShapeList->blockSignals(true); myInteList->clear(); myShapeList->clear(); - connect(myInteList, SIGNAL(itemSelectionChanged()), - SLOT(onInteListSelectionChanged())); - connect(myShapeList, SIGNAL(itemSelectionChanged()), - SLOT(onSubShapesListSelectionChanged())); + myInteList->blockSignals(false); + myShapeList->blockSignals(false); + erasePreview(); + buttonOk()->setEnabled(false); buttonApply()->setEnabled(false); myComputeButton->setEnabled(true); @@ -442,28 +445,28 @@ bool MeasureGUI_CheckSelfIntersectionsDlg::findSelfIntersections void MeasureGUI_CheckSelfIntersectionsDlg::onInteListSelectionChanged() { erasePreview(); - int aCurItem = myInteList->currentRow(); - - if (aCurItem < 0) - return; + myShapeList->clear(); - QStringList aSubShapeList; TopoDS_Shape aSelShape; if (!myObj->_is_nil() && GEOMBase::GetShape(myObj, aSelShape)) { TopTools_IndexedMapOfShape anIndices; TopExp::MapShapes(aSelShape, anIndices); - TopoDS_Shape aSubShape = anIndices.FindKey(myInters[aCurItem*2]); - QString aType = GEOMBase::GetShapeTypeString(aSubShape); - if (!aType.isEmpty()) - aSubShapeList.append(QString("%1_%2").arg(aType).arg(myInters[aCurItem*2])); - aSubShape = anIndices.FindKey(myInters[aCurItem*2 + 1]); - aType = GEOMBase::GetShapeTypeString(aSubShape); - if (!aType.isEmpty()) - aSubShapeList.append(QString("%1_%2").arg(aType).arg(myInters[aCurItem*2 + 1])); + int nbSelected = myInteList->selectedItems().size(); + + for (int i = 0; i < myInteList->count(); i++) { + if ( myInteList->item(i)->isSelected() ) { + if ( nbSelected > 1 ) + myShapeList->addItem(QString("--- #%1 ---").arg(i+1)); + for (int j = 0; j < 2; j++) { + TopoDS_Shape aSubShape = anIndices.FindKey(myInters[i*2+j]); + QString aType = GEOMBase::GetShapeTypeString(aSubShape); + myShapeList->addItem(QString("%1_%2").arg(aType).arg(myInters[i*2+j])); + myShapeList->item(myShapeList->count()-1)->setData(Qt::UserRole, myInters[i*2+j]); + } + } + } } - myShapeList->clear(); - myShapeList->addItems(aSubShapeList); } //================================================================================= @@ -474,36 +477,29 @@ void MeasureGUI_CheckSelfIntersectionsDlg::onSubShapesListSelectionChanged() { erasePreview(); - // Current pair - int aErrCurItem = myInteList->currentRow(); - if (aErrCurItem < 0) - return; - // Selected IDs + QList selected = myShapeList->selectedItems(); QList aIds; - for (int i = 0, n = myShapeList->count(); i < n; i++) { - if (myShapeList->item(i)->isSelected()) - aIds.append(i); + foreach(QListWidgetItem* item, selected) { + int idx = item->data(Qt::UserRole).toInt(); + if (idx > 0 && aIds.indexOf(idx) < 0) aIds.append(idx); } - if (aIds.count() < 1) - return; + + if (aIds.empty()) return; TopoDS_Shape aSelShape; TopoDS_Shape aSubShape; TopTools_IndexedMapOfShape anIndices; if (!myObj->_is_nil() && GEOMBase::GetShape(myObj, aSelShape)) { - SALOME_Prs* aPrs = 0; TopExp::MapShapes(aSelShape, anIndices); - QList::iterator it; - for (it = aIds.begin(); it != aIds.end(); ++it) { - aSubShape = anIndices.FindKey(myInters[aErrCurItem*2 + (*it)]); + getDisplayer()->SetColor(Quantity_NOC_RED); + getDisplayer()->SetWidth(3); + getDisplayer()->SetToActivate(false); + foreach(int idx, aIds) { + aSubShape = anIndices.FindKey(idx); try { - getDisplayer()->SetColor(Quantity_NOC_RED); - getDisplayer()->SetWidth(3); - getDisplayer()->SetToActivate(false); - aPrs = !aSubShape.IsNull() ? getDisplayer()->BuildPrs(aSubShape) : 0; - if (aPrs) - displayPreview(aPrs, true); + SALOME_Prs* aPrs = !aSubShape.IsNull() ? getDisplayer()->BuildPrs(aSubShape) : 0; + if (aPrs) displayPreview(aPrs, true); } catch (const SALOME::SALOME_Exception& e) { SalomeApp_Tools::QtCatchCorbaException(e); @@ -525,56 +521,40 @@ bool MeasureGUI_CheckSelfIntersectionsDlg::execute(ObjectList& objects) return false; } - const int aNbInteSelected = myInteList->selectedItems().size(); - const bool isPublishAllInte = (aNbInteSelected < 1); - const bool isPublishAllShapes = - (aNbInteSelected != 1 || myShapeList->selectedItems().empty()); - int i; - const int n = myInteList->count(); TColStd_IndexedMapOfInteger aMapIndex; + QList pairs; + + int nbSelected = myInteList->selectedItems().size(); - // Collect the map of indices. - for (i = 0; i < n; i++) { - if (isPublishAllInte) { - // Collect the both of two indices. + // Collect the map of indices + for (int i = 0; i < myInteList->count(); i++) { + if ( nbSelected < 1 || myInteList->item(i)->isSelected() ) { aMapIndex.Add(myInters[i*2]); aMapIndex.Add(myInters[i*2 + 1]); - } else if (myInteList->item(i)->isSelected()) { - if (isPublishAllShapes) { - // Collect the both of two indices. - aMapIndex.Add(myInters[i*2]); - aMapIndex.Add(myInters[i*2 + 1]); - } else if (myShapeList->count() == 2) { - // Collect only selected items. - if (myShapeList->item(0)->isSelected()) { - aMapIndex.Add(myInters[i*2]); - } - if (myShapeList->item(1)->isSelected()) { - aMapIndex.Add(myInters[i*2 + 1]); - } - } + pairs << myInters[i*2]; + pairs << myInters[i*2 + 1]; } } - // Create objects. + GEOM::ShapesOpPtr shapesOper = getGeomEngine()->GetIShapesOperations(getStudyId()); + + // Explode sub-shapes GEOM::ListOfLong_var anArray = new GEOM::ListOfLong; - const int aNbShapes = aMapIndex.Extent(); - - anArray->length(aNbShapes); + anArray->length(aMapIndex.Extent()); - for (i = 1; i <= aNbShapes; i++) { - anArray[i - 1] = aMapIndex.FindKey(i); - } - - if (myShapesOper->_is_nil()) { - myShapesOper = getGeomEngine()->GetIShapesOperations(getStudyId()); - } + for (int i = 1; i <= aMapIndex.Extent(); i++) + anArray[i-1] = aMapIndex.FindKey(i); - GEOM::ListOfGO_var aList = myShapesOper->MakeSubShapes(myObj, anArray); - const int aNbObj = aList->length(); + GEOM::ListOfGO_var aList = shapesOper->MakeSubShapes(myObj, anArray); - for (i = 0; i < aNbObj; i++) { - objects.push_back(GEOM::GEOM_Object::_duplicate(aList[i])); + // Make compounds + for (int i = 0; i < pairs.count()/2; i++) { + GEOM::ListOfGO_var aPair = new GEOM::ListOfGO(); + aPair->length(2); + aPair[0] = aList[ aMapIndex.FindIndex(pairs[i*2]) - 1 ]; + aPair[1] = aList[ aMapIndex.FindIndex(pairs[i*2+1]) - 1 ]; + GEOM::GEOM_Object_var aCompound = shapesOper->MakeCompound( aPair ); + objects.push_back(aCompound._retn()); } return true; diff --git a/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.h b/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.h index e9400be2d..77e46dd78 100644 --- a/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.h +++ b/src/MeasureGUI/MeasureGUI_CheckSelfIntersectionsDlg.h @@ -88,8 +88,6 @@ private: QListWidget *myShapeList; GEOM::GEOM_Object_var myObj; GEOM::ListOfLong_var myInters; - GEOM::GEOM_IShapesOperations_var myShapesOper; - }; #endif // MEASUREGUI_CHECKSELFINTERDLG_H -- 2.39.2