PAL10513. Desable tabs according to shape dimention at edition as well

This commit is contained in:
eap 2005-11-14 14:11:48 +00:00
parent 52c4d72583
commit 773894ff04

View File

@ -276,15 +276,19 @@ void SMESHGUI_MeshOp::selectionDone()
// Enable tabs according to shape dimension
int shapeDim = 3;
if ( myToCreate )
{
try
{
GEOM::GEOM_Object_var aGeomVar;
QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
_PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.latin1() );
if ( pGeom ) {
GEOM::GEOM_Object_var aGeomVar =
GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
aGeomVar = GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
}
else {
QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
_PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.latin1() );
aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
}
if ( !aGeomVar->_is_nil() ) {
shapeDim = 0;
switch ( aGeomVar->GetShapeType() ) {
@ -310,7 +314,6 @@ void SMESHGUI_MeshOp::selectionDone()
}
}
}
}
catch ( const SALOME::SALOME_Exception& S_ex )
{
SalomeApp_Tools::QtCatchCorbaException( S_ex );
@ -318,7 +321,6 @@ void SMESHGUI_MeshOp::selectionDone()
catch ( ... )
{
}
}
myDlg->setMaxHypoDim( shapeDim );
}