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_ExtrusionAlongPathDlg.cxx
|
|
|
|
// Author : Vadim SANDLER
|
|
|
|
// Module : SMESH
|
2005-06-07 19:22:20 +06:00
|
|
|
// $Header:
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
#include "SMESHGUI_ExtrusionAlongPathDlg.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMESHGUI.h"
|
|
|
|
#include "SMESHGUI_Utils.h"
|
|
|
|
#include "SMESHGUI_VTKUtils.h"
|
|
|
|
#include "SMESHGUI_MeshUtils.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESHGUI_SpinBox.h"
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMESHGUI_IdValidator.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMESH_Actor.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESH_TypeFilter.hxx"
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMESH_NumberFilter.hxx"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESH_LogicalFilter.hxx"
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "SMDS_Mesh.hxx"
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "GEOMBase.h"
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SUIT_ResourceMgr.h"
|
|
|
|
#include "SUIT_OverrideCursor.h"
|
|
|
|
#include "SUIT_Desktop.h"
|
|
|
|
#include "SUIT_MessageBox.h"
|
|
|
|
|
|
|
|
#include "SVTK_ViewModel.h"
|
|
|
|
#include "SVTK_ViewWindow.h"
|
|
|
|
#include "SVTK_Selector.h"
|
|
|
|
#include "SVTK_Selection.h"
|
|
|
|
#include "SALOME_ListIO.hxx"
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
#include "utilities.h"
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
// OCCT Includes
|
2005-01-20 11:25:54 +05:00
|
|
|
#include <BRep_Tool.hxx>
|
|
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
#include <TopoDS.hxx>
|
|
|
|
#include <TopoDS_Vertex.hxx>
|
|
|
|
#include <gp_Pnt.hxx>
|
2005-06-07 19:22:20 +06:00
|
|
|
#include <TColStd_MapOfInteger.hxx>
|
|
|
|
#include <TColStd_IndexedMapOfInteger.hxx>
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// QT Includes
|
|
|
|
#include <qapplication.h>
|
|
|
|
#include <qbuttongroup.h>
|
|
|
|
#include <qgroupbox.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qtoolbutton.h>
|
|
|
|
#include <qradiobutton.h>
|
|
|
|
#include <qcheckbox.h>
|
|
|
|
#include <qlistbox.h>
|
|
|
|
#include <qlayout.h>
|
|
|
|
#include <qvalidator.h>
|
|
|
|
#include <qptrlist.h>
|
2005-06-07 19:22:20 +06:00
|
|
|
#include <qpixmap.h>
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// IDL Headers
|
|
|
|
#include "SALOMEconfig.h"
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Group)
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : SMESHGUI_ExtrusionAlongPathDlg()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : constructor
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESHGUI_ExtrusionAlongPathDlg::SMESHGUI_ExtrusionAlongPathDlg( SMESHGUI* theModule,
|
|
|
|
bool modal )
|
|
|
|
: QDialog( SMESH::GetDesktop( theModule ), "SMESHGUI_ExtrusionAlongPathDlg", modal,
|
|
|
|
WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu | Qt::WDestructiveClose),
|
|
|
|
mySMESHGUI( theModule ),
|
2005-07-01 16:42:32 +06:00
|
|
|
mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-08 16:45:19 +06:00
|
|
|
SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
|
|
|
|
QPixmap edgeImage ( mgr->loadPixmap("SMESH", tr("ICON_DLG_EDGE")));
|
|
|
|
QPixmap faceImage ( mgr->loadPixmap("SMESH", tr("ICON_DLG_TRIANGLE")));
|
|
|
|
QPixmap selectImage ( mgr->loadPixmap("SMESH", tr("ICON_SELECT")));
|
|
|
|
QPixmap addImage ( mgr->loadPixmap("SMESH", tr("ICON_APPEND")));
|
|
|
|
QPixmap removeImage ( mgr->loadPixmap("SMESH", tr("ICON_REMOVE")));
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
myType = -1;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
setCaption(tr("EXTRUSION_ALONG_PATH"));
|
|
|
|
setSizeGripEnabled(TRUE);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
QGridLayout* topLayout = new QGridLayout(this);
|
|
|
|
topLayout->setSpacing(6);
|
|
|
|
topLayout->setMargin(11);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// Elements type group box (1d / 2d elements)
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupConstructors = new QButtonGroup(tr("SMESH_EXTRUSION"), this);
|
|
|
|
GroupConstructors->setColumnLayout(0, Qt::Vertical);
|
|
|
|
GroupConstructors->layout()->setSpacing(0);
|
|
|
|
GroupConstructors->layout()->setMargin(0);
|
|
|
|
QGridLayout* GroupConstructorsLayout = new QGridLayout(GroupConstructors->layout());
|
|
|
|
GroupConstructorsLayout->setAlignment(Qt::AlignTop);
|
|
|
|
GroupConstructorsLayout->setSpacing(6); GroupConstructorsLayout->setMargin(11);
|
|
|
|
|
|
|
|
Elements1dRB = new QRadioButton(GroupConstructors);
|
|
|
|
Elements1dRB->setPixmap(edgeImage);
|
|
|
|
Elements2dRB = new QRadioButton(GroupConstructors);
|
|
|
|
Elements2dRB->setPixmap(faceImage);
|
|
|
|
Elements1dRB->setChecked(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// layouting
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupConstructorsLayout->addWidget(Elements1dRB, 0, 0);
|
|
|
|
GroupConstructorsLayout->addWidget(Elements2dRB, 0, 2);
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
/***************************************************************/
|
|
|
|
// Arguments group box
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupArguments = new QGroupBox(tr("EXTRUSION_1D"), this);
|
|
|
|
GroupArguments->setColumnLayout(0, Qt::Vertical);
|
|
|
|
GroupArguments->layout()->setSpacing(0); GroupArguments->layout()->setMargin(0);
|
|
|
|
QGridLayout* GroupArgumentsLayout = new QGridLayout(GroupArguments->layout());
|
|
|
|
GroupArgumentsLayout->setAlignment(Qt::AlignTop);
|
|
|
|
GroupArgumentsLayout->setSpacing(6); GroupArgumentsLayout->setMargin(11);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Controls for elements selection
|
2005-06-07 19:22:20 +06:00
|
|
|
ElementsLab = new QLabel(tr("SMESH_ID_ELEMENTS"), GroupArguments);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SelectElementsButton = new QToolButton(GroupArguments);
|
|
|
|
SelectElementsButton->setPixmap(selectImage);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
ElementsLineEdit = new QLineEdit(GroupArguments);
|
|
|
|
ElementsLineEdit->setValidator(new SMESHGUI_IdValidator(this));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Controls for the whole mesh selection
|
2005-06-07 19:22:20 +06:00
|
|
|
MeshCheck = new QCheckBox(tr("SMESH_SELECT_WHOLE_MESH"), GroupArguments);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Controls for path selection
|
2005-06-07 19:22:20 +06:00
|
|
|
PathGrp = new QGroupBox(tr("SMESH_PATH"), GroupArguments);
|
|
|
|
PathGrp->setColumnLayout(0, Qt::Vertical);
|
|
|
|
PathGrp->layout()->setSpacing(0); PathGrp->layout()->setMargin(0);
|
|
|
|
QGridLayout* PathGrpLayout = new QGridLayout(PathGrp->layout());
|
|
|
|
PathGrpLayout->setAlignment(Qt::AlignTop);
|
|
|
|
PathGrpLayout->setSpacing(6); PathGrpLayout->setMargin(11);
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
// Controls for path mesh selection
|
2005-06-07 19:22:20 +06:00
|
|
|
PathMeshLab = new QLabel(tr("SMESH_PATH_MESH"), PathGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SelectPathMeshButton = new QToolButton(PathGrp);
|
|
|
|
SelectPathMeshButton->setPixmap(selectImage);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
PathMeshLineEdit = new QLineEdit(PathGrp);
|
|
|
|
PathMeshLineEdit->setReadOnly(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Controls for path shape selection
|
2005-06-07 19:22:20 +06:00
|
|
|
PathShapeLab = new QLabel(tr("SMESH_PATH_SHAPE"), PathGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SelectPathShapeButton = new QToolButton(PathGrp);
|
|
|
|
SelectPathShapeButton->setPixmap(selectImage);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
PathShapeLineEdit = new QLineEdit(PathGrp);
|
|
|
|
PathShapeLineEdit->setReadOnly(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// Controls for path starting point selection
|
2005-06-07 19:22:20 +06:00
|
|
|
StartPointLab = new QLabel(tr("SMESH_PATH_START"), PathGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
SelectStartPointButton = new QToolButton(PathGrp);
|
|
|
|
SelectStartPointButton->setPixmap(selectImage);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
StartPointLineEdit = new QLineEdit(PathGrp);
|
|
|
|
StartPointLineEdit->setValidator(new QIntValidator(this));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// layouting
|
2005-06-07 19:22:20 +06:00
|
|
|
PathGrpLayout->addWidget(PathMeshLab, 0, 0);
|
|
|
|
PathGrpLayout->addWidget(SelectPathMeshButton, 0, 1);
|
|
|
|
PathGrpLayout->addWidget(PathMeshLineEdit, 0, 2);
|
|
|
|
PathGrpLayout->addWidget(PathShapeLab, 1, 0);
|
|
|
|
PathGrpLayout->addWidget(SelectPathShapeButton, 1, 1);
|
|
|
|
PathGrpLayout->addWidget(PathShapeLineEdit, 1, 2);
|
|
|
|
PathGrpLayout->addWidget(StartPointLab, 2, 0);
|
|
|
|
PathGrpLayout->addWidget(SelectStartPointButton, 2, 1);
|
|
|
|
PathGrpLayout->addWidget(StartPointLineEdit, 2, 2);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-01-21 16:14:12 +05:00
|
|
|
// Controls for base point defining
|
2005-06-07 19:22:20 +06:00
|
|
|
BasePointCheck = new QCheckBox(tr("SMESH_USE_BASE_POINT"), GroupArguments);
|
|
|
|
|
|
|
|
BasePointGrp = new QGroupBox(tr("SMESH_BASE_POINT"), GroupArguments);
|
|
|
|
BasePointGrp->setColumnLayout(0, Qt::Vertical);
|
|
|
|
BasePointGrp->layout()->setSpacing(0); BasePointGrp->layout()->setMargin(0);
|
|
|
|
QGridLayout* BasePointGrpLayout = new QGridLayout(BasePointGrp->layout());
|
|
|
|
BasePointGrpLayout->setAlignment(Qt::AlignTop);
|
|
|
|
BasePointGrpLayout->setSpacing(6); BasePointGrpLayout->setMargin(11);
|
|
|
|
|
|
|
|
SelectBasePointButton = new QToolButton(BasePointGrp);
|
|
|
|
SelectBasePointButton->setPixmap(selectImage);
|
|
|
|
|
|
|
|
XLab = new QLabel(tr("SMESH_X"), BasePointGrp);
|
|
|
|
XSpin = new SMESHGUI_SpinBox(BasePointGrp);
|
|
|
|
YLab = new QLabel(tr("SMESH_Y"), BasePointGrp);
|
|
|
|
YSpin = new SMESHGUI_SpinBox(BasePointGrp);
|
|
|
|
ZLab = new QLabel(tr("SMESH_Z"), BasePointGrp);
|
|
|
|
ZSpin = new SMESHGUI_SpinBox(BasePointGrp);
|
2005-01-21 16:14:12 +05:00
|
|
|
|
|
|
|
// layouting
|
2005-06-07 19:22:20 +06:00
|
|
|
BasePointGrpLayout->addWidget(SelectBasePointButton, 0, 0);
|
|
|
|
BasePointGrpLayout->addWidget(XLab, 0, 1);
|
|
|
|
BasePointGrpLayout->addWidget(XSpin, 0, 2);
|
|
|
|
BasePointGrpLayout->addWidget(YLab, 0, 3);
|
|
|
|
BasePointGrpLayout->addWidget(YSpin, 0, 4);
|
|
|
|
BasePointGrpLayout->addWidget(ZLab, 0, 5);
|
|
|
|
BasePointGrpLayout->addWidget(ZSpin, 0, 6);
|
2005-01-21 16:14:12 +05:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
// Controls for angles defining
|
2005-06-07 19:22:20 +06:00
|
|
|
AnglesCheck = new QCheckBox(tr("SMESH_USE_ANGLES"), GroupArguments);
|
|
|
|
|
|
|
|
AnglesGrp = new QGroupBox(tr("SMESH_ANGLES"), GroupArguments);
|
|
|
|
AnglesGrp->setColumnLayout(0, Qt::Vertical);
|
|
|
|
AnglesGrp->layout()->setSpacing(0); AnglesGrp->layout()->setMargin(0);
|
|
|
|
QGridLayout* AnglesGrpLayout = new QGridLayout(AnglesGrp->layout());
|
|
|
|
AnglesGrpLayout->setAlignment(Qt::AlignTop);
|
|
|
|
AnglesGrpLayout->setSpacing(6); AnglesGrpLayout->setMargin(11);
|
|
|
|
|
|
|
|
AnglesList = new QListBox(AnglesGrp);
|
|
|
|
AnglesList->setSelectionMode(QListBox::Extended);
|
|
|
|
|
|
|
|
AddAngleButton = new QToolButton(AnglesGrp);
|
|
|
|
AddAngleButton->setPixmap(addImage);
|
|
|
|
|
|
|
|
RemoveAngleButton = new QToolButton(AnglesGrp);
|
|
|
|
RemoveAngleButton->setPixmap(removeImage);
|
|
|
|
|
|
|
|
AngleSpin = new SMESHGUI_SpinBox(AnglesGrp);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// layouting
|
2005-06-07 19:22:20 +06:00
|
|
|
QVBoxLayout* bLayout = new QVBoxLayout();
|
|
|
|
bLayout->addWidget(AddAngleButton);
|
|
|
|
bLayout->addSpacing(6);
|
|
|
|
bLayout->addWidget(RemoveAngleButton);
|
2005-01-20 11:25:54 +05:00
|
|
|
bLayout->addStretch();
|
2005-06-07 19:22:20 +06:00
|
|
|
AnglesGrpLayout->addMultiCellWidget(AnglesList, 0, 1, 0, 0);
|
|
|
|
AnglesGrpLayout->addMultiCellLayout(bLayout, 0, 1, 1, 1);
|
|
|
|
AnglesGrpLayout->addWidget( AngleSpin, 0, 2 );
|
|
|
|
AnglesGrpLayout->setRowStretch(1, 10);
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
// layouting
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupArgumentsLayout->addWidget( ElementsLab, 0, 0 );
|
|
|
|
GroupArgumentsLayout->addWidget( SelectElementsButton, 0, 1 );
|
|
|
|
GroupArgumentsLayout->addWidget( ElementsLineEdit, 0, 2 );
|
|
|
|
GroupArgumentsLayout->addMultiCellWidget(MeshCheck, 1, 1, 0, 2);
|
|
|
|
GroupArgumentsLayout->addMultiCellWidget(PathGrp, 2, 2, 0, 2);
|
|
|
|
GroupArgumentsLayout->addWidget( BasePointCheck, 3, 0 );
|
|
|
|
GroupArgumentsLayout->addMultiCellWidget(BasePointGrp, 3, 4, 1, 2);
|
|
|
|
GroupArgumentsLayout->addWidget( AnglesCheck, 5, 0 );
|
|
|
|
GroupArgumentsLayout->addMultiCellWidget(AnglesGrp, 5, 6, 1, 2);
|
|
|
|
GroupArgumentsLayout->setRowStretch(6, 10);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// common buttons group box
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupButtons = new QGroupBox(this);
|
|
|
|
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);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
OkButton = new QPushButton(tr("SMESH_BUT_OK"), GroupButtons);
|
|
|
|
OkButton->setAutoDefault(true);
|
|
|
|
OkButton->setDefault(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
ApplyButton = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
|
|
|
|
ApplyButton->setAutoDefault(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
CloseButton = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
|
|
|
|
CloseButton->setAutoDefault(true);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// layouting
|
2005-06-07 19:22:20 +06:00
|
|
|
GroupButtonsLayout->addWidget(OkButton, 0, 0);
|
|
|
|
GroupButtonsLayout->addWidget(ApplyButton, 0, 1);
|
|
|
|
GroupButtonsLayout->addWidget(CloseButton, 0, 3);
|
|
|
|
GroupButtonsLayout->addColSpacing(2, 10);
|
|
|
|
GroupButtonsLayout->setColStretch(2, 10);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// layouting
|
2005-06-07 19:22:20 +06:00
|
|
|
topLayout->addWidget(GroupConstructors, 0, 0);
|
|
|
|
topLayout->addWidget(GroupArguments, 1, 0);
|
|
|
|
topLayout->addWidget(GroupButtons, 2, 0);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// Initialisations
|
2005-06-07 19:22:20 +06:00
|
|
|
XSpin->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
|
|
|
|
YSpin->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
|
|
|
|
ZSpin->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
|
|
|
|
AngleSpin->RangeStepAndValidator(-999999.999, +999999.999, 5.0, 3);
|
|
|
|
|
2005-07-01 16:42:32 +06:00
|
|
|
mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
mySMESHGUI->SetActiveDialogBox(this);
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
// Costruction of the logical filter for the elements: mesh/sub-mesh/group
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
|
|
|
|
SMESH_TypeFilter* aSmeshGroupFilter = new SMESH_TypeFilter (GROUP);
|
|
|
|
|
|
|
|
QPtrList<SUIT_SelectionFilter> aListOfFilters;
|
|
|
|
if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
|
|
|
|
if (aSmeshGroupFilter) aListOfFilters.append(aSmeshGroupFilter);
|
|
|
|
|
|
|
|
myElementsFilter = new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
|
|
|
|
myPathMeshFilter = new SMESH_TypeFilter (MESH);
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
Init();
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// signals-slots connections
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(OkButton, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
|
|
|
|
connect(CloseButton, SIGNAL(clicked()), this, SLOT(reject()));
|
|
|
|
connect(ApplyButton, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
|
|
|
|
|
|
|
|
connect(AddAngleButton, SIGNAL(clicked()), this, SLOT(OnAngleAdded()));
|
|
|
|
connect(RemoveAngleButton, SIGNAL(clicked()), this, SLOT(OnAngleRemoved()));
|
|
|
|
|
|
|
|
connect(GroupConstructors, SIGNAL(clicked(int)), SLOT(ConstructorsClicked(int)));
|
|
|
|
|
|
|
|
connect(SelectElementsButton, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
connect(SelectPathMeshButton, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
connect(SelectPathShapeButton, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
connect(SelectStartPointButton, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
connect(SelectBasePointButton, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
|
|
|
|
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
|
|
|
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(reject()));
|
|
|
|
|
|
|
|
connect(ElementsLineEdit, SIGNAL(textChanged(const QString&)),
|
|
|
|
SLOT(onTextChange(const QString&)));
|
|
|
|
connect(StartPointLineEdit, SIGNAL(textChanged(const QString&)),
|
|
|
|
SLOT(onTextChange(const QString&)));
|
|
|
|
|
|
|
|
connect(MeshCheck, SIGNAL(toggled(bool)), SLOT(onSelectMesh()));
|
|
|
|
connect(AnglesCheck, SIGNAL(toggled(bool)), SLOT(onAnglesCheck()));
|
|
|
|
connect(BasePointCheck, SIGNAL(toggled(bool)), SLOT(onBasePointCheck()));
|
|
|
|
|
|
|
|
AnglesList->installEventFilter(this);
|
|
|
|
ElementsLineEdit->installEventFilter(this);
|
|
|
|
StartPointLineEdit->installEventFilter(this);
|
|
|
|
XSpin->editor()->installEventFilter(this);
|
|
|
|
YSpin->editor()->installEventFilter(this);
|
|
|
|
ZSpin->editor()->installEventFilter(this);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// set position and show dialog box
|
2005-06-07 19:22:20 +06:00
|
|
|
int x, y;
|
|
|
|
mySMESHGUI->DefineDlgPosition(this, x, y);
|
|
|
|
this->move(x, y);
|
|
|
|
this->show(); // displays Dialog
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : ~SMESHGUI_ExtrusionAlongPathDlg()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : destructor
|
|
|
|
//=================================================================================
|
|
|
|
SMESHGUI_ExtrusionAlongPathDlg::~SMESHGUI_ExtrusionAlongPathDlg()
|
|
|
|
{
|
|
|
|
// no need to delete child widgets, Qt does it all for us
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : Init()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : initialization
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::Init (bool ResetControls)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
myBusy = false;
|
|
|
|
myEditCurrentArgument = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
myMesh = SMESH::SMESH_Mesh::_nil();
|
|
|
|
myIDSource = SMESH::SMESH_IDSource::_nil();
|
|
|
|
myMeshActor = 0;
|
|
|
|
myPathMesh = SMESH::SMESH_Mesh::_nil();
|
|
|
|
myPathShape = GEOM::GEOM_Object::_nil();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
ElementsLineEdit->clear();
|
|
|
|
PathMeshLineEdit->clear();
|
|
|
|
PathShapeLineEdit->clear();
|
|
|
|
StartPointLineEdit->clear();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (ResetControls) {
|
|
|
|
XSpin->SetValue(0.0);
|
|
|
|
YSpin->SetValue(0.0);
|
|
|
|
ZSpin->SetValue(0.0);
|
|
|
|
|
|
|
|
AngleSpin->SetValue(45);
|
|
|
|
MeshCheck->setChecked(false);
|
|
|
|
ConstructorsClicked(0);
|
2005-01-20 11:25:54 +05:00
|
|
|
onSelectMesh();
|
|
|
|
onAnglesCheck();
|
|
|
|
onBasePointCheck();
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
SetEditCurrentArgument(0);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : ConstructorsClicked()
|
|
|
|
// purpose : Called when user changes type of elements (1d / 2d)
|
2005-01-20 11:25:54 +05:00
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::ConstructorsClicked (int type)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myType == type) return;
|
|
|
|
|
|
|
|
disconnect(mySelectionMgr, 0, this, 0);
|
|
|
|
|
|
|
|
if (type == 0)
|
|
|
|
GroupArguments->setTitle(tr("EXTRUSION_1D"));
|
|
|
|
else if (type == 1)
|
|
|
|
GroupArguments->setTitle(tr("EXTRUSION_2D"));
|
|
|
|
|
|
|
|
// clear elements ID list
|
|
|
|
if (!MeshCheck->isChecked()) {
|
|
|
|
ElementsLineEdit->clear();
|
|
|
|
}
|
|
|
|
// set selection mode if necessary
|
|
|
|
if (myEditCurrentArgument == ElementsLineEdit) {
|
|
|
|
mySelectionMgr->clearSelected();
|
|
|
|
mySelectionMgr->clearFilters();
|
|
|
|
SMESH::SetPickable();
|
|
|
|
|
|
|
|
SMESH::SetPointRepresentation(false);
|
|
|
|
if (MeshCheck->isChecked()) {
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->installFilter(myElementsFilter);
|
|
|
|
} else {
|
|
|
|
if (type == 0)
|
2005-07-01 16:42:32 +06:00
|
|
|
{
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(EdgeSelection);
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
if (type == 1)
|
2005-07-01 16:42:32 +06:00
|
|
|
{
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(FaceSelection);
|
|
|
|
}
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myType = type;
|
|
|
|
}
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : ClickOnApply()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Called when user presses <Apply> button
|
|
|
|
//=================================================================================
|
|
|
|
bool SMESHGUI_ExtrusionAlongPathDlg::ClickOnApply()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (mySMESHGUI->isActiveStudyLocked())
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (myMesh->_is_nil() || MeshCheck->isChecked() && myIDSource->_is_nil() ||
|
|
|
|
!myMeshActor || myPathMesh->_is_nil() || myPathShape->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
|
|
|
|
SMESH::long_array_var anElementsId = new SMESH::long_array;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (MeshCheck->isChecked()) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// If "Select whole mesh, submesh or group" check box is on ->
|
|
|
|
// get all elements of the required type from the object selected
|
|
|
|
|
|
|
|
// if MESH object is selected
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!CORBA::is_nil(SMESH::SMESH_Mesh::_narrow(myIDSource))) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// get mesh
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow(myIDSource);
|
2005-01-20 11:25:54 +05:00
|
|
|
// get IDs from mesh...
|
2005-06-07 19:22:20 +06:00
|
|
|
if (Elements1dRB->isChecked())
|
2005-01-20 11:25:54 +05:00
|
|
|
// 1d elements
|
2005-06-07 19:22:20 +06:00
|
|
|
anElementsId = aMesh->GetElementsByType(SMESH::EDGE);
|
|
|
|
else if (Elements2dRB->isChecked()) {
|
|
|
|
anElementsId = aMesh->GetElementsByType(SMESH::FACE);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// SUBMESH is selected
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!CORBA::is_nil(SMESH::SMESH_subMesh::_narrow(myIDSource))) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// get submesh
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SMESH_subMesh_var aSubMesh = SMESH::SMESH_subMesh::_narrow(myIDSource);
|
2005-01-20 11:25:54 +05:00
|
|
|
// get IDs from submesh
|
2005-06-07 19:22:20 +06:00
|
|
|
if (Elements1dRB->isChecked())
|
2005-01-20 11:25:54 +05:00
|
|
|
// 1d elements
|
2005-06-07 19:22:20 +06:00
|
|
|
anElementsId = aSubMesh->GetElementsByType(SMESH::EDGE);
|
|
|
|
else if (Elements2dRB->isChecked())
|
2005-01-20 11:25:54 +05:00
|
|
|
// 2d elements
|
2005-06-07 19:22:20 +06:00
|
|
|
anElementsId = aSubMesh->GetElementsByType(SMESH::FACE);
|
|
|
|
}
|
2005-01-20 11:25:54 +05:00
|
|
|
// GROUP is selected
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!CORBA::is_nil(SMESH::SMESH_GroupBase::_narrow(myIDSource))) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// get smesh group
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow(myIDSource);
|
2005-01-20 11:25:54 +05:00
|
|
|
// get IDs from group
|
|
|
|
// 1d elements or 2d elements
|
2005-06-07 19:22:20 +06:00
|
|
|
if (Elements1dRB->isChecked() && aGroup->GetType() == SMESH::EDGE ||
|
|
|
|
Elements2dRB->isChecked() && aGroup->GetType() == SMESH::FACE)
|
2005-01-20 11:25:54 +05:00
|
|
|
anElementsId = aGroup->GetListOfID();
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
2005-01-20 11:25:54 +05:00
|
|
|
// If "Select whole mesh, submesh or group" check box is off ->
|
|
|
|
// use only elements of given type selected by user
|
|
|
|
|
|
|
|
SMDS_Mesh* aMesh = myMeshActor->GetObject()->GetMesh();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aMesh) {
|
|
|
|
QStringList aListElementsId = QStringList::split(" ", ElementsLineEdit->text(), false);
|
2005-01-20 11:25:54 +05:00
|
|
|
anElementsId = new SMESH::long_array;
|
2005-06-07 19:22:20 +06:00
|
|
|
anElementsId->length(aListElementsId.count());
|
2005-01-20 11:25:54 +05:00
|
|
|
bool bOk;
|
|
|
|
int j = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0; i < aListElementsId.count(); i++) {
|
|
|
|
long ind = aListElementsId[ i ].toLong(&bOk);
|
|
|
|
if (bOk) {
|
|
|
|
const SMDS_MeshElement* e = aMesh->FindElement(ind);
|
|
|
|
if (e) {
|
|
|
|
bool typeMatch = Elements1dRB->isChecked() && e->GetType() == SMDSAbs_Edge ||
|
2005-01-20 11:25:54 +05:00
|
|
|
Elements2dRB->isChecked() && e->GetType() == SMDSAbs_Face;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (typeMatch)
|
2005-01-20 11:25:54 +05:00
|
|
|
anElementsId[ j++ ] = ind;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
anElementsId->length(j);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (anElementsId->length() <= 0) {
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (StartPointLineEdit->text().stripWhiteSpace().isEmpty()) {
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
bool bOk;
|
2005-06-07 19:22:20 +06:00
|
|
|
long aNodeStart = StartPointLineEdit->text().toLong(&bOk);
|
|
|
|
if (!bOk) {
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
// get angles
|
|
|
|
SMESH::double_array_var anAngles = new SMESH::double_array;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (AnglesCheck->isChecked()) {
|
|
|
|
anAngles->length(AnglesList->count());
|
2005-01-20 11:25:54 +05:00
|
|
|
int j = 0;
|
|
|
|
bool bOk;
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0; i < AnglesList->count(); i++) {
|
|
|
|
double angle = AnglesList->text(i).toDouble(&bOk);
|
|
|
|
if (bOk)
|
2005-01-20 19:50:37 +05:00
|
|
|
anAngles[ j++ ] = angle*PI/180;
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
anAngles->length(j);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
// get base point
|
|
|
|
SMESH::PointStruct aBasePoint;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (BasePointCheck->isChecked()) {
|
2005-01-20 11:25:54 +05:00
|
|
|
aBasePoint.x = XSpin->GetValue();
|
|
|
|
aBasePoint.y = YSpin->GetValue();
|
|
|
|
aBasePoint.z = ZSpin->GetValue();
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
try {
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_OverrideCursor wc;
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SMESH_MeshEditor::Extrusion_Error retVal =
|
|
|
|
aMeshEditor->ExtrusionAlongPath(anElementsId.inout(), myPathMesh, myPathShape, aNodeStart,
|
|
|
|
AnglesCheck->isChecked(), anAngles.inout(),
|
|
|
|
BasePointCheck->isChecked(), aBasePoint);
|
|
|
|
|
|
|
|
//wc.stop();
|
|
|
|
wc.suspend();
|
|
|
|
switch (retVal) {
|
2005-01-20 19:50:37 +05:00
|
|
|
case SMESH::SMESH_MeshEditor::EXTR_NO_ELEMENTS:
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_MessageBox::warn1(SMESHGUI::desktop(),
|
|
|
|
tr("SMESH_ERROR"),
|
|
|
|
tr("NO_ELEMENTS_SELECTED"),
|
|
|
|
tr("SMESH_BUT_OK"));
|
2005-01-20 19:50:37 +05:00
|
|
|
return false; break;
|
|
|
|
case SMESH::SMESH_MeshEditor::EXTR_PATH_NOT_EDGE:
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_MessageBox::warn1(SMESHGUI::desktop(),
|
|
|
|
tr("SMESH_ERROR"),
|
|
|
|
tr("SELECTED_PATH_IS_NOT_EDGE"),
|
|
|
|
tr("SMESH_BUT_OK"));
|
2005-01-20 19:50:37 +05:00
|
|
|
return false; break;
|
|
|
|
case SMESH::SMESH_MeshEditor::EXTR_BAD_PATH_SHAPE:
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_MessageBox::warn1(SMESHGUI::desktop(),
|
|
|
|
tr("SMESH_ERROR"),
|
|
|
|
tr("BAD_SHAPE_TYPE"),
|
|
|
|
tr("SMESH_BUT_OK"));
|
2005-01-20 19:50:37 +05:00
|
|
|
return false; break;
|
|
|
|
case SMESH::SMESH_MeshEditor::EXTR_BAD_STARTING_NODE:
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_MessageBox::warn1(SMESHGUI::desktop(),
|
|
|
|
tr("SMESH_ERROR"),
|
|
|
|
tr("EXTR_BAD_STARTING_NODE"),
|
|
|
|
tr("SMESH_BUT_OK"));
|
2005-01-20 19:50:37 +05:00
|
|
|
return false; break;
|
|
|
|
case SMESH::SMESH_MeshEditor::EXTR_BAD_ANGLES_NUMBER:
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_MessageBox::warn1(SMESHGUI::desktop(),
|
|
|
|
tr("SMESH_ERROR"),
|
|
|
|
tr("WRONG_ANGLES_NUMBER"),
|
|
|
|
tr("SMESH_BUT_OK"));
|
2005-01-20 19:50:37 +05:00
|
|
|
return false; break;
|
|
|
|
case SMESH::SMESH_MeshEditor::EXTR_CANT_GET_TANGENT:
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_MessageBox::warn1(SMESHGUI::desktop(),
|
|
|
|
tr("SMESH_ERROR"),
|
|
|
|
tr("CANT_GET_TANGENT"),
|
|
|
|
tr("SMESH_BUT_OK"));
|
2005-01-20 19:50:37 +05:00
|
|
|
return false; break;
|
|
|
|
case SMESH::SMESH_MeshEditor::EXTR_OK:
|
|
|
|
break;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} catch (...) {
|
2005-01-20 11:25:54 +05:00
|
|
|
return false;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-11-11 13:56:51 +05:00
|
|
|
//mySelectionMgr->clearSelected();
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::UpdateView();
|
2005-06-07 19:22:20 +06:00
|
|
|
Init(false);
|
|
|
|
ConstructorsClicked(GetConstructorId());
|
2005-01-20 11:25:54 +05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : ClickOnOk()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Called when user presses <OK> button
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::ClickOnOk()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (ClickOnApply())
|
|
|
|
reject();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : reject()
|
|
|
|
// purpose : Called when dialog box is closed
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::reject()
|
|
|
|
{
|
|
|
|
disconnect(mySelectionMgr, 0, this, 0);
|
|
|
|
mySelectionMgr->clearFilters();
|
2005-11-11 13:56:51 +05:00
|
|
|
//mySelectionMgr->clearSelected();
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SetPickable(); // ???
|
|
|
|
SMESH::SetPointRepresentation(false);
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
mySMESHGUI->ResetState();
|
|
|
|
QDialog::reject();
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : onTextChange()
|
|
|
|
// purpose :
|
2005-01-20 11:25:54 +05:00
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::onTextChange (const QString& theNewText)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
|
|
|
QLineEdit* send = (QLineEdit*)sender();
|
|
|
|
|
|
|
|
// return if busy
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myBusy) return;
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// set busy flag
|
2005-06-07 19:22:20 +06:00
|
|
|
SetBusy sb (this);
|
|
|
|
|
|
|
|
if (send != StartPointLineEdit && send != ElementsLineEdit)
|
|
|
|
send = ElementsLineEdit;
|
|
|
|
|
|
|
|
if (send == ElementsLineEdit && myEditCurrentArgument == ElementsLineEdit) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// hilight entered elements
|
|
|
|
SMDS_Mesh* aMesh = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myMeshActor)
|
2005-01-20 11:25:54 +05:00
|
|
|
aMesh = myMeshActor->GetObject()->GetMesh();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (aMesh) {
|
|
|
|
//mySelectionMgr->clearSelected();
|
|
|
|
//mySelectionMgr->AddIObject(myMeshActor->getIO());
|
|
|
|
SALOME_ListIO aList;
|
|
|
|
aList.Append(myMeshActor->getIO());
|
|
|
|
mySelectionMgr->setSelectedObjects(aList, false);
|
|
|
|
|
|
|
|
QStringList aListId = QStringList::split(" ", theNewText, false);
|
2005-01-20 11:25:54 +05:00
|
|
|
bool bOk;
|
2005-06-07 19:22:20 +06:00
|
|
|
const Handle(SALOME_InteractiveObject)& anIO = myMeshActor->getIO();
|
|
|
|
TColStd_MapOfInteger newIndices;
|
|
|
|
for (int i = 0; i < aListId.count(); i++) {
|
|
|
|
long ind = aListId[ i ].toLong(&bOk);
|
|
|
|
if (bOk) {
|
|
|
|
const SMDS_MeshElement* e = aMesh->FindElement(ind);
|
|
|
|
if (e) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// check also type of element
|
2005-06-07 19:22:20 +06:00
|
|
|
bool typeMatch = Elements1dRB->isChecked() && e->GetType() == SMDSAbs_Edge ||
|
2005-01-20 11:25:54 +05:00
|
|
|
Elements2dRB->isChecked() && e->GetType() == SMDSAbs_Face;
|
2005-06-24 18:42:50 +06:00
|
|
|
if (typeMatch)
|
|
|
|
newIndices.Add(e->GetID());
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-24 18:42:50 +06:00
|
|
|
mySelector->AddOrRemoveIndex(anIO, newIndices, false);
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->highlight( anIO, true, true );
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else if (send == StartPointLineEdit &&
|
|
|
|
myEditCurrentArgument == StartPointLineEdit) {
|
|
|
|
if (!myPathMesh->_is_nil()) {
|
|
|
|
SMESH_Actor* aPathActor = SMESH::FindActorByObject(myPathMesh);
|
2005-01-20 11:25:54 +05:00
|
|
|
SMDS_Mesh* aMesh = 0;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aPathActor)
|
2005-01-20 11:25:54 +05:00
|
|
|
aMesh = aPathActor->GetObject()->GetMesh();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aMesh) {
|
|
|
|
//mySelectionMgr->clearSelected();
|
|
|
|
//mySelectionMgr->AddIObject(aPathActor->getIO());
|
|
|
|
SALOME_ListIO aList;
|
|
|
|
aList.Append(aPathActor->getIO());
|
|
|
|
mySelectionMgr->setSelectedObjects(aList, false);
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
bool bOk;
|
2005-06-07 19:22:20 +06:00
|
|
|
long ind = theNewText.toLong(&bOk);
|
|
|
|
if (bOk) {
|
|
|
|
const SMDS_MeshNode* n = aMesh->FindNode(ind);
|
|
|
|
if (n) {
|
|
|
|
//if (!mySelectionMgr->IsIndexSelected(aPathActor->getIO(), n->GetID())) {
|
|
|
|
TColStd_MapOfInteger newIndices;
|
2005-06-24 18:42:50 +06:00
|
|
|
newIndices.Add(n->GetID());
|
|
|
|
mySelector->AddOrRemoveIndex( aPathActor->getIO(), newIndices, false );
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->highlight( aPathActor->getIO(), true, true );
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : SelectionIntoArgument()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Called when selection as changed or other case
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::SelectionIntoArgument()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myBusy) return;
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
// return if dialog box is inactive
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!GroupButtons->isEnabled())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// selected objects count
|
2005-06-07 19:22:20 +06:00
|
|
|
const SALOME_ListIO& aList = mySelector->StoredIObjects();
|
|
|
|
int nbSel = aList.Extent();
|
|
|
|
if (nbSel != 1)
|
|
|
|
return;
|
2005-01-20 11:25:54 +05:00
|
|
|
|
|
|
|
// set busy flag
|
2005-06-07 19:22:20 +06:00
|
|
|
SetBusy sb (this);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myEditCurrentArgument == ElementsLineEdit) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// we are now selecting mesh elements (or whole mesh/submesh/group)
|
|
|
|
// reset
|
|
|
|
ElementsLineEdit->clear();
|
|
|
|
myMesh = SMESH::SMESH_Mesh::_nil();
|
|
|
|
myIDSource = SMESH::SMESH_IDSource::_nil();
|
|
|
|
myMeshActor = 0;
|
|
|
|
|
|
|
|
// try to get mesh from selection
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) IO = aList.First();
|
|
|
|
myMesh = SMESH::GetMeshByIO(IO);
|
|
|
|
if (myMesh->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
// find actor
|
2005-06-07 19:22:20 +06:00
|
|
|
myMeshActor = SMESH::FindActorByObject(myMesh);
|
|
|
|
if (!myMeshActor)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (MeshCheck->isChecked()) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// If "Select whole mesh, submesh or group" check box is on ->
|
|
|
|
// get ID source and put it's name to the edit box
|
|
|
|
QString aString;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myIDSource = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>(IO);
|
|
|
|
ElementsLineEdit->setText(aString);
|
|
|
|
} else {
|
2005-01-20 11:25:54 +05:00
|
|
|
// If "Select whole mesh, submesh or group" check box is off ->
|
|
|
|
// try to get selected elements IDs
|
|
|
|
QString aString;
|
2005-06-07 19:22:20 +06:00
|
|
|
//int aNbUnits = SMESH::GetNameOfSelectedElements(mySelectionMgr, aString);
|
|
|
|
SMESH::GetNameOfSelectedElements(mySelector, myMeshActor->getIO(), aString);
|
|
|
|
ElementsLineEdit->setText(aString);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else if (myEditCurrentArgument == PathMeshLineEdit) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// we are now selecting path mesh
|
|
|
|
// reset
|
|
|
|
PathMeshLineEdit->clear();
|
|
|
|
myPathMesh = SMESH::SMESH_Mesh::_nil();
|
|
|
|
PathShapeLineEdit->clear();
|
|
|
|
myPathShape = GEOM::GEOM_Object::_nil();
|
|
|
|
StartPointLineEdit->clear();
|
|
|
|
|
|
|
|
// try to get mesh from selection
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) IO = aList.First();
|
|
|
|
myPathMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO);
|
|
|
|
if(myPathMesh->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
QString aString;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
|
|
|
|
PathMeshLineEdit->setText(aString);
|
|
|
|
} else if (myEditCurrentArgument == PathShapeLineEdit) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// we are now selecting path mesh
|
|
|
|
// reset
|
|
|
|
PathShapeLineEdit->clear();
|
|
|
|
myPathShape = GEOM::GEOM_Object::_nil();
|
|
|
|
StartPointLineEdit->clear();
|
|
|
|
|
|
|
|
// return if path mesh is not yet selected
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myPathMesh->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// try to get shape from selection
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) IO = aList.First();
|
|
|
|
myPathShape = SMESH::IObjectToInterface<GEOM::GEOM_Object>(IO);
|
|
|
|
if (myPathShape->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
QString aString;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
|
|
|
|
PathShapeLineEdit->setText(aString);
|
|
|
|
} else if (myEditCurrentArgument == StartPointLineEdit) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// we are now selecting start point of path
|
|
|
|
// reset
|
|
|
|
StartPointLineEdit->clear();
|
|
|
|
|
|
|
|
// return if path mesh or path shape is not yet selected
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myPathMesh->_is_nil() || myPathShape->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// try to get shape from selection
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) IO = aList.First();
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
QString aString;
|
2005-06-07 19:22:20 +06:00
|
|
|
int aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, myMeshActor->getIO(), aString);
|
|
|
|
if (aNbUnits == 1)
|
|
|
|
StartPointLineEdit->setText(aString.stripWhiteSpace());
|
|
|
|
|
|
|
|
} else if (myEditCurrentArgument == XSpin) {
|
2005-01-20 11:25:54 +05:00
|
|
|
// we are now selecting base point
|
|
|
|
// reset is not performed here!
|
|
|
|
|
|
|
|
// return if is not enabled
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!BasePointGrp->isEnabled())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// try to get shape from selection
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) IO = aList.First();
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
// check if geom vertex is selected
|
2005-06-07 19:22:20 +06:00
|
|
|
GEOM::GEOM_Object_var aGeomObj = SMESH::IObjectToInterface<GEOM::GEOM_Object>(IO);
|
2005-01-20 11:25:54 +05:00
|
|
|
TopoDS_Vertex aVertex;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!aGeomObj->_is_nil()) {
|
|
|
|
if (aGeomObj->IsShape() && GEOMBase::GetShape(aGeomObj, aVertex) && !aVertex.IsNull()) {
|
|
|
|
gp_Pnt aPnt = BRep_Tool::Pnt(aVertex);
|
|
|
|
XSpin->SetValue(aPnt.X());
|
|
|
|
YSpin->SetValue(aPnt.Y());
|
|
|
|
ZSpin->SetValue(aPnt.Z());
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if smesh node is selected
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SMESH_Mesh_var aMesh = SMESH::GetMeshByIO(IO);
|
|
|
|
if (aMesh->_is_nil())
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
QString aString;
|
2005-06-07 19:22:20 +06:00
|
|
|
int aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, myMeshActor->getIO(), aString);
|
2005-01-20 11:25:54 +05:00
|
|
|
// return if more than one node is selected
|
2005-06-07 19:22:20 +06:00
|
|
|
if (aNbUnits != 1)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
SMESH_Actor* aMeshActor = SMESH::FindActorByObject(aMesh);
|
|
|
|
if (!aMeshActor)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
SMDS_Mesh* mesh = aMeshActor->GetObject()->GetMesh();
|
|
|
|
if (!mesh)
|
|
|
|
return;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
const SMDS_MeshNode* n = mesh->FindNode(aString.toLong());
|
|
|
|
if (!n)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
XSpin->SetValue(n->X());
|
|
|
|
YSpin->SetValue(n->Y());
|
|
|
|
ZSpin->SetValue(n->Z());
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : SetEditCurrentArgument()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::SetEditCurrentArgument()
|
|
|
|
{
|
|
|
|
QToolButton* send = (QToolButton*)sender();
|
2005-06-07 19:22:20 +06:00
|
|
|
if (send != SelectElementsButton &&
|
|
|
|
send != SelectPathMeshButton &&
|
|
|
|
send != SelectPathShapeButton &&
|
|
|
|
send != SelectStartPointButton &&
|
|
|
|
send != SelectBasePointButton)
|
2005-01-20 11:25:54 +05:00
|
|
|
return;
|
2005-06-07 19:22:20 +06:00
|
|
|
SetEditCurrentArgument(send);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : SetEditCurrentArgument()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::SetEditCurrentArgument (QToolButton* button)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
disconnect(mySelectionMgr, 0, this, 0);
|
|
|
|
mySelectionMgr->clearSelected();
|
|
|
|
mySelectionMgr->clearFilters();
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::SetPickable();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (button == SelectElementsButton) {
|
2005-01-20 11:25:54 +05:00
|
|
|
myEditCurrentArgument = ElementsLineEdit;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SetPointRepresentation(false);
|
|
|
|
if (MeshCheck->isChecked()) {
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->installFilter(myElementsFilter);
|
|
|
|
} else {
|
|
|
|
if (Elements1dRB->isChecked())
|
2005-07-01 16:42:32 +06:00
|
|
|
{
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(EdgeSelection);
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
else if (Elements2dRB->isChecked())
|
2005-07-01 16:42:32 +06:00
|
|
|
{
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(FaceSelection);
|
|
|
|
}
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
} else if (button == SelectPathMeshButton) {
|
2005-01-20 11:25:54 +05:00
|
|
|
myEditCurrentArgument = PathMeshLineEdit;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SetPointRepresentation(false);
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
mySelectionMgr->installFilter(myPathMeshFilter);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
else if (button == SelectPathShapeButton) {
|
2005-01-20 11:25:54 +05:00
|
|
|
myEditCurrentArgument = PathShapeLineEdit;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SetPointRepresentation(false);
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!myPathMesh->_is_nil()) {
|
2005-01-20 11:25:54 +05:00
|
|
|
GEOM::GEOM_Object_var aMainShape = myPathMesh->GetShapeToMesh();
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH_Actor* aPathActor = SMESH::FindActorByObject(myPathMesh);
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!aMainShape->_is_nil() && aPathActor)
|
|
|
|
mySelectionMgr->installFilter(new SMESH_NumberFilter ("GEOM", TopAbs_SHAPE, -1,
|
|
|
|
TopAbs_EDGE, aMainShape));
|
|
|
|
//SMESH::SetPickable(aPathActor);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
else if (button == SelectStartPointButton) {
|
2005-01-20 11:25:54 +05:00
|
|
|
myEditCurrentArgument = StartPointLineEdit;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!myPathMesh->_is_nil()) {
|
|
|
|
SMESH_Actor* aPathActor = SMESH::FindActorByObject(myPathMesh);
|
|
|
|
if (aPathActor) {
|
|
|
|
SMESH::SetPointRepresentation(true);
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(NodeSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SetPickable(aPathActor);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
else if (button == SelectBasePointButton) {
|
2005-01-20 11:25:54 +05:00
|
|
|
myEditCurrentArgument = XSpin;
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESH::SetPointRepresentation(true);
|
2005-07-01 16:42:32 +06:00
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
aViewWindow->SetSelectionMode(NodeSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter(MESHorSUBMESH);
|
|
|
|
SMESH_TypeFilter* aSmeshGroupFilter = new SMESH_TypeFilter(GROUP);
|
|
|
|
SMESH_NumberFilter* aVertexFilter = new SMESH_NumberFilter ("GEOM", TopAbs_SHAPE,
|
|
|
|
-1, TopAbs_VERTEX);
|
|
|
|
QPtrList<SUIT_SelectionFilter> aListOfFilters;
|
|
|
|
if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
|
|
|
|
if (aSmeshGroupFilter) aListOfFilters.append(aSmeshGroupFilter);
|
|
|
|
if (aVertexFilter) aListOfFilters.append(aVertexFilter);
|
|
|
|
|
|
|
|
mySelectionMgr->installFilter(new SMESH_LogicalFilter
|
|
|
|
(aListOfFilters, SMESH_LogicalFilter::LO_OR));
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myEditCurrentArgument && !myEditCurrentArgument->hasFocus())
|
2005-01-20 11:25:54 +05:00
|
|
|
myEditCurrentArgument->setFocus();
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
|
2005-01-20 11:25:54 +05:00
|
|
|
SelectionIntoArgument();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : DeactivateActiveDialog()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Deactivates this dialog
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::DeactivateActiveDialog()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (GroupConstructors->isEnabled()) {
|
|
|
|
GroupConstructors->setEnabled(false);
|
|
|
|
GroupArguments->setEnabled(false);
|
|
|
|
GroupButtons->setEnabled(false);
|
|
|
|
mySMESHGUI->ResetState();
|
|
|
|
mySMESHGUI->SetActiveDialogBox(0);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : ActivateThisDialog()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Activates this dialog
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::ActivateThisDialog()
|
|
|
|
{
|
|
|
|
// Emit a signal to deactivate the active dialog
|
2005-06-07 19:22:20 +06:00
|
|
|
mySMESHGUI->EmitSignalDeactivateDialog();
|
|
|
|
GroupConstructors->setEnabled(true);
|
|
|
|
GroupArguments->setEnabled(true);
|
|
|
|
GroupButtons->setEnabled(true);
|
|
|
|
|
|
|
|
mySMESHGUI->SetActiveDialogBox(this);
|
|
|
|
|
|
|
|
ConstructorsClicked(GetConstructorId());
|
2005-01-20 11:25:54 +05:00
|
|
|
SelectionIntoArgument();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : enterEvent()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Mouse enter event
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::enterEvent (QEvent*)
|
2005-01-20 11:25:54 +05:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!GroupConstructors->isEnabled())
|
|
|
|
ActivateThisDialog();
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : onSelectMesh()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose :
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::onSelectMesh()
|
|
|
|
{
|
|
|
|
bool toSelectMesh = MeshCheck->isChecked();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
ElementsLineEdit->setReadOnly(toSelectMesh);
|
|
|
|
ElementsLab->setText(toSelectMesh ? tr("SMESH_NAME") : tr("SMESH_ID_ELEMENTS"));
|
2005-01-20 11:25:54 +05:00
|
|
|
ElementsLineEdit->clear();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
SetEditCurrentArgument(SelectElementsButton);
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : GetConstructorId()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
int SMESHGUI_ExtrusionAlongPathDlg::GetConstructorId()
|
|
|
|
{
|
|
|
|
if (GroupConstructors != NULL && GroupConstructors->selected() != NULL)
|
|
|
|
return GroupConstructors->id(GroupConstructors->selected());
|
|
|
|
return -1;
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : onAnglesCheck()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : called when "Use Angles" check box is switched
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::onAnglesCheck()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
AnglesGrp->setEnabled(AnglesCheck->isChecked());
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : onBasePointCheck()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : called when "Use Base Point" check box is switched
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::onBasePointCheck()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
BasePointGrp->setEnabled(BasePointCheck->isChecked());
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : OnAngleAdded()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Called when user adds angle to the list
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::OnAngleAdded()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
AnglesList->insertItem(QString::number(AngleSpin->GetValue()));
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
// function : OnAngleRemoved()
|
2005-01-20 11:25:54 +05:00
|
|
|
// purpose : Called when user removes angle(s) from the list
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHGUI_ExtrusionAlongPathDlg::OnAngleRemoved()
|
|
|
|
{
|
|
|
|
QList<QListBoxItem> aList;
|
2005-06-07 19:22:20 +06:00
|
|
|
aList.setAutoDelete(false);
|
|
|
|
for (int i = 0; i < AnglesList->count(); i++)
|
|
|
|
if (AnglesList->isSelected(i))
|
|
|
|
aList.append(AnglesList->item(i));
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
for (int i = 0; i < aList.count(); i++)
|
|
|
|
delete aList.at(i);
|
2005-01-20 11:25:54 +05:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
//=================================================================================
|
|
|
|
// function : eventFilter()
|
|
|
|
// purpose : event filter ???
|
|
|
|
//=================================================================================
|
|
|
|
bool SMESHGUI_ExtrusionAlongPathDlg::eventFilter (QObject* object, QEvent* event)
|
|
|
|
{
|
|
|
|
if (event->type() == QEvent::KeyPress) {
|
|
|
|
QKeyEvent* ke = (QKeyEvent*)event;
|
|
|
|
if (object == AnglesList) {
|
|
|
|
if (ke->key() == Key_Delete)
|
|
|
|
OnAngleRemoved();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->type() == QEvent::FocusIn) {
|
|
|
|
if (object == ElementsLineEdit) {
|
|
|
|
if (myEditCurrentArgument != ElementsLineEdit)
|
|
|
|
SetEditCurrentArgument(SelectElementsButton);
|
|
|
|
}
|
|
|
|
else if (object == StartPointLineEdit) {
|
|
|
|
if (myEditCurrentArgument != StartPointLineEdit)
|
|
|
|
SetEditCurrentArgument(SelectStartPointButton);
|
|
|
|
}
|
|
|
|
else if (object == XSpin->editor() || object == YSpin->editor() || object == ZSpin->editor()) {
|
|
|
|
if (myEditCurrentArgument != XSpin)
|
|
|
|
SetEditCurrentArgument(SelectBasePointButton);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QDialog::eventFilter(object, event);
|
|
|
|
}
|