2005-01-20 11:25:54 +05: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
|
2005-01-20 11:25:54 +05:00
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : SMESHGUI_MeshPatternDlg.cxx
|
|
|
|
// Author : Sergey LITONIN
|
|
|
|
// Module : SMESH
|
|
|
|
|
|
|
|
#include "SMESHGUI_MeshPatternDlg.h"
|
|
|
|
|
|
|
|
#include "SMESHGUI.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESHGUI_SpinBox.h"
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMESHGUI_CreatePatternDlg.h"
|
|
|
|
#include "SMESHGUI_PatternWidget.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESHGUI_Utils.h"
|
|
|
|
#include "SMESHGUI_VTKUtils.h"
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMESHGUI_PatternUtils.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESHGUI_GEOMGenUtils.h"
|
|
|
|
|
|
|
|
#include "SMESH_Actor.h"
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMESH_ActorUtils.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESH_NumberFilter.hxx"
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMDS_Mesh.hxx"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMDS_MeshElement.hxx"
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SUIT_ResourceMgr.h"
|
|
|
|
#include "SUIT_Desktop.h"
|
|
|
|
#include "SUIT_FileDlg.h"
|
2005-01-20 19:45:00 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SalomeApp_SelectionMgr.h"
|
|
|
|
#include "SalomeApp_Tools.h"
|
|
|
|
#include "SalomeApp_Study.h"
|
|
|
|
|
|
|
|
#include "SALOMEDS_SObject.hxx"
|
|
|
|
|
|
|
|
#include "SALOME_ListIO.hxx"
|
|
|
|
#include "SVTK_Selection.h"
|
|
|
|
|
|
|
|
#include "SVTK_ViewModel.h"
|
|
|
|
#include "SVTK_Selector.h"
|
|
|
|
#include "SVTK_ViewWindow.h"
|
|
|
|
|
|
|
|
// OCCT Includes
|
2005-01-20 11:25:54 +05:00
|
|
|
#include <TColStd_MapOfInteger.hxx>
|
2005-06-07 19:22:20 +06:00
|
|
|
#include <TColStd_IndexedMapOfInteger.hxx>
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
// QT Includes
|
2005-01-20 11:25:54 +05:00
|
|
|
#include <qframe.h>
|
|
|
|
#include <qlayout.h>
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qgroupbox.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qradiobutton.h>
|
|
|
|
#include <qcheckbox.h>
|
|
|
|
#include <qbuttongroup.h>
|
|
|
|
#include <qmessagebox.h>
|
|
|
|
#include <qcstring.h>
|
|
|
|
#include <qspinbox.h>
|
|
|
|
#include <qvaluelist.h>
|
2005-06-07 19:22:20 +06:00
|
|
|
#include <qdir.h>
|
|
|
|
#include <qfile.h>
|
|
|
|
#include <qfileinfo.h>
|
|
|
|
#include <qfiledialog.h>
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
// VTK Includes
|
2005-01-20 11:25:54 +05:00
|
|
|
#include <vtkCell.h>
|
|
|
|
#include <vtkIdList.h>
|
|
|
|
#include <vtkIntArray.h>
|
|
|
|
#include <vtkCellArray.h>
|
|
|
|
#include <vtkUnsignedCharArray.h>
|
|
|
|
#include <vtkUnstructuredGrid.h>
|
|
|
|
#include <vtkDataSetMapper.h>
|
|
|
|
|
|
|
|
#define SPACING 5
|
|
|
|
#define MARGIN 10
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
/*!
|
|
|
|
* Class : SMESHGUI_MeshPatternDlg
|
|
|
|
* Description : Dialog to specify filters for VTK viewer
|
|
|
|
*/
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::SMESHGUI_MeshPatternDlg
|
|
|
|
// Purpose : Constructor
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESHGUI_MeshPatternDlg::SMESHGUI_MeshPatternDlg( SMESHGUI* theModule,
|
|
|
|
const char* theName )
|
|
|
|
: QDialog( SMESH::GetDesktop( theModule ), theName, false, WStyle_Customize |
|
|
|
|
WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu),
|
|
|
|
myBusy(false),
|
|
|
|
mySMESHGUI( theModule ),
|
|
|
|
mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
|
|
|
|
myViewWindow( SMESH::GetViewWindow( theModule ) ),
|
|
|
|
mySelector( myViewWindow->GetSelector() )
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
setCaption(tr("CAPTION"));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
QVBoxLayout* aDlgLay = new QVBoxLayout(this, MARGIN, SPACING);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
QFrame* aMainFrame = createMainFrame (this);
|
|
|
|
QFrame* aBtnFrame = createButtonFrame(this);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
aDlgLay->addWidget(aMainFrame);
|
|
|
|
aDlgLay->addWidget(aBtnFrame);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
aDlgLay->setStretchFactor(aMainFrame, 1);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
myCreationDlg = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
Init();
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::createMainFrame
|
|
|
|
// Purpose : Create frame containing dialog's input fields
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
QFrame* SMESHGUI_MeshPatternDlg::createMainFrame (QWidget* theParent)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-08 16:45:19 +06:00
|
|
|
SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
|
|
|
|
QPixmap iconSlct ( mgr->loadPixmap("SMESH", tr("ICON_SELECT")));
|
|
|
|
QPixmap icon2d ( mgr->loadPixmap("SMESH", tr("ICON_PATTERN_2d")));
|
|
|
|
QPixmap icon3d ( mgr->loadPixmap("SMESH", tr("ICON_PATTERN_3d")));
|
2005-06-15 10:04:59 +06:00
|
|
|
QPixmap iconOpen ( mgr->loadPixmap("STD", tr("ICON_FILE_OPEN")));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-08 16:45:19 +06:00
|
|
|
QPixmap iconSample2d ( mgr->loadPixmap("SMESH", tr("ICON_PATTERN_SAMPLE_2D")));
|
|
|
|
QPixmap iconSample3d ( mgr->loadPixmap("SMESH", tr("ICON_PATTERN_SAMPLE_3D")));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
QGroupBox* aMainGrp = new QGroupBox (1, Qt::Horizontal, theParent);
|
|
|
|
aMainGrp->setFrameStyle(QFrame::NoFrame);
|
|
|
|
aMainGrp->setInsideMargin(0);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Pattern type group
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myTypeGrp = new QButtonGroup (1, Qt::Vertical, tr("PATTERN_TYPE"), aMainGrp);
|
|
|
|
mySwitch2d = new QRadioButton (myTypeGrp);
|
|
|
|
mySwitch3d = new QRadioButton (myTypeGrp);
|
|
|
|
mySwitch2d->setPixmap(icon2d);
|
|
|
|
mySwitch3d->setPixmap(icon3d);
|
|
|
|
myTypeGrp->insert(mySwitch2d, Type_2d);
|
|
|
|
myTypeGrp->insert(mySwitch3d, Type_3d);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Mesh group
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
QGroupBox* aMeshGrp = new QGroupBox(1, Qt::Vertical, tr("SMESH_MESH"), aMainGrp);
|
|
|
|
new QLabel(tr("SMESH_MESH"), aMeshGrp);
|
|
|
|
mySelBtn[ Mesh ] = new QPushButton(aMeshGrp);
|
|
|
|
mySelBtn[ Mesh ]->setPixmap(iconSlct);
|
|
|
|
mySelEdit[ Mesh ] = new QLineEdit(aMeshGrp);
|
|
|
|
mySelEdit[ Mesh ]->setReadOnly(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Pattern group
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
QGroupBox* aPatGrp = new QGroupBox(1, Qt::Horizontal, tr("PATTERN"), aMainGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// pattern name
|
2005-06-07 19:22:20 +06:00
|
|
|
QGroupBox* aNameGrp = new QGroupBox(1, Qt::Vertical, aPatGrp);
|
|
|
|
aNameGrp->setFrameStyle(QFrame::NoFrame);
|
|
|
|
aNameGrp->setInsideMargin(0);
|
|
|
|
new QLabel(tr("PATTERN"), aNameGrp);
|
|
|
|
myName = new QLineEdit(aNameGrp);
|
|
|
|
myName->setReadOnly(true);
|
|
|
|
myOpenBtn = new QPushButton(aNameGrp);
|
|
|
|
myOpenBtn->setPixmap(iconOpen);
|
|
|
|
myNewBtn = new QPushButton(tr("NEW"), aNameGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Mode selection check box
|
2005-06-07 19:22:20 +06:00
|
|
|
myRefine = new QCheckBox(tr("REFINE"), aPatGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// selection widgets for Apply to geom mode
|
2005-06-07 19:22:20 +06:00
|
|
|
myGeomGrp = new QGroupBox(3, Qt::Horizontal, aPatGrp);
|
|
|
|
myGeomGrp->setFrameStyle(QFrame::NoFrame);
|
|
|
|
myGeomGrp->setInsideMargin(0);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = Object; i <= Vertex2; i++)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelLbl[ i ] = new QLabel(myGeomGrp);
|
|
|
|
mySelBtn[ i ] = new QPushButton(myGeomGrp);
|
|
|
|
mySelBtn[ i ]->setPixmap(iconSlct);
|
|
|
|
mySelEdit[ i ] = new QLineEdit(myGeomGrp);
|
|
|
|
mySelEdit[ i ]->setReadOnly(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Widgets for refinement of existing mesh elements
|
2005-06-07 19:22:20 +06:00
|
|
|
myRefineGrp = new QFrame(aPatGrp);
|
|
|
|
myRefineGrp->setFrameStyle(QFrame::NoFrame);
|
|
|
|
QGridLayout* aRefGrid = new QGridLayout(myRefineGrp, 3, 3, 0, 5);
|
|
|
|
|
|
|
|
mySelLbl[ Ids ] = new QLabel(myRefineGrp);
|
|
|
|
mySelBtn[ Ids ] = new QPushButton(myRefineGrp);
|
|
|
|
mySelBtn[ Ids ]->setPixmap(iconSlct);
|
|
|
|
mySelEdit[ Ids ] = new QLineEdit(myRefineGrp);
|
|
|
|
|
|
|
|
QLabel* aNodeLbl = new QLabel(tr("NODE_1"), myRefineGrp);
|
|
|
|
myNode1 = new QSpinBox(myRefineGrp);
|
|
|
|
myNode2Lbl = new QLabel(tr("NODE_2"), myRefineGrp);
|
|
|
|
myNode2 = new QSpinBox(myRefineGrp);
|
|
|
|
|
|
|
|
aRefGrid->addWidget(mySelLbl [ Ids ], 0, 0);
|
|
|
|
aRefGrid->addWidget(mySelBtn [ Ids ], 0, 1);
|
|
|
|
aRefGrid->addWidget(mySelEdit[ Ids ], 0, 2);
|
|
|
|
aRefGrid->addWidget(aNodeLbl, 1, 0);
|
|
|
|
aRefGrid->addMultiCellWidget(myNode1, 1, 1, 1, 2);
|
|
|
|
aRefGrid->addWidget(myNode2Lbl, 2, 0);
|
|
|
|
aRefGrid->addMultiCellWidget(myNode2, 2, 2, 1, 2);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// reverse check box
|
2005-06-07 19:22:20 +06:00
|
|
|
myReverseChk = new QCheckBox(tr("REVERSE"), aPatGrp);
|
|
|
|
|
|
|
|
// CreatePoly check box
|
|
|
|
myCreatePolygonsChk = new QCheckBox( tr( "CREATE_POLYGONS_NEAR_BOUNDARY" ), aPatGrp );
|
|
|
|
myCreatePolyedrsChk = new QCheckBox( tr( "CREATE_POLYEDRS_NEAR_BOUNDARY" ), aPatGrp );
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Pictures 2d and 3d
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
myPicture2d = new SMESHGUI_PatternWidget(aPatGrp),
|
|
|
|
myPicture2d->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));
|
|
|
|
} else {
|
|
|
|
myPicture3d = new QFrame(aPatGrp),
|
|
|
|
myPreview3d = new QLabel(myPicture3d);
|
|
|
|
myPreview3d->setPixmap(iconSample3d);
|
|
|
|
QGridLayout* aLay = new QGridLayout(myPicture3d, 3, 3, 0, 0);
|
|
|
|
QSpacerItem* aSpacerH1 = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
|
|
QSpacerItem* aSpacerH2 = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
|
|
QSpacerItem* aSpacerV1 = new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
QSpacerItem* aSpacerV2 = new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
aLay->addItem(aSpacerH1, 1, 0);
|
|
|
|
aLay->addItem(aSpacerH2, 1, 2);
|
|
|
|
aLay->addItem(aSpacerV1, 0, 1);
|
|
|
|
aLay->addItem(aSpacerV2, 2, 1);
|
|
|
|
aLay->addWidget(myPreview3d, 1, 1);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myPreviewChk = new QCheckBox(tr("PREVIEW"), aPatGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Connect signals and slots
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(myTypeGrp, SIGNAL(clicked(int)), SLOT(onTypeChanged(int)));
|
|
|
|
connect(myOpenBtn, SIGNAL(clicked()), SLOT(onOpen()));
|
|
|
|
connect(myNewBtn, SIGNAL(clicked()), SLOT(onNew()));
|
|
|
|
|
|
|
|
connect(myReverseChk, SIGNAL(toggled(bool)), SLOT(onReverse(bool)));
|
|
|
|
connect(myPreviewChk, SIGNAL(toggled(bool)), SLOT(onPreview(bool)));
|
|
|
|
connect(myRefine, SIGNAL(toggled(bool)), SLOT(onModeToggled(bool)));
|
|
|
|
|
|
|
|
connect(myNode1, SIGNAL(valueChanged(int)), SLOT(onNodeChanged(int)));
|
|
|
|
connect(myNode2, SIGNAL(valueChanged(int)), SLOT(onNodeChanged(int)));
|
|
|
|
|
|
|
|
connect(mySelEdit[Ids], SIGNAL(textChanged(const QString&)), SLOT(onTextChanged(const QString&)));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
QMap< int, QPushButton* >::iterator anIter;
|
2005-06-07 19:22:20 +06:00
|
|
|
for (anIter = mySelBtn.begin(); anIter != mySelBtn.end(); ++anIter)
|
|
|
|
connect(*anIter, SIGNAL(clicked()), SLOT(onSelInputChanged()));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
return aMainGrp;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::createButtonFrame
|
|
|
|
// Purpose : Create frame containing buttons
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
QFrame* SMESHGUI_MeshPatternDlg::createButtonFrame (QWidget* theParent)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
QFrame* aFrame = new QFrame(theParent);
|
|
|
|
aFrame->setFrameStyle(QFrame::Box | QFrame::Sunken);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myOkBtn = new QPushButton(tr("SMESH_BUT_OK" ), aFrame);
|
|
|
|
myApplyBtn = new QPushButton(tr("SMESH_BUT_APPLY"), aFrame);
|
|
|
|
myCloseBtn = new QPushButton(tr("SMESH_BUT_CLOSE"), aFrame);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
QSpacerItem* aSpacer = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
QHBoxLayout* aLay = new QHBoxLayout(aFrame, MARGIN, SPACING);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
aLay->addWidget(myOkBtn);
|
|
|
|
aLay->addWidget(myApplyBtn);
|
|
|
|
aLay->addItem(aSpacer);
|
|
|
|
aLay->addWidget(myCloseBtn);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(myOkBtn, SIGNAL(clicked()), SLOT(onOk()));
|
|
|
|
connect(myCloseBtn, SIGNAL(clicked()), SLOT(onClose()));
|
|
|
|
connect(myApplyBtn, SIGNAL(clicked()), SLOT(onApply()));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
return aFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::~SMESHGUI_MeshPatternDlg
|
|
|
|
// Purpose : Destructor
|
|
|
|
//=======================================================================
|
|
|
|
SMESHGUI_MeshPatternDlg::~SMESHGUI_MeshPatternDlg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::Init
|
|
|
|
// Purpose : Init dialog fields, connect signals and slots, show dialog
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::Init()
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
myPattern = SMESH::GetPattern();
|
|
|
|
myPreviewActor = 0;
|
|
|
|
myIsCreateDlgOpen = false;
|
|
|
|
mySelInput = Mesh;
|
|
|
|
myType = -1;
|
|
|
|
myNbPoints = -1;
|
2005-06-07 19:22:20 +06:00
|
|
|
mySMESHGUI->SetActiveDialogBox((QDialog*)this);
|
2005-01-20 11:25:54 +05:00
|
|
|
myMesh = SMESH::SMESH_Mesh::_nil();
|
|
|
|
|
|
|
|
myMeshShape = GEOM::GEOM_Object::_nil();
|
|
|
|
myGeomObj[ Object ] = GEOM::GEOM_Object::_nil();
|
|
|
|
myGeomObj[ Vertex1 ] = GEOM::GEOM_Object::_nil();
|
|
|
|
myGeomObj[ Vertex2 ] = GEOM::GEOM_Object::_nil();
|
|
|
|
|
|
|
|
// selection and SMESHGUI
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), SLOT(onSelectionDone()));
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), SLOT(onDeactivate()));
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), SLOT(onClose()));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myTypeGrp->setButton(Type_2d);
|
|
|
|
onTypeChanged(Type_2d);
|
|
|
|
onModeToggled(isRefine());
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
updateGeometry();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
resize(minimumSize());
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
activateSelection();
|
|
|
|
onSelectionDone();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
int x, y;
|
|
|
|
mySMESHGUI->DefineDlgPosition(this, x, y);
|
|
|
|
this->move(x, y);
|
2005-01-20 11:25:54 +05:00
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::isValid
|
|
|
|
// Purpose : Verify validity of entry data
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
bool SMESHGUI_MeshPatternDlg::isValid (const bool theMess)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
QValueList<int> ids;
|
2005-06-07 19:22:20 +06:00
|
|
|
if ((isRefine() &&
|
|
|
|
(myMesh->_is_nil() || !getIds(ids) || getNode(false) < 0 ||
|
|
|
|
myType == Type_3d && (getNode(true) < 0 || getNode(false) == getNode(true))))
|
|
|
|
||
|
|
|
|
(!isRefine() &&
|
|
|
|
(myMesh->_is_nil() || myMeshShape->_is_nil() || myGeomObj[ Object ]->_is_nil() ||
|
|
|
|
myGeomObj[ Vertex1 ]->_is_nil() || myType == Type_3d && myGeomObj[ Vertex2 ]->_is_nil())))
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (theMess)
|
|
|
|
QMessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
tr("SMESHGUI_INVALID_PARAMETERS"), QMessageBox::Ok);
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
return true;
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onApply
|
|
|
|
// Purpose : SLOT called when "Apply" button pressed.
|
|
|
|
//=======================================================================
|
|
|
|
bool SMESHGUI_MeshPatternDlg::onApply()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
try {
|
|
|
|
if (!isValid())
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
|
|
|
|
erasePreview();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (isRefine()) { // Refining existing mesh elements
|
2005-01-20 11:25:54 +05:00
|
|
|
QValueList<int> ids;
|
2005-06-07 19:22:20 +06:00
|
|
|
getIds(ids);
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::long_array_var varIds = new SMESH::long_array();
|
2005-06-07 19:22:20 +06:00
|
|
|
varIds->length(ids.count());
|
2005-01-20 11:25:54 +05:00
|
|
|
int i = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
for (QValueList<int>::iterator it = ids.begin(); it != ids.end(); ++it)
|
2005-01-20 11:25:54 +05:00
|
|
|
varIds[i++] = *it;
|
|
|
|
myType == Type_2d
|
2005-06-07 19:22:20 +06:00
|
|
|
? myPattern->ApplyToMeshFaces (myMesh, varIds, getNode(false), myReverseChk->isChecked())
|
|
|
|
: myPattern->ApplyToHexahedrons(myMesh, varIds, getNode(false), getNode(true));
|
|
|
|
|
|
|
|
} else { // Applying a pattern to geometrical object
|
|
|
|
if (myType == Type_2d)
|
|
|
|
myPattern->ApplyToFace(myGeomObj[Object], myGeomObj[Vertex1], myReverseChk->isChecked());
|
|
|
|
else
|
|
|
|
myPattern->ApplyTo3DBlock(myGeomObj[Object], myGeomObj[Vertex1], myGeomObj[Vertex2]);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
bool toCreatePolygons = myCreatePolygonsChk->isChecked();
|
|
|
|
bool toCreatePolyedrs = myCreatePolyedrsChk->isChecked();
|
|
|
|
if ( myPattern->MakeMesh( myMesh, toCreatePolygons, toCreatePolyedrs ) ) {
|
|
|
|
mySelectionMgr->clearSelected();
|
2005-06-08 16:45:19 +06:00
|
|
|
SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
|
2005-06-07 19:22:20 +06:00
|
|
|
bool autoUpdate = false;
|
|
|
|
if (mgr && mgr->stringValue("SMESH", "AutomaticUpdate").compare("true") == 0)
|
|
|
|
autoUpdate = true;
|
|
|
|
if (!isRefine() && autoUpdate) {
|
|
|
|
_PTR(SObject) aSO = SMESH::FindSObject(myMesh.in());
|
|
|
|
SMESH_Actor* anActor = SMESH::FindActorByEntry(aSO->GetID().c_str());
|
|
|
|
if (!anActor) {
|
|
|
|
anActor = SMESH::CreateActor(aSO->GetStudy(), aSO->GetID().c_str());
|
|
|
|
if (anActor) {
|
|
|
|
SMESH::DisplayActor(SMESH::GetActiveWindow(), anActor);
|
2005-01-20 19:45:00 +05:00
|
|
|
SMESH::FitAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::UpdateView();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
mySMESHGUI->updateObjBrowser(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
return true;
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
|
|
|
QMessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
|
|
|
|
tr("SMESH_OPERATION_FAILED"), QMessageBox::Ok);
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (const SALOME::SALOME_Exception& S_ex) {
|
|
|
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
|
|
|
} catch (...) {
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onOk
|
|
|
|
// Purpose : SLOT called when "Ok" button pressed.
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onOk()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (onApply())
|
2005-01-20 11:25:54 +05:00
|
|
|
onClose();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onClose
|
|
|
|
// Purpose : SLOT called when "Close" button pressed. Close dialog
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onClose()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->clearFilters();
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::SetPickable();
|
2005-06-07 19:22:20 +06:00
|
|
|
myViewWindow->SetSelectionMode(ActorSelection);
|
|
|
|
disconnect(mySelectionMgr, 0, this, 0);
|
|
|
|
disconnect(mySMESHGUI, 0, this, 0);
|
|
|
|
mySMESHGUI->ResetState();
|
2005-01-20 11:25:54 +05:00
|
|
|
erasePreview();
|
|
|
|
reject();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onSelectionDone
|
|
|
|
// Purpose : SLOT called when selection changed
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onSelectionDone()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myBusy)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
try {
|
|
|
|
if (mySelInput == Mesh) {
|
|
|
|
SALOME_ListIO aList;
|
|
|
|
mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
|
|
|
|
if (aList.Extent() != 1)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Retrieve mesh from selection
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) anIO = aList.First();
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(anIO);
|
|
|
|
if (aMesh->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Get geom object corresponding to the mesh
|
2005-06-07 19:22:20 +06:00
|
|
|
_PTR(SObject) aSO = SMESH::FindSObject(aMesh.in());
|
|
|
|
myMeshShape = SMESH::GetGeom(aSO);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Clear fields of geom objects if mesh was changed
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myMesh != aMesh) {
|
|
|
|
for (int i = Object; i <= Ids; i++) {
|
2005-01-20 11:25:54 +05:00
|
|
|
myGeomObj[ i ] = GEOM::GEOM_Object::_nil();
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelEdit[ i ]->setText("");
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
myMesh = aMesh;
|
|
|
|
|
|
|
|
// Set name of mesh in line edit
|
|
|
|
QString aName;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aName);
|
|
|
|
mySelEdit[ Mesh ]->setText(aName);
|
|
|
|
|
|
|
|
} else if (mySelInput == Ids) {
|
|
|
|
SALOME_ListIO aList;
|
|
|
|
mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
|
2005-06-27 11:45:12 +06:00
|
|
|
if (aList.Extent() != 1)
|
|
|
|
return;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
QString anIds;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!SMESH::GetNameOfSelectedElements(mySelector, aList.First(), anIds))
|
2005-01-20 11:25:54 +05:00
|
|
|
anIds = "";
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
myBusy = true;
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelEdit[ Ids ]->setText(anIds);
|
2005-01-20 11:25:54 +05:00
|
|
|
myBusy = false;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
} else {
|
|
|
|
SALOME_ListIO aList;
|
|
|
|
mySelectionMgr->selectedObjects(aList, SVTK_Viewer::Type());
|
|
|
|
if (aList.Extent() != 1)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Get geom object from selection
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) anIO = aList.First();
|
|
|
|
GEOM::GEOM_Object_var anObj = SMESH::IObjectToInterface<GEOM::GEOM_Object>(anIO);
|
|
|
|
if (anObj->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Clear fields of vertexes if face or 3d block was changed
|
2005-06-07 19:22:20 +06:00
|
|
|
if (anObj != myGeomObj[ mySelInput ] && mySelInput == Object) {
|
|
|
|
for (int i = Vertex1; i <= Vertex2; i++) {
|
2005-01-20 11:25:54 +05:00
|
|
|
myGeomObj[ i ] = GEOM::GEOM_Object::_nil();
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelEdit[ i ]->setText("");
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
myGeomObj[ mySelInput ] = anObj;
|
|
|
|
|
|
|
|
// Set name of geom object in line edit
|
|
|
|
QString aName;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aName);
|
|
|
|
mySelEdit[ mySelInput ]->setText(aName);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (const SALOME::SALOME_Exception& S_ex) {
|
|
|
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
2005-01-20 11:25:54 +05:00
|
|
|
resetSelInput();
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (...) {
|
2005-01-20 11:25:54 +05:00
|
|
|
resetSelInput();
|
|
|
|
}
|
|
|
|
|
|
|
|
updateWgState();
|
|
|
|
displayPreview();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::resetSelInput
|
|
|
|
// Purpose : Reset fields corresponding to the current selection input
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::resetSelInput()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (mySelInput == Mesh)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
myMesh = SMESH::SMESH_Mesh::_nil();
|
|
|
|
myMeshShape = GEOM::GEOM_Object::_nil();
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
myGeomObj[ mySelInput ] = GEOM::GEOM_Object::_nil();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelEdit[ mySelInput ]->setText("");
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onDeactivate
|
|
|
|
// Purpose : SLOT called when dialog must be deativated
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onDeactivate()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->clearFilters();
|
|
|
|
//if (myReverseChk->isChecked())
|
2005-01-20 11:25:54 +05:00
|
|
|
// erasePreview();
|
2005-06-07 19:22:20 +06:00
|
|
|
disconnect(mySelectionMgr, 0, this, 0);
|
|
|
|
setEnabled(false);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::enterEvent
|
|
|
|
// Purpose : Event filter
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::enterEvent (QEvent*)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myIsCreateDlgOpen)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (myReverseChk->isChecked())
|
2005-01-20 11:25:54 +05:00
|
|
|
displayPreview();
|
2005-06-07 19:22:20 +06:00
|
|
|
mySMESHGUI->EmitSignalDeactivateDialog();
|
|
|
|
setEnabled(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
activateSelection();
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), SLOT(onSelectionDone()));
|
|
|
|
onTextChanged(mySelEdit[Ids]->text());
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::closeEvent
|
|
|
|
// Purpose :
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::closeEvent (QCloseEvent*)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
onClose();
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onSelInputChanged
|
|
|
|
// Purpose : SLOT. Called when -> button clicked.
|
|
|
|
// Change current selection input field
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onSelInputChanged()
|
|
|
|
{
|
|
|
|
const QObject* aSender = sender();
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = Mesh; i <= Ids; i++)
|
|
|
|
if (aSender == mySelBtn[ i ])
|
2005-01-20 11:25:54 +05:00
|
|
|
mySelInput = i;
|
|
|
|
|
|
|
|
activateSelection();
|
|
|
|
onSelectionDone();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::prepareFilters
|
|
|
|
// Purpose : Prepare filters for dialog
|
|
|
|
//=======================================================================
|
|
|
|
QStringList SMESHGUI_MeshPatternDlg::prepareFilters() const
|
|
|
|
{
|
|
|
|
static QStringList aList;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aList.isEmpty())
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
aList.append(tr("PATTERN_FILT"));
|
|
|
|
//aList.append(tr("ALL_FILES_FILTER"));
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
return aList;
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::autoExtension
|
|
|
|
// Purpose : Append extension to the file name
|
|
|
|
//=======================================================================
|
|
|
|
QString SMESHGUI_MeshPatternDlg::autoExtension (const QString& theFileName) const
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
QString anExt = theFileName.section('.', -1);
|
2005-01-20 11:25:54 +05:00
|
|
|
return anExt != "smp" && anExt != "SMP" ? theFileName + ".smp" : theFileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onOpen
|
|
|
|
// Purpose : SLOT. Called when "Open" button clicked.
|
|
|
|
// Displays file open dialog
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onOpen()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_FileDlg* aDlg = new SUIT_FileDlg (this, true);
|
|
|
|
aDlg->setCaption(tr("LOAD_PATTERN"));
|
|
|
|
aDlg->setMode(QFileDialog::ExistingFile);
|
|
|
|
aDlg->setFilters(prepareFilters());
|
|
|
|
if (myName->text() != "")
|
|
|
|
aDlg->setSelection(myName->text() + ".smp");
|
|
|
|
QPushButton* anOkBtn = (QPushButton*)aDlg->child("OK", "QPushButton");
|
|
|
|
if (anOkBtn != 0)
|
|
|
|
anOkBtn->setText(tr("SMESH_BUT_OK"));
|
|
|
|
|
|
|
|
if (aDlg->exec() != Accepted)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
QString fName = aDlg->selectedFile();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (fName.isEmpty())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (QFileInfo(fName).extension().isEmpty())
|
|
|
|
fName = autoExtension(fName);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
fName = QDir::convertSeparators(fName);
|
|
|
|
|
|
|
|
QString prev = QDir::convertSeparators(myName->text());
|
|
|
|
if (prev == fName)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Read string from file
|
2005-06-07 19:22:20 +06:00
|
|
|
QFile aFile(fName);
|
|
|
|
if (!aFile.open(IO_ReadOnly)) {
|
|
|
|
QMessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
|
|
|
|
tr("ERROR_OF_OPENING"), QMessageBox::Ok);
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
QByteArray aDataArray = aFile.readAll();
|
|
|
|
const char* aData = aDataArray.data();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aData == 0) {
|
|
|
|
QMessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
|
|
|
|
tr("ERROR_OF_READING"), QMessageBox::Ok);
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (loadFromFile(aData))
|
|
|
|
myName->setText(QFileInfo(fName).baseName());
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
updateWgState();
|
|
|
|
displayPreview();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onCloseCreationDlg
|
|
|
|
// Purpose : SLOT. Called when "Pattern creation" dialog closed with "Close"
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onCloseCreationDlg()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
setEnabled(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
myIsCreateDlgOpen = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onOkCreationDlg
|
|
|
|
// Purpose : SLOT. Called when "Pattern creation" dialog closed with OK
|
|
|
|
// or SAVE buttons. Initialize myPattern field. Redisplay preview
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onOkCreationDlg()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
myPattern = SMESH::SMESH_Pattern::_duplicate(myCreationDlg->GetPattern());
|
|
|
|
myName->setText(myCreationDlg->GetPatternName());
|
2005-01-20 11:25:54 +05:00
|
|
|
displayPreview();
|
2005-06-07 19:22:20 +06:00
|
|
|
setEnabled(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
myIsCreateDlgOpen = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onNew
|
|
|
|
// Purpose : SLOT. Called when "New..." button clicked. Create new pattern
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::onNew()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
setEnabled(false);
|
2005-01-20 11:25:54 +05:00
|
|
|
myIsCreateDlgOpen = true;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myCreationDlg == 0)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
myCreationDlg = new SMESHGUI_CreatePatternDlg( mySMESHGUI, myType);
|
|
|
|
connect(myCreationDlg, SIGNAL(NewPattern()), SLOT(onOkCreationDlg()));
|
|
|
|
connect(myCreationDlg, SIGNAL(Close()), SLOT(onCloseCreationDlg()));
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
else
|
2005-06-07 19:22:20 +06:00
|
|
|
myCreationDlg->Init(myType);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myCreationDlg->SetMesh(myMesh);
|
2005-01-20 11:25:54 +05:00
|
|
|
myCreationDlg->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onReverse
|
|
|
|
// Purpose : SLOT. Called when state of "Reverse order..." checkbox chaged
|
|
|
|
// Calculate new points of the mesh to be created. Redisplay preview
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::onReverse (bool)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
displayPreview();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onPreview
|
|
|
|
// Purpose : SLOT. Called when state of "Preview" checkbox changed
|
|
|
|
// Display/Erase preview
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::onPreview (bool)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
displayPreview();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::displayPreview
|
|
|
|
// Purpose : Display preview
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::displayPreview()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
try {
|
2005-01-20 11:25:54 +05:00
|
|
|
// Redisplay preview in dialog
|
|
|
|
SMESH::point_array_var pnts = myPattern->GetPoints();
|
|
|
|
SMESH::long_array_var keyPoints = myPattern->GetKeyPoints();
|
2005-01-20 19:45:00 +05:00
|
|
|
SMESH::array_of_long_array_var elemPoints = myPattern->GetElementPoints(false);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (pnts->length() == 0 ||
|
|
|
|
keyPoints->length() == 0 ||
|
|
|
|
elemPoints->length() == 0) {
|
2005-01-20 11:25:54 +05:00
|
|
|
erasePreview();
|
|
|
|
return;
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
|
|
|
PointVector aPoints(pnts->length());
|
|
|
|
QValueVector<int> aKeyPoints(keyPoints->length());
|
|
|
|
ConnectivityVector anElemPoints(elemPoints->length());
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0, n = pnts->length(); i < n; i++)
|
2005-01-20 11:25:54 +05:00
|
|
|
aPoints[ i ] = pnts[ i ];
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i2 = 0, n2 = keyPoints->length(); i2 < n2; i2++)
|
2005-01-20 11:25:54 +05:00
|
|
|
aKeyPoints[ i2 ] = keyPoints[ i2 ];
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i3 = 0, n3 = elemPoints->length(); i3 < n3; i3++) {
|
|
|
|
QValueVector<int> aVec(elemPoints[ i3 ].length());
|
|
|
|
for (int i4 = 0, n4 = elemPoints[ i3 ].length(); i4 < n4; i4++)
|
2005-01-20 11:25:54 +05:00
|
|
|
aVec[ i4 ] = elemPoints[ i3 ][ i4 ];
|
|
|
|
|
|
|
|
anElemPoints[ i3 ] = aVec;
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myPicture2d->SetPoints(aPoints, aKeyPoints, anElemPoints);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Redisplay preview in 3D viewer
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myPreviewActor != 0) {
|
|
|
|
if (SVTK_ViewWindow* vf = SMESH::GetCurrentVtkView()) {
|
2005-01-20 11:25:54 +05:00
|
|
|
vf->RemoveActor(myPreviewActor);
|
|
|
|
vf->Repaint();
|
|
|
|
}
|
|
|
|
myPreviewActor->Delete();
|
|
|
|
myPreviewActor = 0;
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!myPreviewChk->isChecked() || !isValid(false))
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
vtkUnstructuredGrid* aGrid = getGrid();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aGrid == 0)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Create and display actor
|
|
|
|
vtkDataSetMapper* aMapper = vtkDataSetMapper::New();
|
2005-06-07 19:22:20 +06:00
|
|
|
aMapper->SetInput(aGrid);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
myPreviewActor = SALOME_Actor::New();
|
|
|
|
myPreviewActor->PickableOff();
|
2005-06-07 19:22:20 +06:00
|
|
|
myPreviewActor->SetMapper(aMapper);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
vtkProperty* aProp = vtkProperty::New();
|
|
|
|
aProp->SetRepresentationToWireframe();
|
2005-06-07 19:22:20 +06:00
|
|
|
aProp->SetColor(250, 0, 250);
|
|
|
|
if (SMESH::FindActorByObject(myMesh))
|
|
|
|
aProp->SetLineWidth(SMESH::GetFloat("SMESH:SettingsWidth", 1) +1);
|
2005-01-20 11:25:54 +05:00
|
|
|
else
|
2005-06-07 19:22:20 +06:00
|
|
|
aProp->SetLineWidth(1);
|
|
|
|
myPreviewActor->SetProperty(aProp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myPreviewActor->SetRepresentation(3);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::GetCurrentVtkView()->AddActor(myPreviewActor);
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::GetCurrentVtkView()->Repaint();
|
|
|
|
|
|
|
|
aProp->Delete();
|
|
|
|
aGrid->Delete();
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (const SALOME::SALOME_Exception& S_ex) {
|
|
|
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
2005-01-20 11:25:54 +05:00
|
|
|
erasePreview();
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (...) {
|
2005-01-20 11:25:54 +05:00
|
|
|
erasePreview();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::erasePreview
|
|
|
|
// Purpose : Erase preview
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::erasePreview()
|
|
|
|
{
|
|
|
|
// Erase preview in 2D viewer
|
2005-06-07 19:22:20 +06:00
|
|
|
myPicture2d->SetPoints(PointVector(), QValueVector<int>(), ConnectivityVector());
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Erase preview in 3D viewer
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myPreviewActor == 0)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (SVTK_ViewWindow* vf = SMESH::GetCurrentVtkView())
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
vf->RemoveActor(myPreviewActor);
|
|
|
|
vf->Repaint();
|
|
|
|
}
|
|
|
|
myPreviewActor->Delete();
|
|
|
|
myPreviewActor = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::updateWgState
|
|
|
|
// Purpose : Enable/disable selection widgets
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::updateWgState()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myMesh->_is_nil()) {
|
|
|
|
for (int i = Object; i <= Ids; i++) {
|
|
|
|
mySelBtn [ i ]->setEnabled(false);
|
|
|
|
mySelEdit[ i ]->setEnabled(false);
|
|
|
|
mySelEdit[ i ]->setText("");
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
myNode1->setEnabled(false);
|
|
|
|
myNode2->setEnabled(false);
|
|
|
|
myNode1->setRange(0, 0);
|
|
|
|
myNode2->setRange(0, 0);
|
|
|
|
} else {
|
|
|
|
mySelBtn [ Object ]->setEnabled(true);
|
|
|
|
mySelEdit[ Object ]->setEnabled(true);
|
|
|
|
mySelBtn [ Ids ] ->setEnabled(true);
|
|
|
|
mySelEdit[ Ids ] ->setEnabled(true);
|
|
|
|
|
|
|
|
if (myGeomObj[ Object ]->_is_nil()) {
|
|
|
|
for (int i = Vertex1; i <= Vertex2; i++) {
|
|
|
|
mySelBtn [ i ]->setEnabled(false);
|
|
|
|
mySelEdit[ i ]->setEnabled(false);
|
|
|
|
mySelEdit[ i ]->setText("");
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
|
|
|
for (int i = Object; i <= Vertex2; i++) {
|
|
|
|
mySelBtn [ i ]->setEnabled(true);
|
|
|
|
mySelEdit[ i ]->setEnabled(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QValueList<int> ids;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!CORBA::is_nil(myPattern) && getIds(ids)) {
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::long_array_var keyPoints = myPattern->GetKeyPoints();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (keyPoints->length()) {
|
|
|
|
myNode1->setEnabled(true);
|
|
|
|
myNode2->setEnabled(true);
|
|
|
|
myNode1->setRange(1, keyPoints->length());
|
|
|
|
myNode2->setRange(1, keyPoints->length());
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myNode1->setEnabled(false);
|
|
|
|
myNode2->setEnabled(false);
|
|
|
|
myNode1->setRange(0, 0);
|
|
|
|
myNode2->setRange(0, 0);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::activateSelection
|
|
|
|
// Purpose : Activate selection in accordance with current selection input
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_MeshPatternDlg::activateSelection()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->clearFilters();
|
|
|
|
if (mySelInput == Ids) {
|
|
|
|
SMESH_Actor* anActor = SMESH::FindActorByObject(myMesh);
|
|
|
|
if (anActor)
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::SetPickable(anActor);
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myType == Type_2d)
|
|
|
|
myViewWindow->SetSelectionMode(FaceSelection);
|
2005-01-20 11:25:54 +05:00
|
|
|
else
|
2005-06-07 19:22:20 +06:00
|
|
|
myViewWindow->SetSelectionMode(CellSelection);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
SMESH::SetPickable();
|
2005-06-07 19:22:20 +06:00
|
|
|
//mySelectionMgr->setSelectionModes(ActorSelection);
|
|
|
|
myViewWindow->SetSelectionMode(ActorSelection);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (mySelInput == Object && !myMeshShape->_is_nil()) {
|
|
|
|
if (myType == Type_2d) {
|
|
|
|
if (myNbPoints > 0)
|
|
|
|
mySelectionMgr->installFilter
|
|
|
|
(new SMESH_NumberFilter ("GEOM", TopAbs_VERTEX, myNbPoints, TopAbs_FACE, myMeshShape));
|
2005-01-20 11:25:54 +05:00
|
|
|
else
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->installFilter
|
|
|
|
(new SMESH_NumberFilter ("GEOM", TopAbs_SHAPE, myNbPoints, TopAbs_FACE, myMeshShape));
|
|
|
|
} else {
|
2005-01-20 11:25:54 +05:00
|
|
|
TColStd_MapOfInteger aTypes;
|
2005-06-07 19:22:20 +06:00
|
|
|
aTypes.Add(TopAbs_SHELL);
|
|
|
|
aTypes.Add(TopAbs_SOLID);
|
|
|
|
mySelectionMgr->installFilter
|
|
|
|
(new SMESH_NumberFilter ("GEOM", TopAbs_FACE, 6, aTypes, myMeshShape, true));
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else if ((mySelInput == Vertex1 || mySelInput == Vertex2) && !myGeomObj[ Object ]->_is_nil()) {
|
|
|
|
mySelectionMgr->installFilter
|
|
|
|
(new SMESH_NumberFilter ("GEOM", TopAbs_SHAPE, 1, TopAbs_VERTEX, myGeomObj[ Object ]));
|
|
|
|
} else {
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::loadFromFile
|
|
|
|
// Purpose : Load pattern from file
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
bool SMESHGUI_MeshPatternDlg::loadFromFile (const QString& theName)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
try {
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::SMESH_Pattern_var aPattern = SMESH::GetPattern();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!aPattern->LoadFromFile(theName.latin1()) ||
|
|
|
|
myType == Type_2d && !aPattern->Is2D()) {
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::SMESH_Pattern::ErrorCode aCode = aPattern->GetErrorCode();
|
|
|
|
QString aMess;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aCode == SMESH::SMESH_Pattern::ERR_READ_NB_POINTS ) aMess = tr("ERR_READ_NB_POINTS");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_POINT_COORDS ) aMess = tr("ERR_READ_POINT_COORDS");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_TOO_FEW_POINTS) aMess = tr("ERR_READ_TOO_FEW_POINTS");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_3D_COORD ) aMess = tr("ERR_READ_3D_COORD");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_NO_KEYPOINT ) aMess = tr("ERR_READ_NO_KEYPOINT");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_BAD_INDEX ) aMess = tr("ERR_READ_BAD_INDEX");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_ELEM_POINTS ) aMess = tr("ERR_READ_ELEM_POINTS");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_NO_ELEMS ) aMess = tr("ERR_READ_NO_ELEMS");
|
|
|
|
else if (aCode == SMESH::SMESH_Pattern::ERR_READ_BAD_KEY_POINT ) aMess = tr("ERR_READ_BAD_KEY_POINT");
|
|
|
|
else aMess = tr("ERROR_OF_LOADING");
|
|
|
|
|
|
|
|
QMessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"), aMess, QMessageBox::Ok);
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
2005-01-20 11:25:54 +05:00
|
|
|
myPattern = aPattern;
|
|
|
|
return true;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (const SALOME::SALOME_Exception& S_ex) {
|
|
|
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
|
|
|
QMessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
|
|
|
|
tr("ERROR_OF_LOADING"), QMessageBox::Ok);
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::onTypeChanged
|
|
|
|
// Purpose : SLOT. Called when pattern type changed.
|
|
|
|
// Change dialog's look and feel
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::onTypeChanged (int theType)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myType == theType)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
myType = theType;
|
|
|
|
|
|
|
|
myNbPoints = -1;
|
|
|
|
myGeomObj[ Object ] = GEOM::GEOM_Object::_nil();
|
|
|
|
myGeomObj[ Vertex1 ] = GEOM::GEOM_Object::_nil();
|
|
|
|
myGeomObj[ Vertex2 ] = GEOM::GEOM_Object::_nil();
|
|
|
|
myPattern = SMESH::GetPattern();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myName->setText("");
|
|
|
|
mySelEdit[ Object ]->setText("");
|
|
|
|
mySelEdit[ Vertex1 ]->setText("");
|
|
|
|
mySelEdit[ Vertex2 ]->setText("");
|
|
|
|
mySelEdit[ Ids ] ->setText("");
|
|
|
|
myCreatePolygonsChk->show();
|
|
|
|
myCreatePolyedrsChk->show();
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (theType == Type_2d) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// Geom widgets
|
|
|
|
mySelLbl [ Vertex2 ]->hide();
|
|
|
|
mySelBtn [ Vertex2 ]->hide();
|
|
|
|
mySelEdit[ Vertex2 ]->hide();
|
|
|
|
myReverseChk->show();
|
|
|
|
myPicture2d->show();
|
|
|
|
myPicture3d->hide();
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelLbl[ Object ]->setText(tr("FACE"));
|
|
|
|
mySelLbl[ Vertex1 ]->setText(tr("VERTEX"));
|
2005-01-20 11:25:54 +05:00
|
|
|
// Refine widgets
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelLbl[ Ids ]->setText(tr("MESH_FACES"));
|
2005-01-20 11:25:54 +05:00
|
|
|
myNode2Lbl->hide();
|
|
|
|
myNode2 ->hide();
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
2005-01-20 11:25:54 +05:00
|
|
|
// Geom widgets
|
|
|
|
mySelLbl [ Vertex2 ]->show();
|
|
|
|
mySelBtn [ Vertex2 ]->show();
|
|
|
|
mySelEdit[ Vertex2 ]->show();
|
|
|
|
myReverseChk->hide();
|
|
|
|
myPicture2d->hide();
|
|
|
|
myPicture3d->show();
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelLbl[ Object ]->setText(tr("3D_BLOCK"));
|
|
|
|
mySelLbl[ Vertex1 ]->setText(tr("VERTEX1"));
|
|
|
|
mySelLbl[ Vertex2 ]->setText(tr("VERTEX2"));
|
2005-01-20 11:25:54 +05:00
|
|
|
// Refine widgets
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelLbl[ Ids ]->setText(tr("MESH_VOLUMES"));
|
2005-01-20 11:25:54 +05:00
|
|
|
myNode2Lbl->show();
|
|
|
|
myNode2 ->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
mySelInput = Mesh;
|
|
|
|
activateSelection();
|
|
|
|
updateWgState();
|
|
|
|
displayPreview();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : SMESHGUI_MeshPatternDlg::getGrid
|
|
|
|
// Purpose : Get unstructured grid for pattern
|
|
|
|
//=======================================================================
|
|
|
|
vtkUnstructuredGrid* SMESHGUI_MeshPatternDlg::getGrid()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
try {
|
2005-01-20 11:25:54 +05:00
|
|
|
// Get points from pattern
|
|
|
|
SMESH::point_array_var pnts;
|
|
|
|
QValueList<int> ids;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (isRefine() && getIds(ids)) {
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::long_array_var varIds = new SMESH::long_array();
|
2005-06-07 19:22:20 +06:00
|
|
|
varIds->length(ids.count());
|
2005-01-20 11:25:54 +05:00
|
|
|
int i = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
for (QValueList<int>::iterator it = ids.begin(); it != ids.end(); ++it)
|
2005-01-20 11:25:54 +05:00
|
|
|
varIds[i++] = *it;
|
|
|
|
pnts = myType == Type_2d
|
2005-06-07 19:22:20 +06:00
|
|
|
? myPattern->ApplyToMeshFaces (myMesh, varIds, getNode(false), myReverseChk->isChecked())
|
|
|
|
: myPattern->ApplyToHexahedrons(myMesh, varIds, getNode(false), getNode(true));
|
|
|
|
} else {
|
2005-01-20 11:25:54 +05:00
|
|
|
pnts = myType == Type_2d
|
2005-06-07 19:22:20 +06:00
|
|
|
? myPattern->ApplyToFace (myGeomObj[ Object ], myGeomObj[ Vertex1 ], myReverseChk->isChecked())
|
|
|
|
: myPattern->ApplyTo3DBlock(myGeomObj[ Object ], myGeomObj[ Vertex1 ], myGeomObj[ Vertex2 ]);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
2005-01-20 19:45:00 +05:00
|
|
|
SMESH::array_of_long_array_var elemPoints = myPattern->GetElementPoints(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (pnts->length() == 0 || elemPoints->length() == 0)
|
2005-01-20 11:25:54 +05:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
// to do : to be removed /////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifdef DEB_SLN
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i1 = 0, n1 = pnts->length(); i1 < n1; i1++)
|
|
|
|
printf("%d: %g %g %g\n", i1, pnts[ i1 ].x, pnts[ i1 ].y, pnts[ i1 ].z);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
printf("\nELEMENTS : \n");
|
|
|
|
for (int i2 = 0, n2 = elemPoints->length(); i2 < n2; i2++)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
printf("%d: ", i2);
|
|
|
|
for (int i3 = 0, n3 = elemPoints[ i2 ].length(); i3 < n3; i3++)
|
|
|
|
printf("%d ", elemPoints[ i2 ][ i3 ]);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
printf("\n");
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Calculate number of points used for cell
|
|
|
|
vtkIdType aNbCells = elemPoints->length();
|
|
|
|
vtkIdType aCellsSize = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0, n = elemPoints->length(); i < n; i++)
|
2005-01-20 11:25:54 +05:00
|
|
|
aCellsSize += elemPoints[ i ].length();
|
|
|
|
|
|
|
|
// Create unstructured grid and other usefull arrays
|
|
|
|
vtkUnstructuredGrid* aGrid = vtkUnstructuredGrid::New();
|
|
|
|
|
|
|
|
vtkCellArray* aConnectivity = vtkCellArray::New();
|
2005-06-07 19:22:20 +06:00
|
|
|
aConnectivity->Allocate(aCellsSize, 0);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
vtkPoints* aPoints = vtkPoints::New();
|
2005-06-07 19:22:20 +06:00
|
|
|
aPoints->SetNumberOfPoints(pnts->length());
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
vtkUnsignedCharArray* aCellTypesArray = vtkUnsignedCharArray::New();
|
2005-06-07 19:22:20 +06:00
|
|
|
aCellTypesArray->SetNumberOfComponents(1);
|
|
|
|
aCellTypesArray->Allocate(aNbCells * aCellTypesArray->GetNumberOfComponents());
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
vtkIdList *anIdList = vtkIdList::New();
|
|
|
|
|
|
|
|
// Fill array of points
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int p = 0, nbPnt = pnts->length(); p < nbPnt; p++)
|
|
|
|
aPoints->SetPoint(p, pnts[ p ].x, pnts[ p ].y, pnts[ p ].z);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int e = 0, nbElem = elemPoints->length(); e < nbElem; e++) {
|
2005-01-20 11:25:54 +05:00
|
|
|
int nbPoints = elemPoints[ e ].length();
|
2005-06-07 19:22:20 +06:00
|
|
|
anIdList->SetNumberOfIds(nbPoints);
|
|
|
|
for (int i = 0; i < nbPoints; i++)
|
|
|
|
anIdList->SetId(i, elemPoints[ e ][ i ]);
|
|
|
|
|
|
|
|
aConnectivity->InsertNextCell(anIdList);
|
|
|
|
|
|
|
|
if (nbPoints == 3) aCellTypesArray->InsertNextValue(VTK_TRIANGLE);
|
|
|
|
else if (nbPoints == 5) aCellTypesArray->InsertNextValue(VTK_PYRAMID);
|
|
|
|
else if (nbPoints == 6) aCellTypesArray->InsertNextValue(VTK_WEDGE);
|
|
|
|
else if (nbPoints == 8) aCellTypesArray->InsertNextValue(VTK_HEXAHEDRON);
|
|
|
|
else if (nbPoints == 4 && myType == Type_2d) aCellTypesArray->InsertNextValue(VTK_QUAD);
|
|
|
|
else if (nbPoints == 4 && myType == Type_3d) aCellTypesArray->InsertNextValue(VTK_TETRA);
|
|
|
|
else aCellTypesArray->InsertNextValue(VTK_EMPTY_CELL);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
vtkIntArray* aCellLocationsArray = vtkIntArray::New();
|
2005-06-07 19:22:20 +06:00
|
|
|
aCellLocationsArray->SetNumberOfComponents(1);
|
|
|
|
aCellLocationsArray->SetNumberOfTuples(aNbCells);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
aConnectivity->InitTraversal();
|
2005-06-07 19:22:20 +06:00
|
|
|
for (vtkIdType idType = 0, *pts, npts; aConnectivity->GetNextCell(npts, pts); idType++)
|
|
|
|
aCellLocationsArray->SetValue(idType, aConnectivity->GetTraversalLocation(npts));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
aGrid->SetPoints(aPoints);
|
|
|
|
aGrid->SetCells(aCellTypesArray, aCellLocationsArray,aConnectivity);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
aConnectivity->Delete();
|
|
|
|
aPoints->Delete();
|
|
|
|
aCellTypesArray->Delete();
|
|
|
|
anIdList->Delete();
|
|
|
|
aCellLocationsArray->Delete();
|
|
|
|
|
|
|
|
return aGrid;
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (...) {
|
2005-01-20 11:25:54 +05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : onModeToggled
|
2005-06-07 19:22:20 +06:00
|
|
|
// Purpose :
|
2005-01-20 11:25:54 +05:00
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::onModeToggled (bool on)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
on ? myRefineGrp->show() : myRefineGrp->hide();
|
|
|
|
on ? myGeomGrp->hide() : myGeomGrp->show();
|
2005-01-20 19:45:00 +05:00
|
|
|
|
|
|
|
displayPreview();
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// name : isRefine
|
2005-06-07 19:22:20 +06:00
|
|
|
// Purpose :
|
2005-01-20 11:25:54 +05:00
|
|
|
//=======================================================================
|
|
|
|
bool SMESHGUI_MeshPatternDlg::isRefine() const
|
|
|
|
{
|
|
|
|
return myRefine->isChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// name : onTextChanged
|
|
|
|
// Purpose :
|
2005-01-20 11:25:54 +05:00
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::onTextChanged (const QString& theNewText)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myBusy || !isRefine())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
myBusy = true;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (mySelInput != Ids) {
|
2005-01-20 11:25:54 +05:00
|
|
|
mySelInput = Ids;
|
|
|
|
activateSelection();
|
|
|
|
}
|
|
|
|
|
|
|
|
// hilight entered elements/nodes
|
|
|
|
SMDS_Mesh* aMesh = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH_Actor* anActor = SMESH::FindActorByObject(myMesh);
|
|
|
|
if (anActor)
|
2005-01-20 11:25:54 +05:00
|
|
|
aMesh = anActor->GetObject()->GetMesh();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aMesh) {
|
|
|
|
QStringList aListId = QStringList::split(" ", theNewText, false);
|
2005-06-24 19:54:25 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
TColStd_MapOfInteger newIndices;
|
2005-06-24 19:54:25 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0; i < aListId.count(); i++) {
|
|
|
|
const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
|
2005-06-24 19:54:25 +06:00
|
|
|
if (e && e->GetType() == (myType == Type_2d ? SMDSAbs_Face : SMDSAbs_Volume))
|
|
|
|
newIndices.Add(e->GetID());
|
2005-06-07 19:22:20 +06:00
|
|
|
}
|
2005-06-24 19:54:25 +06:00
|
|
|
mySelector->AddOrRemoveIndex( anActor->getIO(), newIndices, false);
|
|
|
|
myViewWindow->highlight( anActor->getIO(), true, true );
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
myBusy = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// name : onNodeChanged
|
|
|
|
// Purpose :
|
2005-01-20 11:25:54 +05:00
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_MeshPatternDlg::onNodeChanged (int value)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myType == Type_3d) {
|
2005-01-20 11:25:54 +05:00
|
|
|
QSpinBox* first = (QSpinBox*)sender();
|
|
|
|
QSpinBox* second = first == myNode1 ? myNode2 : myNode1;
|
|
|
|
int secondVal = second->value();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (secondVal == value) {
|
2005-01-20 11:25:54 +05:00
|
|
|
secondVal = value == second->maxValue() ? second->minValue() : value + 1;
|
|
|
|
bool blocked = second->signalsBlocked();
|
2005-06-07 19:22:20 +06:00
|
|
|
second->blockSignals(true);
|
|
|
|
second->setValue(secondVal);
|
|
|
|
second->blockSignals(blocked);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
displayPreview();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// name : getIds
|
|
|
|
// Purpose :
|
2005-01-20 11:25:54 +05:00
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
bool SMESHGUI_MeshPatternDlg::getIds (QValueList<int>& ids) const
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
ids.clear();
|
2005-06-07 19:22:20 +06:00
|
|
|
QStringList strIds = QStringList::split(" ", mySelEdit[Ids]->text());
|
2005-01-20 11:25:54 +05:00
|
|
|
bool isOk;
|
|
|
|
int val;
|
2005-06-07 19:22:20 +06:00
|
|
|
for (QStringList::iterator it = strIds.begin(); it != strIds.end(); ++it) {
|
|
|
|
val = (*it).toInt(&isOk);
|
|
|
|
if (isOk)
|
|
|
|
ids.append(val);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ids.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// name : getNode1
|
|
|
|
// Purpose :
|
2005-01-20 11:25:54 +05:00
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
int SMESHGUI_MeshPatternDlg::getNode (bool second) const
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
return second ? myNode2->value() - 1 : myNode1->value() - 1;
|
|
|
|
}
|