2003-07-10 19:18:22 +06:00
|
|
|
// SMESH SMESHGUI : GUI for SMESH component
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : SMESHGUI_AddSubMeshDlg.cxx
|
|
|
|
// Author : Nicolas REJNERI
|
|
|
|
// Module : SMESH
|
2003-05-19 20:07:00 +06:00
|
|
|
// $Header$
|
|
|
|
|
|
|
|
#include "SMESHGUI_AddSubMeshDlg.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
#include "SMESHGUI.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "SMESHGUI_Utils.h"
|
|
|
|
#include "SMESHGUI_GEOMGenUtils.h"
|
|
|
|
#include "SMESHGUI_HypothesesUtils.h"
|
|
|
|
|
|
|
|
#include "GEOMBase.h"
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
#include "QAD_Application.h"
|
|
|
|
#include "QAD_Desktop.h"
|
2004-06-18 14:34:31 +06:00
|
|
|
#include "QAD_MessageBox.h"
|
|
|
|
#include "QAD_WaitCursor.h"
|
|
|
|
#include "QAD_Operation.h"
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "SALOME_ListIteratorOfListIO.hxx"
|
|
|
|
#include "SALOMEGUI_QtCatchCorbaException.hxx"
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
#include "utilities.h"
|
|
|
|
|
|
|
|
// QT Includes
|
|
|
|
#include <qgroupbox.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qlayout.h>
|
|
|
|
#include <qpixmap.h>
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace SMESH{
|
|
|
|
SMESH::SMESH_subMesh_var AddSubMesh(SMESH::SMESH_Mesh_ptr theMesh,
|
|
|
|
GEOM::GEOM_Object_ptr theShapeObject,
|
|
|
|
const char* theMeshName )
|
|
|
|
{
|
|
|
|
SMESH::SMESH_subMesh_var aSubMesh;
|
|
|
|
try {
|
|
|
|
if ( !theMesh->_is_nil() && !theShapeObject->_is_nil() )
|
|
|
|
aSubMesh = theMesh->GetSubMesh( theShapeObject, theMeshName );
|
|
|
|
}
|
|
|
|
catch( const SALOME::SALOME_Exception& S_ex ) {
|
|
|
|
QtCatchCorbaException( S_ex );
|
|
|
|
}
|
|
|
|
return aSubMesh._retn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
//=================================================================================
|
|
|
|
// class : SMESHGUI_AddSubMeshDlg()
|
|
|
|
// purpose : Constructs a SMESHGUI_AddSubMeshDlg which is a child of 'parent', with the
|
|
|
|
// name 'name' and widget flags set to 'f'.
|
|
|
|
// The dialog will by default be modeless, unless you set 'modal' to
|
|
|
|
// TRUE to construct a modal dialog.
|
|
|
|
//=================================================================================
|
|
|
|
SMESHGUI_AddSubMeshDlg::SMESHGUI_AddSubMeshDlg( QWidget* parent, const char* name, SALOME_Selection* Sel, bool modal, WFlags fl )
|
2004-06-18 14:34:31 +06:00
|
|
|
: QDialog( parent, name, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu | WDestructiveClose )
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2003-05-23 17:40:45 +06:00
|
|
|
QPixmap image0(QAD_Desktop::getResourceManager()->loadPixmap( "SMESH",tr("ICON_SELECT")));
|
2003-05-19 20:07:00 +06:00
|
|
|
if ( !name )
|
|
|
|
setName( "SMESHGUI_AddSubMeshDlg" );
|
|
|
|
setCaption( tr( "SMESH_ADD_SUBMESH" ) );
|
|
|
|
setSizeGripEnabled( TRUE );
|
2004-06-18 14:34:31 +06:00
|
|
|
QGridLayout* SMESHGUI_AddSubMeshDlgLayout = new QGridLayout( this );
|
2003-05-19 20:07:00 +06:00
|
|
|
SMESHGUI_AddSubMeshDlgLayout->setSpacing( 6 );
|
|
|
|
SMESHGUI_AddSubMeshDlgLayout->setMargin( 11 );
|
|
|
|
|
|
|
|
/***************************************************************/
|
2004-06-18 14:34:31 +06:00
|
|
|
GroupC1 = new QGroupBox( tr( "SMESH_ARGUMENTS" ), this, "GroupC1" );
|
2003-05-19 20:07:00 +06:00
|
|
|
GroupC1->setColumnLayout(0, Qt::Vertical );
|
|
|
|
GroupC1->layout()->setSpacing( 0 );
|
|
|
|
GroupC1->layout()->setMargin( 0 );
|
2004-06-18 14:34:31 +06:00
|
|
|
QGridLayout* GroupC1Layout = new QGridLayout( GroupC1->layout() );
|
2003-05-19 20:07:00 +06:00
|
|
|
GroupC1Layout->setAlignment( Qt::AlignTop );
|
|
|
|
GroupC1Layout->setSpacing( 6 );
|
|
|
|
GroupC1Layout->setMargin( 11 );
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
TextLabel_NameMesh = new QLabel( tr( "SMESH_NAME" ), GroupC1, "TextLabel_NameMesh" );
|
|
|
|
GroupC1Layout->addWidget( TextLabel_NameMesh, 0, 0 );
|
|
|
|
LineEdit_NameMesh = new QLineEdit( GroupC1, "LineEdit_NameMesh" );
|
|
|
|
GroupC1Layout->addWidget( LineEdit_NameMesh, 0, 2 );
|
|
|
|
|
|
|
|
TextLabelC1A1 = new QLabel( tr( "SMESH_OBJECT_MESH" ), GroupC1, "TextLabelC1A1" );
|
|
|
|
GroupC1Layout->addWidget( TextLabelC1A1, 1, 0 );
|
2003-05-19 20:07:00 +06:00
|
|
|
SelectButtonC1A1 = new QPushButton( GroupC1, "SelectButtonC1A1" );
|
|
|
|
SelectButtonC1A1->setPixmap( image0 );
|
|
|
|
SelectButtonC1A1->setToggleButton( FALSE );
|
2004-06-18 14:34:31 +06:00
|
|
|
GroupC1Layout->addWidget( SelectButtonC1A1, 1, 1 );
|
2003-05-19 20:07:00 +06:00
|
|
|
LineEditC1A1 = new QLineEdit( GroupC1, "LineEditC1A1" );
|
2004-12-01 15:48:31 +05:00
|
|
|
LineEditC1A1->setReadOnly( true );
|
2004-06-18 14:34:31 +06:00
|
|
|
GroupC1Layout->addWidget( LineEditC1A1, 1, 2 );
|
|
|
|
|
|
|
|
TextLabelC1A2 = new QLabel( tr( "SMESH_OBJECT_GEOM" ), GroupC1, "TextLabelC1A2" );
|
|
|
|
GroupC1Layout->addWidget( TextLabelC1A2, 2, 0 );
|
2003-05-19 20:07:00 +06:00
|
|
|
SelectButtonC1A2 = new QPushButton( GroupC1, "SelectButtonC1A2" );
|
|
|
|
SelectButtonC1A2->setPixmap( image0 );
|
|
|
|
SelectButtonC1A2->setToggleButton( FALSE );
|
2004-06-18 14:34:31 +06:00
|
|
|
GroupC1Layout->addWidget( SelectButtonC1A2, 2, 1 );
|
2003-05-19 20:07:00 +06:00
|
|
|
LineEditC1A2 = new QLineEdit( GroupC1, "LineEditC1A2" );
|
2004-12-01 15:48:31 +05:00
|
|
|
LineEditC1A2->setReadOnly( true );
|
2004-06-18 14:34:31 +06:00
|
|
|
GroupC1Layout->addWidget( LineEditC1A2, 2, 2 );
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
TextLabelC1A1Hyp = new QLabel( tr( "SMESH_OBJECT_HYPOTHESIS" ), GroupC1, "TextLabelC1A1Hyp" );
|
2003-05-19 20:07:00 +06:00
|
|
|
GroupC1Layout->addWidget( TextLabelC1A1Hyp, 3, 0 );
|
|
|
|
SelectButtonC1A1Hyp = new QPushButton( GroupC1, "SelectButtonC1A1Hyp" );
|
|
|
|
SelectButtonC1A1Hyp->setPixmap( image0 );
|
|
|
|
GroupC1Layout->addWidget( SelectButtonC1A1Hyp, 3, 1 );
|
|
|
|
LineEditC1A1Hyp = new QLineEdit( GroupC1, "LineEditC1A1Hyp" );
|
2004-12-01 15:48:31 +05:00
|
|
|
LineEditC1A1Hyp->setReadOnly( true );
|
2003-05-19 20:07:00 +06:00
|
|
|
GroupC1Layout->addWidget( LineEditC1A1Hyp, 3, 2 );
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
TextLabelC1A1Algo = new QLabel( tr( "SMESH_OBJECT_ALGORITHM" ), GroupC1, "TextLabelC1A1Algo" );
|
2003-05-19 20:07:00 +06:00
|
|
|
GroupC1Layout->addWidget( TextLabelC1A1Algo, 4, 0 );
|
|
|
|
SelectButtonC1A1Algo = new QPushButton( GroupC1, "SelectButtonC1A1Algo" );
|
|
|
|
SelectButtonC1A1Algo->setPixmap( image0 );
|
|
|
|
GroupC1Layout->addWidget( SelectButtonC1A1Algo, 4, 1 );
|
|
|
|
LineEditC1A1Algo = new QLineEdit( GroupC1, "LineEditC1A1Algo" );
|
2004-12-01 15:48:31 +05:00
|
|
|
LineEditC1A1Algo->setReadOnly( true );
|
2003-05-19 20:07:00 +06:00
|
|
|
GroupC1Layout->addWidget( LineEditC1A1Algo, 4, 2 );
|
|
|
|
|
|
|
|
SMESHGUI_AddSubMeshDlgLayout->addWidget( GroupC1, 1, 0 );
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
/***************************************************************/
|
2004-06-18 14:34:31 +06:00
|
|
|
GroupButtons = new QGroupBox( this, "GroupButtons" );
|
|
|
|
GroupButtons->setColumnLayout(0, Qt::Vertical );
|
|
|
|
GroupButtons->layout()->setSpacing( 0 );
|
|
|
|
GroupButtons->layout()->setMargin( 0 );
|
|
|
|
QGridLayout* GroupButtonsLayout = new QGridLayout( GroupButtons->layout() );
|
|
|
|
GroupButtonsLayout->setAlignment( Qt::AlignTop );
|
|
|
|
GroupButtonsLayout->setSpacing( 6 );
|
|
|
|
GroupButtonsLayout->setMargin( 11 );
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
buttonOk = new QPushButton( tr( "SMESH_BUT_OK" ), GroupButtons, "buttonOk" );
|
|
|
|
buttonOk->setAutoDefault( TRUE );
|
|
|
|
buttonOk->setDefault( TRUE );
|
|
|
|
GroupButtonsLayout->addWidget( buttonOk, 0, 0 );
|
|
|
|
|
|
|
|
buttonApply = new QPushButton( tr( "SMESH_BUT_APPLY" ), GroupButtons, "buttonApply" );
|
|
|
|
buttonApply->setAutoDefault( TRUE );
|
|
|
|
GroupButtonsLayout->addWidget( buttonApply, 0, 1 );
|
|
|
|
|
|
|
|
GroupButtonsLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum ), 0, 2 );
|
|
|
|
|
|
|
|
buttonCancel = new QPushButton( tr( "SMESH_BUT_CLOSE" ), GroupButtons, "buttonCancel" );
|
|
|
|
buttonCancel->setAutoDefault( TRUE );
|
|
|
|
GroupButtonsLayout->addWidget( buttonCancel, 0, 3 );
|
|
|
|
|
|
|
|
SMESHGUI_AddSubMeshDlgLayout->addWidget( GroupButtons, 2, 0 );
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
Init( Sel ) ;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ~SMESHGUI_AddSubMeshDlg()
|
|
|
|
// purpose : Destroys the object and frees any allocated resources
|
|
|
|
//=================================================================================
|
|
|
|
SMESHGUI_AddSubMeshDlg::~SMESHGUI_AddSubMeshDlg()
|
|
|
|
{
|
|
|
|
// no need to delete child widgets, Qt does it all for us
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : Init()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::Init( SALOME_Selection* Sel )
|
|
|
|
{
|
|
|
|
mySelection = Sel;
|
|
|
|
mySMESHGUI = SMESHGUI::GetSMESHGUI() ;
|
|
|
|
mySMESHGUI->SetActiveDialogBox( (QDialog*)this ) ;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myGeomFilter = new SALOME_TypeFilter( "GEOM" );
|
|
|
|
myMeshFilter = new SMESH_TypeFilter( MESH );
|
|
|
|
myAlgorithmFilter = new SMESH_TypeFilter( ALGORITHM );
|
2003-05-19 20:07:00 +06:00
|
|
|
myHypothesisFilter = new SMESH_TypeFilter( HYPOTHESIS );
|
|
|
|
|
|
|
|
/* signals and slots connections */
|
2004-06-18 14:34:31 +06:00
|
|
|
connect( buttonOk, SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
|
|
|
|
connect( buttonApply, SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
|
2003-05-19 20:07:00 +06:00
|
|
|
connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( ClickOnCancel() ) ) ;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
connect( SelectButtonC1A1, SIGNAL (clicked() ), this, SLOT( SetEditCurrentArgument() ) ) ;
|
|
|
|
connect( SelectButtonC1A2, SIGNAL (clicked() ), this, SLOT( SetEditCurrentArgument() ) ) ;
|
|
|
|
connect( SelectButtonC1A1Hyp, SIGNAL (clicked() ), this, SLOT( SetEditCurrentArgument() ) ) ;
|
2003-05-19 20:07:00 +06:00
|
|
|
connect( SelectButtonC1A1Algo, SIGNAL (clicked() ), this, SLOT( SetEditCurrentArgument() ) ) ;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
connect( mySelection, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
|
|
|
connect( mySMESHGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) ) ;
|
|
|
|
connect( mySMESHGUI, SIGNAL( SignalCloseAllDialogs() ), this, SLOT( ClickOnCancel() ) ) ;
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
int x, y ;
|
|
|
|
mySMESHGUI->DefineDlgPosition( this, x, y ) ;
|
|
|
|
this->move( x, y ) ;
|
|
|
|
this->show() ;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
LineEdit_NameMesh->setText( tr( "SMESH_SUBMESH" ) );
|
|
|
|
LineEdit_NameMesh->setFocus() ;
|
|
|
|
myEditCurrentArgument = LineEditC1A1 ;
|
|
|
|
mySelection->ClearFilters() ;
|
|
|
|
mySelection->AddFilter( myMeshFilter ) ;
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
SelectionIntoArgument();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ClickOnOk()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::ClickOnOk()
|
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( this->ClickOnApply() )
|
|
|
|
this->ClickOnCancel() ;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ClickOnApply()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
bool SMESHGUI_AddSubMeshDlg::ClickOnApply()
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2004-12-01 15:48:31 +05:00
|
|
|
if (mySMESHGUI->ActiveStudyLocked())
|
|
|
|
return false;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
QString myNameSubMesh = LineEdit_NameMesh->text().stripWhiteSpace();
|
|
|
|
if ( myNameSubMesh.isEmpty() ) {
|
|
|
|
QAD_MessageBox::warn1( this, tr( "SMESH_WRN_WARNING" ), tr( "SMESH_WRN_EMPTY_NAME" ), tr( "SMESH_BUT_OK" ) );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( myMesh->_is_nil() || myGeomShape->_is_nil() || ( !HypoList.count() && !AlgoList.count() ) )
|
|
|
|
return false;
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SALOMEDS::SObject_var aMeshSO = SMESH::FindSObject( myMesh );
|
|
|
|
GEOM::GEOM_Object_var myMainShape = SMESH::GetShapeOnMeshOrSubMesh( aMeshSO );
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( myMainShape->_is_nil() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QAD_WaitCursor wc;
|
|
|
|
|
|
|
|
QAD_Operation* op = new QAD_Operation( mySMESHGUI->GetActiveStudy() );
|
|
|
|
|
|
|
|
// start transaction
|
|
|
|
op->start();
|
|
|
|
|
|
|
|
// create submesh
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::SMESH_subMesh_var aSubMesh = SMESH::AddSubMesh( myMesh, myGeomShape, myNameSubMesh ) ;
|
|
|
|
int nbSuccess = 0;
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
if ( !aSubMesh->_is_nil() ) {
|
|
|
|
// assign hypotheses
|
2004-12-01 15:48:31 +05:00
|
|
|
int nbAlgo = AlgoList.count();
|
|
|
|
int nbHyps = HypoList.count() + nbAlgo;
|
|
|
|
for( int i = 0; i < nbHyps; i++ ) {
|
|
|
|
SALOMEDS::SObject_var aHypSO = SMESH::GetActiveStudyDocument()->FindObjectID
|
|
|
|
( i < nbAlgo ? AlgoList[i] : HypoList[i-nbAlgo] );
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( !aHypSO->_is_nil() ) {
|
|
|
|
CORBA::Object_var anObject = aHypSO->GetObject();
|
|
|
|
if ( !CORBA::is_nil( anObject ) ) {
|
|
|
|
SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
|
|
|
|
if ( !aHyp->_is_nil() )
|
2004-12-01 15:48:31 +05:00
|
|
|
if ( SMESH::AddHypothesisOnSubMesh( aSubMesh, aHyp ) )
|
|
|
|
nbSuccess++;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
else {
|
|
|
|
SCRUTE( CORBA::is_nil( anObject ));
|
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
else {
|
|
|
|
SCRUTE( aHypSO->_is_nil() );
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
else {
|
|
|
|
SCRUTE( aSubMesh->_is_nil() );
|
|
|
|
}
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
// commit transaction
|
|
|
|
op->finish();
|
2004-12-01 15:48:31 +05:00
|
|
|
return ( nbSuccess > 0 );
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ClickOnCancel()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::ClickOnCancel()
|
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
close();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
//=======================================================================
|
|
|
|
//function : IsFatherOf
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
static bool IsFatherOf( SALOMEDS::SObject_ptr SO, SALOMEDS::SObject_ptr fatherSO ) {
|
|
|
|
if ( !SO->_is_nil() && !fatherSO->_is_nil() ) {
|
|
|
|
SALOMEDS::SObject_var aSO = SO->GetFather();
|
|
|
|
while( strlen( aSO->GetID() ) >= strlen( fatherSO->GetID() ) ) {
|
|
|
|
if ( QString( aSO->GetID() ) == QString( fatherSO->GetID() ) )
|
|
|
|
return true;
|
|
|
|
aSO = aSO->GetFather();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : SelectionIntoArgument()
|
|
|
|
// purpose : Called when selection as changed or other case
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::SelectionIntoArgument()
|
|
|
|
{
|
|
|
|
QString aString = "";
|
2004-12-01 15:48:31 +05:00
|
|
|
int nbSel = SMESH::GetNameOfSelectedIObjects(mySelection, aString) ;
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( myEditCurrentArgument == LineEditC1A1 ) {
|
|
|
|
// mesh
|
|
|
|
if ( nbSel != 1 ) {
|
|
|
|
myMesh = SMESH::SMESH_Mesh::_nil();
|
|
|
|
aString = "";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Handle(SALOME_InteractiveObject) IO = mySelection->firstIObject() ;
|
2004-12-01 15:48:31 +05:00
|
|
|
myMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO) ;
|
|
|
|
if( myMesh->_is_nil() ) {
|
2004-06-18 14:34:31 +06:00
|
|
|
aString = "";
|
|
|
|
}
|
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
myGeomShape = GEOM::GEOM_Object::_nil();
|
2004-06-18 14:34:31 +06:00
|
|
|
LineEditC1A2->setText( "" );
|
|
|
|
}
|
|
|
|
else if ( myEditCurrentArgument == LineEditC1A2 ) {
|
|
|
|
// geom shape
|
|
|
|
if ( nbSel != 1 ) {
|
2004-12-01 15:48:31 +05:00
|
|
|
myGeomShape = GEOM::GEOM_Object::_nil();
|
2004-06-18 14:34:31 +06:00
|
|
|
aString = "";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Handle(SALOME_InteractiveObject) IO = mySelection->firstIObject() ;
|
2004-12-01 15:48:31 +05:00
|
|
|
myGeomShape = SMESH::IObjectToInterface<GEOM::GEOM_Object>(IO) ;
|
|
|
|
if( myGeomShape->_is_nil() || !GEOMBase::IsShape( myGeomShape ) )
|
|
|
|
{
|
|
|
|
myGeomShape = GEOM::GEOM_Object::_nil();
|
|
|
|
aString = "";
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( !myMesh->_is_nil() ) {
|
2004-12-01 15:48:31 +05:00
|
|
|
SALOMEDS::SObject_var aMeshSO = SMESH::FindSObject( myMesh );
|
|
|
|
GEOM::GEOM_Object_var aMainGeomShape = SMESH::GetShapeOnMeshOrSubMesh( aMeshSO );
|
|
|
|
SALOMEDS::SObject_var aMainGeomShapeSO = SMESH::FindSObject( aMainGeomShape );
|
|
|
|
if ( aMainGeomShapeSO->_is_nil() || !IsFatherOf( SMESH::GetActiveStudyDocument()->FindObjectID( IO->getEntry() ), aMainGeomShapeSO ) ) {
|
|
|
|
myGeomShape = GEOM::GEOM_Object::_nil();
|
2004-06-18 14:34:31 +06:00
|
|
|
aString = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( myEditCurrentArgument == LineEditC1A1Hyp ) {
|
|
|
|
// hypotheses
|
|
|
|
HypoList.clear();
|
|
|
|
if ( nbSel >= 1 ) {
|
|
|
|
SALOME_ListIteratorOfListIO Itinit( mySelection->StoredIObjects() );
|
|
|
|
for ( ; Itinit.More(); Itinit.Next() ) {
|
|
|
|
HypoList.append( Itinit.Value()->getEntry() );
|
|
|
|
}
|
|
|
|
if ( nbSel > 1 )
|
|
|
|
aString = tr( "%1 Hypothesis" ).arg( nbSel ) ;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aString = "";
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
else if ( myEditCurrentArgument == LineEditC1A1Algo ) {
|
|
|
|
// algorithms
|
|
|
|
AlgoList.clear();
|
|
|
|
if ( nbSel >= 1 ) {
|
|
|
|
SALOME_ListIteratorOfListIO Itinit( mySelection->StoredIObjects() );
|
|
|
|
for ( ; Itinit.More(); Itinit.Next() ) {
|
|
|
|
AlgoList.append( Itinit.Value()->getEntry() );
|
|
|
|
}
|
|
|
|
if ( nbSel > 1 )
|
|
|
|
aString = tr( "%1 Algorithms" ).arg( nbSel ) ;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aString = "";
|
|
|
|
}
|
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
myEditCurrentArgument->setText(aString) ;
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
UpdateControlState();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : SetEditCurrentArgument()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::SetEditCurrentArgument()
|
|
|
|
{
|
|
|
|
QPushButton* send = (QPushButton*)sender();
|
2004-06-18 14:34:31 +06:00
|
|
|
if(send == SelectButtonC1A1) {
|
|
|
|
LineEditC1A1->setFocus() ;
|
|
|
|
myEditCurrentArgument = LineEditC1A1;
|
|
|
|
mySelection->ClearFilters() ;
|
|
|
|
mySelection->AddFilter(myMeshFilter) ;
|
|
|
|
} else if (send == SelectButtonC1A2) {
|
|
|
|
LineEditC1A2->setFocus() ;
|
|
|
|
myEditCurrentArgument = LineEditC1A2;
|
|
|
|
mySelection->ClearFilters() ;
|
|
|
|
mySelection->AddFilter(myGeomFilter) ;
|
|
|
|
} else if( send == SelectButtonC1A1Hyp ) {
|
|
|
|
LineEditC1A1Hyp->setFocus() ;
|
|
|
|
myEditCurrentArgument = LineEditC1A1Hyp ;
|
|
|
|
mySelection->ClearFilters() ;
|
|
|
|
mySelection->AddFilter(myHypothesisFilter) ;
|
|
|
|
} else if( send == SelectButtonC1A1Algo ) {
|
|
|
|
LineEditC1A1Algo->setFocus() ;
|
|
|
|
myEditCurrentArgument = LineEditC1A1Algo ;
|
|
|
|
mySelection->ClearFilters() ;
|
|
|
|
mySelection->AddFilter(myAlgorithmFilter) ;
|
|
|
|
}
|
|
|
|
SelectionIntoArgument() ;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : DeactivateActiveDialog()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::DeactivateActiveDialog()
|
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( GroupC1->isEnabled() ) {
|
2003-05-19 20:07:00 +06:00
|
|
|
disconnect( mySelection, 0, this, 0 );
|
|
|
|
GroupC1->setEnabled(false) ;
|
|
|
|
GroupButtons->setEnabled(false) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ActivateThisDialog()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::ActivateThisDialog()
|
|
|
|
{
|
|
|
|
mySMESHGUI->EmitSignalDeactivateDialog() ;
|
|
|
|
GroupC1->setEnabled(true) ;
|
|
|
|
GroupButtons->setEnabled(true) ;
|
|
|
|
connect ( mySelection, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : enterEvent()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::enterEvent(QEvent* e)
|
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( !GroupC1->isEnabled() )
|
|
|
|
ActivateThisDialog() ;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : closeEvent()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_AddSubMeshDlg::closeEvent( QCloseEvent* e )
|
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
disconnect( mySelection, 0, this, 0 );
|
|
|
|
mySMESHGUI->ResetState() ;
|
|
|
|
mySelection->ClearFilters() ;
|
|
|
|
QDialog::closeEvent( e );
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
// function : UpdateControlState()
|
2003-05-19 20:07:00 +06:00
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
void SMESHGUI_AddSubMeshDlg::UpdateControlState()
|
|
|
|
{
|
|
|
|
bool isEnabled = ( !myMesh->_is_nil() && !myGeomShape->_is_nil() && ( HypoList.count() || AlgoList.count() ) );
|
|
|
|
bool isImportedMesh = false;
|
|
|
|
if ( !myMesh->_is_nil() ) {
|
2004-12-01 15:48:31 +05:00
|
|
|
SALOMEDS::SObject_var aMeshSO = SMESH::FindSObject( myMesh );
|
|
|
|
GEOM::GEOM_Object_var myGeomShape = SMESH::GetShapeOnMeshOrSubMesh( aMeshSO );
|
2004-06-18 14:34:31 +06:00
|
|
|
isImportedMesh = myGeomShape->_is_nil();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
buttonOk ->setEnabled( isEnabled && !isImportedMesh );
|
|
|
|
buttonApply->setEnabled( isEnabled && !isImportedMesh );
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|