From: eap Date: Thu, 21 Jul 2005 05:54:47 +0000 (+0000) Subject: PAL9524 - unassign a hypothesis when Edit/Delete called for it X-Git-Tag: V3_0_1~18 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=8616118fe1c2fef49d88367eaa0dba3aebdcf1ab;ds=inline PAL9524 - unassign a hypothesis when Edit/Delete called for it --- diff --git a/src/SMESHGUI/SMESHGUI.cxx b/src/SMESHGUI/SMESHGUI.cxx index 6a7cd010a..2b84e29dc 100644 --- a/src/SMESHGUI/SMESHGUI.cxx +++ b/src/SMESHGUI/SMESHGUI.cxx @@ -793,7 +793,7 @@ namespace{ if(obj){ SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow( SMESH::SObjectToObject( obj ) ); SMESH::SMESH_subMesh_var aSubMesh = SMESH::SMESH_subMesh::_narrow( SMESH::SObjectToObject( obj ) ); - + QString objType = CheckTypeObject(IObject); if ( !aGroup->_is_nil() ) { // DELETE GROUP SMESH::SMESH_Mesh_var aMesh = aGroup->GetMesh(); aMesh->RemoveGroup( aGroup ); @@ -802,6 +802,10 @@ namespace{ SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather(); aMesh->RemoveSubMesh( aSubMesh ); } + else if ( objType == "Hypothesis" || objType == "Algorithm" ) {// DELETE HYPOTHESIS + SMESH::RemoveHypothesisOrAlgorithmOnMesh(IObject); + aStudyBuilder->RemoveObjectWithChildren( obj ); + } else {// default action: remove SObject from the study // san - it's no use opening a transaction here until UNDO/REDO is provided in SMESH //SUIT_Operation *op = new SALOMEGUI_ImportOperation(myActiveStudy); diff --git a/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx b/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx index 507ac2563..8f4d0e782 100644 --- a/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx +++ b/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx @@ -422,10 +422,12 @@ namespace SMESH{ int res = SMESH::HYP_UNKNOWN_FATAL; SUIT_OverrideCursor wc; - if (IObject->hasReference()) { - try { - _PTR(Study) aStudy = GetActiveStudyDocument(); - SMESH_Hypothesis_var anHyp = IObjectToInterface(IObject); + try { + _PTR(Study) aStudy = GetActiveStudyDocument(); + SMESH_Hypothesis_var anHyp = IObjectToInterface(IObject); + if (IObject->hasReference()) + { + if(MYDEBUG) MESSAGE("HAS REFERENCE " << IObject->getEntry()); _PTR(SObject) aHypSObj = aStudy->FindObjectID(IObject->getReference()); if (aHypSObj) { _PTR(SObject) MorSM = SMESH::GetMeshOrSubmesh(aHypSObj); @@ -457,20 +459,37 @@ namespace SMESH{ } } } - catch(const SALOME::SALOME_Exception& S_ex) { - wc.suspend(); - SalomeApp_Tools::QtCatchCorbaException(S_ex); - res = SMESH::HYP_UNKNOWN_FATAL; + else if (IObject->hasEntry()) + { + if(MYDEBUG) MESSAGE("IObject entry HAS ENTRY " << IObject->getEntry()); + SObjectList meshList = GetMeshesUsingAlgoOrHypothesis(anHyp); + for ( int i = 0; i < meshList.size(); ++i ) { + SMESH::SMESH_Mesh_var aMesh = + SMESH::SObjectToInterface( meshList[ i ]); + GEOM::GEOM_Object_var aShape = SMESH::GetShapeOnMeshOrSubMesh( meshList[ i ]); + if ( ! aMesh->_is_nil() && !aShape->_is_nil() ) { + res = aMesh->RemoveHypothesis(aShape, anHyp); + if ( res < SMESH::HYP_UNKNOWN_FATAL ) + SMESH::ModifiedMesh( meshList[ i ], false); + if ( res > SMESH::HYP_OK ) { + wc.suspend(); + processHypothesisStatus( res, anHyp, false ); + wc.resume(); + } + } + } } } - else if (IObject->hasEntry()) { - if(MYDEBUG) MESSAGE("IObject entry " << IObject->getEntry()); + catch(const SALOME::SALOME_Exception& S_ex) { + wc.suspend(); + SalomeApp_Tools::QtCatchCorbaException(S_ex); + res = SMESH::HYP_UNKNOWN_FATAL; } return res < SMESH::HYP_UNKNOWN_FATAL; } bool RemoveHypothesisOrAlgorithmOnMesh (_PTR(SObject) MorSM, - SMESH::SMESH_Hypothesis_ptr anHyp) + SMESH::SMESH_Hypothesis_ptr anHyp) { SALOMEDS::GenericAttribute_var anAttr; SALOMEDS::AttributeIOR_var anIOR; @@ -479,9 +498,9 @@ namespace SMESH{ if (MorSM) { try { - GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(MorSM); - if (!aShapeObject->_is_nil()) { - SMESH::SMESH_Mesh_var aMesh = SMESH::SObjectToInterface(MorSM); + GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(MorSM); + if (!aShapeObject->_is_nil()) { + SMESH::SMESH_Mesh_var aMesh = SMESH::SObjectToInterface(MorSM); SMESH::SMESH_subMesh_var aSubMesh = SMESH::SObjectToInterface(MorSM); if (!aSubMesh->_is_nil())