2003-07-10 19:18:22 +06:00
|
|
|
// SMESH SMESHGUI : GUI for SMESH component
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
2005-06-07 19:22:20 +06:00
|
|
|
// 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
|
2003-07-10 19:18:22 +06:00
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : SMESHGUI_InitMeshDlg.cxx
|
|
|
|
// Author : Nicolas REJNERI
|
|
|
|
// Module : SMESH
|
2003-05-19 20:07:00 +06:00
|
|
|
// $Header$
|
|
|
|
|
|
|
|
#include "SMESHGUI_InitMeshDlg.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_HypothesesUtils.h"
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESH_TypeFilter.hxx"
|
|
|
|
#include "SMESH_NumberFilter.hxx"
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "GEOMBase.h"
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SUIT_Session.h"
|
|
|
|
#include "SUIT_MessageBox.h"
|
|
|
|
#include "SUIT_OverrideCursor.h"
|
|
|
|
#include "SUIT_Operation.h"
|
|
|
|
#include "SUIT_Desktop.h"
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SALOMEDSClient_Study.hxx"
|
|
|
|
#include "SALOMEDS_SObject.hxx"
|
|
|
|
#include "SALOME_ListIO.hxx"
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "SALOME_ListIteratorOfListIO.hxx"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SalomeApp_Tools.h"
|
|
|
|
|
|
|
|
#include "SVTK_ViewModel.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
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;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
namespace SMESH {
|
|
|
|
SMESH::SMESH_Mesh_var InitMesh (GEOM::GEOM_Object_ptr theShapeObject,
|
|
|
|
const char* theMeshName)
|
2004-12-01 15:48:31 +05:00
|
|
|
{
|
|
|
|
SMESH::SMESH_Mesh_var aMesh;
|
|
|
|
try {
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
|
|
|
|
if (!aSMESHGen->_is_nil() && !theShapeObject->_is_nil()) {
|
|
|
|
aMesh = aSMESHGen->CreateMesh(theShapeObject);
|
|
|
|
if (!aMesh->_is_nil()) {
|
|
|
|
_PTR(SObject) aMeshSObject = SMESH::FindSObject(aMesh.in());
|
|
|
|
SMESH::SetName(aMeshSObject, theMeshName);
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
catch (const SALOME::SALOME_Exception& S_ex) {
|
|
|
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
|
|
|
return aMesh._retn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
//=================================================================================
|
|
|
|
// class : SMESHGUI_InitMeshDlg()
|
2005-06-07 19:22:20 +06:00
|
|
|
// purpose : Constructs a SMESHGUI_InitMeshDlg which is a child of 'parent', with the
|
2003-05-19 20:07:00 +06:00
|
|
|
// 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.
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESHGUI_InitMeshDlg::SMESHGUI_InitMeshDlg (SMESHGUI* theModule, const char* name,
|
|
|
|
bool modal, WFlags fl)
|
|
|
|
: QDialog( SMESH::GetDesktop( theModule ), name, modal, WStyle_Customize | WStyle_NormalBorder |
|
|
|
|
WStyle_Title | WStyle_SysMenu | WDestructiveClose),
|
|
|
|
mySMESHGUI( theModule ),
|
|
|
|
mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2005-06-08 16:45:19 +06:00
|
|
|
QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!name)
|
|
|
|
setName("SMESHGUI_InitMeshDlg");
|
|
|
|
|
|
|
|
setCaption(tr("SMESH_INIT_MESH"));
|
|
|
|
setSizeGripEnabled(TRUE);
|
|
|
|
QGridLayout* SMESHGUI_InitMeshDlgLayout = new QGridLayout (this);
|
|
|
|
SMESHGUI_InitMeshDlgLayout->setSpacing(6);
|
|
|
|
SMESHGUI_InitMeshDlgLayout->setMargin(11);
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
/***************************************************************/
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupC1 = new QGroupBox(tr("SMESH_ARGUMENTS"), this, "GroupC1");
|
|
|
|
GroupC1->setColumnLayout(0, Qt::Vertical);
|
|
|
|
GroupC1->layout()->setSpacing(0);
|
|
|
|
GroupC1->layout()->setMargin(0);
|
|
|
|
QGridLayout* GroupC1Layout = new QGridLayout(GroupC1->layout());
|
|
|
|
GroupC1Layout->setAlignment(Qt::AlignTop);
|
|
|
|
GroupC1Layout->setSpacing(6);
|
|
|
|
GroupC1Layout->setMargin(11);
|
|
|
|
|
|
|
|
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_GEOM"), GroupC1, "TextLabelC1A1");
|
|
|
|
GroupC1Layout->addWidget(TextLabelC1A1, 1, 0);
|
|
|
|
SelectButtonC1A1 = new QPushButton(GroupC1, "SelectButtonC1A1");
|
|
|
|
SelectButtonC1A1->setPixmap(image0);
|
|
|
|
SelectButtonC1A1->setToggleButton(FALSE);
|
|
|
|
GroupC1Layout->addWidget(SelectButtonC1A1, 1, 1);
|
|
|
|
LineEditC1A1 = new QLineEdit(GroupC1, "LineEditC1A1");
|
|
|
|
LineEditC1A1->setReadOnly(true);
|
|
|
|
GroupC1Layout->addWidget(LineEditC1A1, 1, 2);
|
|
|
|
|
|
|
|
TextLabelC1A1Hyp = new QLabel(tr("SMESH_OBJECT_HYPOTHESIS"), GroupC1, "TextLabelC1A1Hyp");
|
|
|
|
GroupC1Layout->addWidget(TextLabelC1A1Hyp, 2, 0);
|
|
|
|
SelectButtonC1A1Hyp = new QPushButton(GroupC1, "SelectButtonC1A1Hyp");
|
|
|
|
SelectButtonC1A1Hyp->setPixmap(image0);
|
|
|
|
GroupC1Layout->addWidget(SelectButtonC1A1Hyp, 2, 1);
|
|
|
|
LineEditC1A1Hyp = new QLineEdit(GroupC1, "LineEditC1A1Hyp");
|
|
|
|
LineEditC1A1Hyp->setReadOnly(true);
|
|
|
|
GroupC1Layout->addWidget(LineEditC1A1Hyp, 2, 2);
|
|
|
|
|
|
|
|
TextLabelC1A1Algo = new QLabel(tr("SMESH_OBJECT_ALGORITHM"), GroupC1, "TextLabelC1A1Algo");
|
|
|
|
GroupC1Layout->addWidget(TextLabelC1A1Algo, 3, 0);
|
|
|
|
SelectButtonC1A1Algo = new QPushButton(GroupC1, "SelectButtonC1A1Algo");
|
|
|
|
SelectButtonC1A1Algo->setPixmap(image0);
|
|
|
|
GroupC1Layout->addWidget(SelectButtonC1A1Algo, 3, 1);
|
|
|
|
LineEditC1A1Algo = new QLineEdit(GroupC1, "LineEditC1A1Algo");
|
|
|
|
LineEditC1A1Algo->setReadOnly(true);
|
|
|
|
GroupC1Layout->addWidget(LineEditC1A1Algo, 3, 2);
|
|
|
|
|
|
|
|
SMESHGUI_InitMeshDlgLayout->addWidget(GroupC1, 1, 0);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
/***************************************************************/
|
2005-06-07 19:22:20 +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);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
buttonOk = new QPushButton(tr("SMESH_BUT_OK"), GroupButtons, "buttonOk");
|
|
|
|
buttonOk->setAutoDefault(TRUE);
|
|
|
|
buttonOk->setDefault(TRUE);
|
|
|
|
GroupButtonsLayout->addWidget(buttonOk, 0, 0);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons, "buttonApply");
|
|
|
|
buttonApply->setAutoDefault(TRUE);
|
|
|
|
GroupButtonsLayout->addWidget(buttonApply, 0, 1);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupButtonsLayout->addItem(new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum), 0, 2);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons, "buttonCancel");
|
|
|
|
buttonCancel->setAutoDefault(TRUE);
|
|
|
|
GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESHGUI_InitMeshDlgLayout->addWidget(GroupButtons, 2, 0);
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
/***************************************************************/
|
2005-06-07 19:22:20 +06:00
|
|
|
Init();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ~SMESHGUI_InitMeshDlg()
|
|
|
|
// purpose : Destroys the object and frees any allocated resources
|
|
|
|
//=================================================================================
|
|
|
|
SMESHGUI_InitMeshDlg::~SMESHGUI_InitMeshDlg()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
// no need to delete child widgets, Qt does it all for us
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : Init()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_InitMeshDlg::Init ()
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
mySMESHGUI->SetActiveDialogBox((QDialog*)this);
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
//myGeomFilter = new SALOME_TypeFilter("GEOM");
|
|
|
|
TColStd_MapOfInteger allTypesMap;
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
|
|
allTypesMap.Add(i);
|
|
|
|
myGeomFilter = new SMESH_NumberFilter ("GEOM", TopAbs_SHAPE, 0, allTypesMap);
|
|
|
|
myAlgorithmFilter = new SMESH_TypeFilter (ALGORITHM);
|
|
|
|
myHypothesisFilter = new SMESH_TypeFilter (HYPOTHESIS);
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
/* signals and slots connections */
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
|
|
|
|
connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
|
|
|
|
connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
|
|
|
|
|
|
|
|
connect(SelectButtonC1A1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
connect(SelectButtonC1A1Hyp, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
connect(SelectButtonC1A1Algo, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
|
|
|
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
|
|
|
|
|
|
|
|
int x, y;
|
|
|
|
mySMESHGUI->DefineDlgPosition(this, x, y);
|
|
|
|
this->move(x, y);
|
|
|
|
this->show();
|
|
|
|
|
|
|
|
LineEdit_NameMesh->setText(GetDefaultMeshName());
|
|
|
|
LineEdit_NameMesh->setFocus();
|
|
|
|
myEditCurrentArgument = LineEditC1A1;
|
|
|
|
mySelectionMgr->clearFilters();
|
|
|
|
mySelectionMgr->installFilter(myGeomFilter);
|
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
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
UpdateControlState();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ClickOnOk()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_InitMeshDlg::ClickOnOk()
|
|
|
|
{
|
2005-06-07 19:22:20 +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_InitMeshDlg::ClickOnApply()
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (mySMESHGUI->isActiveStudyLocked())
|
2004-12-01 15:48:31 +05:00
|
|
|
return false;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
QString myNameMesh = LineEdit_NameMesh->text().stripWhiteSpace();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myNameMesh.isEmpty()) {
|
|
|
|
SUIT_MessageBox::warn1(this, tr("SMESH_WRN_WARNING"),
|
|
|
|
tr("SMESH_WRN_EMPTY_NAME"), tr("SMESH_BUT_OK"));
|
2004-06-18 14:34:31 +06:00
|
|
|
return false;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (myGeomShape->_is_nil() || !HypoList.count() || !AlgoList.count())
|
2004-06-18 14:34:31 +06:00
|
|
|
return false;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_OverrideCursor wc;
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_Operation* op =
|
|
|
|
new SUIT_Operation (SUIT_Session::session()->activeApplication());
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
// start transaction
|
|
|
|
op->start();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
// create mesh
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SMESH_Mesh_var aMesh = SMESH::InitMesh(myGeomShape, myNameMesh);
|
|
|
|
|
|
|
|
if (!aMesh->_is_nil()) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// assign hypotheses
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0; i < HypoList.count(); i++) {
|
|
|
|
_PTR(SObject) aHypSOClient =
|
|
|
|
SMESH::GetActiveStudyDocument()->FindObjectID(HypoList[i].latin1());
|
|
|
|
if (aHypSOClient) {
|
|
|
|
CORBA::Object_var anObject = _CAST(SObject,aHypSOClient)->GetObject();
|
|
|
|
if (!CORBA::is_nil(anObject)) {
|
|
|
|
SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow(anObject);
|
|
|
|
if (!aHyp->_is_nil()) {
|
|
|
|
if (!SMESH::AddHypothesisOnMesh(aMesh, aHyp)) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// abort transaction
|
|
|
|
op->abort();
|
|
|
|
return false;
|
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// assign algorithms
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0; i < AlgoList.count(); i++) {
|
|
|
|
_PTR(SObject) aHypSOClient =
|
|
|
|
SMESH::GetActiveStudyDocument()->FindObjectID(AlgoList[i].latin1());
|
|
|
|
if (aHypSOClient) {
|
|
|
|
CORBA::Object_var anObject = _CAST(SObject,aHypSOClient)->GetObject();
|
|
|
|
if (!CORBA::is_nil(anObject)) {
|
|
|
|
SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow(anObject);
|
|
|
|
if (!aHyp->_is_nil()) {
|
|
|
|
if (!SMESH::AddHypothesisOnMesh(aMesh, aHyp)) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// abort transaction
|
|
|
|
op->abort();
|
|
|
|
return false;
|
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
// commit transaction
|
2005-06-07 19:22:20 +06:00
|
|
|
op->commit();
|
|
|
|
mySMESHGUI->updateObjBrowser();
|
|
|
|
LineEdit_NameMesh->setText(GetDefaultMeshName());
|
2004-06-18 14:34:31 +06:00
|
|
|
return true;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ClickOnCancel()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_InitMeshDlg::ClickOnCancel()
|
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
close();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : SelectionIntoArgument()
|
|
|
|
// purpose : Called when selection as changed or other case
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_InitMeshDlg::SelectionIntoArgument()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
QString aString = "";
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SALOME_ListIO aList;
|
|
|
|
mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
int nbSel = SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
|
|
|
|
|
|
|
|
if (myEditCurrentArgument == LineEditC1A1) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// geom shape
|
2005-06-07 19:22:20 +06:00
|
|
|
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 = "";
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
|
|
|
Handle(SALOME_InteractiveObject) IO = aList.First();
|
|
|
|
myGeomShape = SMESH::IObjectToInterface<GEOM::GEOM_Object>(IO);
|
|
|
|
if (myGeomShape->_is_nil() || !GEOMBase::IsShape(myGeomShape)) {
|
2004-12-01 15:48:31 +05:00
|
|
|
myGeomShape = GEOM::GEOM_Object::_nil();
|
|
|
|
aString = "";
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else if (myEditCurrentArgument == LineEditC1A1Hyp) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// hypotheses
|
|
|
|
HypoList.clear();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (nbSel >= 1) {
|
|
|
|
SALOME_ListIteratorOfListIO Itinit (aList);
|
|
|
|
for (; Itinit.More(); Itinit.Next()) {
|
|
|
|
HypoList.append(Itinit.Value()->getEntry());
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
if (nbSel > 1)
|
|
|
|
aString = tr("%1 Hypothesis").arg(nbSel);
|
|
|
|
} else {
|
2004-06-18 14:34:31 +06:00
|
|
|
aString = "";
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else if (myEditCurrentArgument == LineEditC1A1Algo) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// algorithms
|
2005-06-07 19:22:20 +06:00
|
|
|
AlgoList.clear();
|
|
|
|
if (nbSel >= 1) {
|
|
|
|
SALOME_ListIteratorOfListIO Itinit (aList);
|
|
|
|
for (; Itinit.More(); Itinit.Next()) {
|
|
|
|
AlgoList.append(Itinit.Value()->getEntry());
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
if (nbSel > 1)
|
|
|
|
aString = tr("%1 Algorithms").arg(nbSel);
|
|
|
|
} else {
|
2004-06-18 14:34:31 +06:00
|
|
|
aString = "";
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +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_InitMeshDlg::SetEditCurrentArgument()
|
|
|
|
{
|
|
|
|
QPushButton* send = (QPushButton*)sender();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (send == SelectButtonC1A1) {
|
|
|
|
LineEditC1A1->setFocus();
|
2004-06-18 14:34:31 +06:00
|
|
|
myEditCurrentArgument = LineEditC1A1;
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->clearFilters();
|
|
|
|
mySelectionMgr->installFilter(myGeomFilter);
|
|
|
|
} else if (send == SelectButtonC1A1Hyp) {
|
|
|
|
LineEditC1A1Hyp->setFocus();
|
|
|
|
myEditCurrentArgument = LineEditC1A1Hyp;
|
|
|
|
mySelectionMgr->clearFilters();
|
|
|
|
mySelectionMgr->installFilter(myHypothesisFilter);
|
|
|
|
} else if (send == SelectButtonC1A1Algo) {
|
|
|
|
LineEditC1A1Algo->setFocus();
|
|
|
|
myEditCurrentArgument = LineEditC1A1Algo;
|
|
|
|
mySelectionMgr->clearFilters();
|
|
|
|
mySelectionMgr->installFilter(myAlgorithmFilter);
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
SelectionIntoArgument();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : DeactivateActiveDialog()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_InitMeshDlg::DeactivateActiveDialog()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (GroupC1->isEnabled()) {
|
|
|
|
disconnect(mySelectionMgr, 0, this, 0);
|
|
|
|
GroupC1->setEnabled(false);
|
|
|
|
GroupButtons->setEnabled(false);
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ActivateThisDialog()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_InitMeshDlg::ActivateThisDialog()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
mySMESHGUI->EmitSignalDeactivateDialog();
|
|
|
|
GroupC1->setEnabled(true);
|
|
|
|
GroupButtons->setEnabled(true);
|
|
|
|
connect (mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : enterEvent()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_InitMeshDlg::enterEvent (QEvent* e)
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!GroupC1->isEnabled())
|
|
|
|
ActivateThisDialog();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : closeEvent()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_InitMeshDlg::closeEvent (QCloseEvent* e)
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
disconnect(mySelectionMgr, 0, this, 0);
|
|
|
|
mySMESHGUI->ResetState();
|
|
|
|
mySelectionMgr->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_InitMeshDlg::UpdateControlState()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
bool isEnabled = (!myGeomShape->_is_nil() && HypoList.count() && AlgoList.count());
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
buttonOk ->setEnabled(isEnabled);
|
|
|
|
buttonApply->setEnabled(isEnabled);
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
//=================================================================================
|
|
|
|
// function : GetDefaultMeshName()
|
|
|
|
// purpose : Generates default mesh name(Mesh_1, Mesh_2, etc.)
|
|
|
|
//=================================================================================
|
|
|
|
QString SMESHGUI_InitMeshDlg::GetDefaultMeshName()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
_PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
|
2004-12-01 15:48:31 +05:00
|
|
|
int aNumber = 0;
|
|
|
|
QString aMeshName;
|
2005-06-07 19:22:20 +06:00
|
|
|
_PTR(SObject) obj;
|
|
|
|
|
|
|
|
do {
|
|
|
|
aMeshName = QString(tr("SMESH_OBJECT_MESH")) + "_" + QString::number(++aNumber);
|
|
|
|
obj = aStudy->FindObject(aMeshName.latin1());
|
|
|
|
} while (obj);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
return aMeshName;
|
|
|
|
}
|