X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FStdMeshersGUI%2FStdMeshersGUI_SubShapeSelectorWdg.cxx;h=ef3dbe164e9a63ce5e6662033a80844cb8e463f0;hb=0f0bf7c72871fc015ec1637067cd1d58e61395b9;hp=637163f66e0b37f0e00db5c66144bc68d06f10bf;hpb=f5016d85b7b4b88623723027a1585c6414c4dc66;p=modules%2Fsmesh.git diff --git a/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.cxx b/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.cxx index 637163f66..ef3dbe164 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.cxx +++ b/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.cxx @@ -1,9 +1,9 @@ -// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -24,29 +24,22 @@ #include "StdMeshersGUI_SubShapeSelectorWdg.h" // SMESH Includes -#include "SMESH_Type.h" -#include "SMESHGUI_MeshUtils.h" +#include "SMESHGUI_Utils.h" +#include "SMESHGUI_VTKUtils.h" #include "SMESH_Actor.h" -#include "SMESH_PreviewActorsCollection.h" -#include "SMESH_ActorUtils.h" -#include "SMESHGUI_GroupUtils.h" #include "SMESH_Gen_i.hxx" -#include "SMESHGUI_GEOMGenUtils.h" #include "SMESH_LogicalFilter.hxx" - -// SVTK Includes -#include -#include -#include -#include +#include "SMESH_PreviewActorsCollection.h" +#include "SMESH_Type.h" // SALOME GUI includes -#include #include -#include - -// SUIT Includes +#include +#include #include +#include +#include +#include // GEOM Includes #include @@ -62,14 +55,9 @@ // OCCT includes #include -#include #include #include #include -#include - -// SALOME KERNEL includes -#include #define SPACING 6 @@ -84,8 +72,8 @@ StdMeshersGUI_SubShapeSelectorWdg ::StdMeshersGUI_SubShapeSelectorWdg( QWidget * parent, TopAbs_ShapeEnum aSubShType ): QWidget( parent ), - myPreviewActor( 0 ), - myMaxSize( -1 ) + myMaxSize( -1 ), + myPreviewActor( 0 ) { QPixmap image0( SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap( "SMESH", tr( "ICON_SELECT" ) ) ); @@ -95,7 +83,7 @@ StdMeshersGUI_SubShapeSelectorWdg myListWidget = new QListWidget( this ); myAddButton = new QPushButton( tr( "SMESH_BUT_ADD" ), this ); - myRemoveButton = new QPushButton( tr( "SMESH_BUT_REMOVE" ), this ); + myRemoveButton = new QPushButton( tr( "SMESH_BUT_REMOVE" ), this ); myInfoLabel = new QLabel( this ); myPrevButton = new QPushButton( "<<", this ); myNextButton = new QPushButton( ">>", this ); @@ -146,6 +134,8 @@ StdMeshersGUI_SubShapeSelectorWdg::~StdMeshersGUI_SubShapeSelectorWdg() mySelectionMgr->removeFilter( myFilter ); delete myFilter; myFilter=0; + mySelectionMgr->clearSelected(); + SUIT_SelectionFilter* filter; foreach( filter, myGeomFilters ) delete filter; @@ -182,7 +172,7 @@ void StdMeshersGUI_SubShapeSelectorWdg::init() connect( myPrevButton, SIGNAL(clicked()), SLOT(onPrevious())); connect( myNextButton, SIGNAL(clicked()), SLOT(onNext())); - connect( mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())); + connect( mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(selectionIntoArgument())); connect( myListWidget, SIGNAL(itemSelectionChanged()), this, SLOT(onListSelectionChanged())); updateState(); @@ -212,7 +202,7 @@ void StdMeshersGUI_SubShapeSelectorWdg::setFilter() */ //================================================================================ -void StdMeshersGUI_SubShapeSelectorWdg::showPreview( bool visible) +void StdMeshersGUI_SubShapeSelectorWdg::ShowPreview( bool visible) { if ( !myPreviewActor ) return; @@ -227,11 +217,24 @@ void StdMeshersGUI_SubShapeSelectorWdg::showPreview( bool visible) } } +//================================================================================ +/*! + * \brief Clears selected IDs. This is a workaround of a bug that + * SUIT_SelectionMgr::clearSelected() does not emit currentSelectionChanged + */ +//================================================================================ + +void StdMeshersGUI_SubShapeSelectorWdg::ClearSelected() +{ + mySelectedIDs.clear(); + selectionIntoArgument(); +} + //================================================================================= -// function : SelectionIntoArgument() +// function : selectionIntoArgument() // purpose : Called when selection as changed or other case //================================================================================= -void StdMeshersGUI_SubShapeSelectorWdg::SelectionIntoArgument() +void StdMeshersGUI_SubShapeSelectorWdg::selectionIntoArgument() { if ( !myPreviewActor ) return; @@ -245,31 +248,36 @@ void StdMeshersGUI_SubShapeSelectorWdg::SelectionIntoArgument() if (nbSel > 0) { SALOME_ListIteratorOfListIO anIt (aList); - - for ( ; anIt.More(); anIt.Next()) { // Loop on selected objects + + for ( ; anIt.More(); anIt.Next()) // Loop on selected objects + { Handle(SALOME_InteractiveObject) IO = anIt.Value(); - + GEOM::GEOM_Object_var aGeomObj = GetGeomObjectByEntry( IO->getEntry() ); if ( !CORBA::is_nil( aGeomObj ) ) { // Selected Object From Study - GEOM::GEOM_Object_ptr aGeomFatherObj = aGeomObj->GetMainShape(); - QString aFatherEntry = ""; - QString aMainFatherEntry = ""; - TopoDS_Shape shape; - if ( !CORBA::is_nil( aGeomFatherObj ) ) { - // Get Main Shape - GEOM::GEOM_Object_var aGeomMain = GetGeomObjectByEntry( myEntry ); - if ( !CORBA::is_nil( aGeomMain ) && aGeomMain->GetType() == 37 ) { // Main Shape is a Group - GEOM::GEOM_Object_ptr aMainFatherObj = aGeomMain->GetMainShape(); - if ( !CORBA::is_nil( aMainFatherObj ) ) - aMainFatherEntry = aMainFatherObj->GetStudyEntry(); - } - aFatherEntry = aGeomFatherObj->GetStudyEntry(); - } - - if ( aFatherEntry != "" && ( aFatherEntry == myEntry || aFatherEntry == aMainFatherEntry ) ) + // commented for IPAL52836 + // + // GEOM::GEOM_Object_var aGeomFatherObj = aGeomObj->GetMainShape(); + // QString aFatherEntry = ""; + // QString aMainFatherEntry = ""; + // TopoDS_Shape shape; + // if ( !CORBA::is_nil( aGeomFatherObj ) ) { + // // Get Main Shape + // GEOM::GEOM_Object_var aGeomMain = GetGeomObjectByEntry( myEntry.c_str() ); + // if ( !CORBA::is_nil( aGeomMain ) && aGeomMain->GetType() == 37 ) { // Main Shape is a Group + // GEOM::GEOM_Object_var aMainFatherObj = aGeomMain->GetMainShape(); + // if ( !CORBA::is_nil( aMainFatherObj ) ) + // aMainFatherEntry = aMainFatherObj->GetStudyEntry(); + // } + // aFatherEntry = aGeomFatherObj->GetStudyEntry(); + // } + + // if (( ! aFatherEntry.isEmpty() ) && + // ( aFatherEntry == myEntry.c_str() || aFatherEntry == aMainFatherEntry ) ) { + TopoDS_Shape shape; if ( aGeomObj->GetType() == 37 /*GEOM_GROUP*/ ) { // Selected Group that belongs the main object - GEOMBase::GetShape(aGeomObj, shape); + GEOMBase::GetShape(aGeomObj, shape); if ( !shape.IsNull() ) { TopExp_Explorer exp( shape, mySubShType ); for ( ; exp.More(); exp.Next() ) { @@ -280,7 +288,9 @@ void StdMeshersGUI_SubShapeSelectorWdg::SelectionIntoArgument() } } } - } else if ( aGeomObj->GetType() == 28 /*GEOM_SUBSHAPE*/ ) { + } else if ( aGeomObj->GetType() == 28 /*GEOM_SUBSHAPE*/ || + myEntry == IO->getEntry() ) + { GEOMBase::GetShape(aGeomObj, shape); if ( !shape.IsNull() && shape.ShapeType() == mySubShType ) { int index = myPreviewActor->GetIndexByShape( shape ); @@ -344,7 +354,9 @@ void StdMeshersGUI_SubShapeSelectorWdg::onAdd() } onListSelectionChanged(); myListWidget->blockSignals( false ); - myAddButton->setEnabled( myMaxSize == -1 || myListOfIDs.size() < myMaxSize ); + + mySelectedIDs.clear(); + myAddButton->setEnabled( false ); } //================================================================================= @@ -371,7 +383,7 @@ void StdMeshersGUI_SubShapeSelectorWdg::onRemove() onListSelectionChanged(); myListWidget->blockSignals( false ); - myAddButton->setEnabled( true ); + myAddButton->setEnabled( !mySelectedIDs.isEmpty() ); } void StdMeshersGUI_SubShapeSelectorWdg::onPrevious() @@ -405,27 +417,46 @@ void StdMeshersGUI_SubShapeSelectorWdg::onListSelectionChanged() if ( !myPreviewActor ) return; - mySelectionMgr->clearSelected(); - TColStd_MapOfInteger aIndexes; + //mySelectionMgr->clearSelected(); + myPreviewActor->HighlightAll( false ); QList selItems = myListWidget->selectedItems(); QListWidgetItem* anItem; foreach(anItem, selItems) myPreviewActor->HighlightID( anItem->text().toInt() ); + if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI )) + aViewWindow->Repaint(); + // update remove button myRemoveButton->setEnabled( selItems.size() > 0 ); + + emit selectionChanged(); } //================================================================================= // function : setGeomShape // purpose : Called to set geometry whose sub-shapes are selected //================================================================================ -void StdMeshersGUI_SubShapeSelectorWdg::SetGeomShapeEntry( const QString& theEntry ) +void StdMeshersGUI_SubShapeSelectorWdg::SetGeomShapeEntry( const QString& theEntry, + const QString& theMainShapeEntry ) { - if ( theEntry != "") { + if ( !theEntry.isEmpty() || theMainShapeEntry.isEmpty() ) + { myParamValue = theEntry; - myEntry = theEntry; - myGeomShape = GetTopoDSByEntry( theEntry ); + myEntry = theEntry.toStdString(); + myMainEntry = theMainShapeEntry.toStdString(); + + if ( myMainEntry.empty() ) myMainEntry = myEntry; + if ( myEntry.empty() ) myEntry = myMainEntry; + if ( myMainEntry.length() > myEntry.length() && + theMainShapeEntry.startsWith( theEntry )) + std::swap( myMainEntry, myEntry ); + + myGeomShape = GetTopoDSByEntry( myEntry.c_str() ); + if ( myEntry == myMainEntry ) + myMainShape = myGeomShape; + else + myMainShape = GetTopoDSByEntry( myMainEntry.c_str() ); updateState(); myIsNotCorrected = true; } @@ -448,9 +479,10 @@ void StdMeshersGUI_SubShapeSelectorWdg::updateState() myAddButton->setEnabled( mySelectedIDs.size() > 0 ); if (state) { + SUIT_OverrideCursor wc; myPreviewActor = new SMESH_PreviewActorsCollection(); myPreviewActor->SetSelector( mySelector ); - myPreviewActor->Init( myGeomShape, mySubShType, myEntry ); + myPreviewActor->Init( myGeomShape, myMainShape, mySubShType, myEntry.c_str() ); myPreviewActor->SetShown( false ); myIsShown = false; if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI )) { @@ -470,18 +502,17 @@ GEOM::GEOM_Object_var StdMeshersGUI_SubShapeSelectorWdg::GetGeomObjectByEntry( c { GEOM::GEOM_Object_var aGeomObj; SALOMEDS::Study_var aStudy = SMESHGUI::GetSMESHGen()->GetCurrentStudy(); - if (aStudy != 0) { + if ( !aStudy->_is_nil() ) + { SALOMEDS::SObject_var aSObj = aStudy->FindObjectID( theEntry.toLatin1().data() ); - SALOMEDS::GenericAttribute_var anAttr; - - if (!aSObj->_is_nil() && aSObj->FindAttribute(anAttr, "AttributeIOR")) { - SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr); - CORBA::String_var aVal = anIOR->Value(); - CORBA::Object_var obj = aStudy->ConvertIORToObject(aVal); + if (!aSObj->_is_nil() ) + { + CORBA::Object_var obj = aSObj->GetObject(); aGeomObj = GEOM::GEOM_Object::_narrow(obj); + aSObj->UnRegister(); } } - return aGeomObj; + return aGeomObj._retn(); } //================================================================================= @@ -504,24 +535,19 @@ SMESH::long_array_var StdMeshersGUI_SubShapeSelectorWdg::GetListOfIDs() { SMESH::long_array_var anArray = new SMESH::long_array; - if ( myMainEntry != "" && myIsNotCorrected ) - myListOfIDs = GetCorrectedListOfIDs( true ); - int size = myListOfIDs.size(); anArray->length( size ); - if ( size ) { - for (int i = 0; i < size; i++) { - anArray[i] = myListOfIDs.at(i); - } - } + for (int i = 0; i < size; i++) + anArray[i] = myListOfIDs.at(i); + return anArray; } //================================================================================= // function : SetListOfIds -// purpose : Called to set the list of SubShapes IDs +// purpose : Called to set the list of SubShapes IDs. Returns false if any ID is invalid //================================================================================= -void StdMeshersGUI_SubShapeSelectorWdg::SetListOfIDs( SMESH::long_array_var theIds) +bool StdMeshersGUI_SubShapeSelectorWdg::SetListOfIDs( SMESH::long_array_var theIds) { mySelectedIDs.clear(); myListOfIDs.clear(); @@ -529,19 +555,26 @@ void StdMeshersGUI_SubShapeSelectorWdg::SetListOfIDs( SMESH::long_array_var theI for ( int i = 0; i < size; i++ ) mySelectedIDs.append( theIds[ i ] ); - mySelectedIDs = GetCorrectedListOfIDs( false ); - onAdd(); -} + myListWidget->blockSignals( true ); + myListWidget->clear(); + myListWidget->blockSignals( false ); -//================================================================================= -// function : SetMainShapeEntry -// purpose : Called to set the Entry of main shape of the mesh -//================================================================================= -void StdMeshersGUI_SubShapeSelectorWdg::SetMainShapeEntry( const QString& theEntry ) -{ - myMainEntry = theEntry; - myMainShape = GetTopoDSByEntry( theEntry ); - myIsNotCorrected = true; + bool isOk = true; + if ( myPreviewActor ) + { + for ( int i = 0; i < size && isOk; i++ ) + isOk = myPreviewActor->IsValidIndex( theIds[ i ] ); + } + else if ( !myMainShape.IsNull() ) + { + TopTools_IndexedMapOfShape aMainMap; + TopExp::MapShapes(myMainShape, aMainMap); + for ( int i = 0; i < size && isOk; i++ ) + isOk = ( theIds[ i ] > 0 && theIds[ i ] <= aMainMap.Extent() ); + } + // mySelectedIDs = GetCorrectedListOfIDs( false, &isOk ); + onAdd(); + return isOk; } //================================================================================= @@ -550,47 +583,8 @@ void StdMeshersGUI_SubShapeSelectorWdg::SetMainShapeEntry( const QString& theEnt //================================================================================= const char* StdMeshersGUI_SubShapeSelectorWdg::GetMainShapeEntry() { - if ( myMainEntry == "") - return myEntry.toLatin1().data(); - - return myMainEntry.toLatin1().data(); -} - -//================================================================================= -// function : GetCorrectedListOfIds -// purpose : Called to convert the list of IDs from sub-shape IDs to main shape IDs -//================================================================================= -QList StdMeshersGUI_SubShapeSelectorWdg::GetCorrectedListOfIDs( bool fromSubshapeToMainshape ) -{ - if ( ( myMainShape.IsNull() || myGeomShape.IsNull() ) && fromSubshapeToMainshape ) - return myListOfIDs; - else if ( ( myMainShape.IsNull() || myGeomShape.IsNull() ) && !fromSubshapeToMainshape ) - return mySelectedIDs; - - QList aList; - TopTools_IndexedMapOfShape aGeomMap; - TopTools_IndexedMapOfShape aMainMap; - TopExp::MapShapes(myGeomShape, aGeomMap); - TopExp::MapShapes(myMainShape, aMainMap); - - if ( fromSubshapeToMainshape ) { // convert indexes from sub-shape to mainshape - int size = myListOfIDs.size(); - for (int i = 0; i < size; i++) { - TopoDS_Shape aSubShape = aGeomMap.FindKey( myListOfIDs.at(i) ); - int index = aMainMap.FindIndex( aSubShape ); - aList.append( index ); - } - myIsNotCorrected = false; - } else { // convert indexes from main shape to sub-shape - int size = mySelectedIDs.size(); - for (int i = 0; i < size; i++) { - TopoDS_Shape aSubShape = aMainMap.FindKey( mySelectedIDs.at(i) ); - int index = aGeomMap.FindIndex( aSubShape ); - aList.append( index ); - } - } - - return aList; + if ( myMainEntry.empty() ) myMainEntry = ""; + return myMainEntry.c_str(); } void StdMeshersGUI_SubShapeSelectorWdg::updateButtons()