2013-04-01 19:05:47 +06:00
|
|
|
// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
|
2003-07-10 19:18:22 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2005-06-07 19:22:20 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// 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.
|
2005-06-07 19:22:20 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// 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.
|
2005-06-07 19:22:20 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// 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
|
2005-06-07 19:22:20 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2003-07-10 19:18:22 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SMESH SMESHGUI : GUI for SMESH component
|
|
|
|
// File : SMESHGUI_NodesDlg.cxx
|
|
|
|
// Author : Nicolas REJNERI, Open CASCADE S.A.S.
|
|
|
|
// SMESH includes
|
2003-07-10 19:18:22 +06:00
|
|
|
//
|
2003-05-19 20:07:00 +06:00
|
|
|
#include "SMESHGUI_NodesDlg.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
#include "SMESHGUI.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESHGUI_SpinBox.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "SMESHGUI_Utils.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESHGUI_VTKUtils.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "SMESHGUI_MeshUtils.h"
|
2012-08-09 16:03:55 +06:00
|
|
|
#include "SMESHGUI_GroupUtils.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <SMESH_Actor.h>
|
|
|
|
#include <SMESH_ActorUtils.h>
|
|
|
|
#include <SMESH_ObjectDef.h>
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <SMDS_Mesh.hxx>
|
|
|
|
#include <SMDS_MeshNode.hxx>
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SALOME GUI includes
|
|
|
|
#include <SUIT_Session.h>
|
|
|
|
#include <SUIT_OverrideCursor.h>
|
|
|
|
#include <SUIT_MessageBox.h>
|
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
#include <SUIT_ResourceMgr.h>
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <LightApp_Application.h>
|
|
|
|
#include <LightApp_SelectionMgr.h>
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
#include <SalomeApp_Application.h>
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <SVTK_ViewWindow.h>
|
2012-08-09 16:03:55 +06:00
|
|
|
#include <VTKViewer_Algorithm.h>
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <VTKViewer_CellLocationsArray.h>
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SALOME KERNEL includes
|
|
|
|
#include <SALOMEDS_Study.hxx>
|
|
|
|
#include <SALOMEDS_SObject.hxx>
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <utilities.h>
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// VTK includes
|
2003-05-19 20:07:00 +06:00
|
|
|
#include <vtkIdList.h>
|
2004-12-01 15:48:31 +05:00
|
|
|
#include <vtkCellArray.h>
|
|
|
|
#include <vtkUnsignedCharArray.h>
|
|
|
|
#include <vtkUnstructuredGrid.h>
|
|
|
|
#include <vtkDataSetMapper.h>
|
|
|
|
#include <vtkRenderer.h>
|
2006-02-07 20:01:11 +05:00
|
|
|
#include <vtkProperty.h>
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <vtkPoints.h>
|
|
|
|
|
|
|
|
// Qt includes
|
2012-08-09 16:03:55 +06:00
|
|
|
#include <QComboBox>
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QRadioButton>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QButtonGroup>
|
|
|
|
|
|
|
|
// IDL includes
|
|
|
|
#include <SALOMEconfig.h>
|
2008-03-07 12:47:05 +05:00
|
|
|
#include CORBA_SERVER_HEADER(SMESH_MeshEditor)
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#define SPACING 6
|
|
|
|
#define MARGIN 11
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
namespace SMESH
|
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
long AddNode( SMESH::SMESH_Mesh_ptr theMesh, float x, float y, float z, const QStringList& theParameters )
|
2005-06-07 19:22:20 +06:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
long aNodeId = -1;
|
2005-06-07 19:22:20 +06:00
|
|
|
SUIT_OverrideCursor wc;
|
|
|
|
try {
|
2009-02-17 10:27:49 +05:00
|
|
|
_PTR(SObject) aSobj = SMESH::FindSObject( theMesh );
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::SMESH_MeshEditor_var aMeshEditor = theMesh->GetMeshEditor();
|
2012-08-09 16:03:55 +06:00
|
|
|
theMesh->SetParameters( theParameters.join(":").toLatin1().constData() );
|
|
|
|
aNodeId = aMeshEditor->AddNode( x, y, z );
|
2005-06-07 19:22:20 +06:00
|
|
|
_PTR(Study) aStudy = GetActiveStudyDocument();
|
2004-12-01 15:48:31 +05:00
|
|
|
CORBA::Long anId = aStudy->StudyId();
|
2009-02-17 10:27:49 +05:00
|
|
|
if (TVisualObjPtr aVisualObj = SMESH::GetVisualObj( anId, aSobj->GetID().c_str() ) ) {
|
2012-08-09 16:03:55 +06:00
|
|
|
aVisualObj->Update( true );
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
catch ( SALOME::SALOME_Exception& exc ) {
|
|
|
|
INFOS( "Follow exception was cought:\n\t" << exc.details.text );
|
|
|
|
}
|
|
|
|
catch ( const std::exception& exc ) {
|
|
|
|
INFOS( "Follow exception was cought:\n\t" << exc.what() );
|
|
|
|
}
|
|
|
|
catch ( ... ) {
|
|
|
|
INFOS( "Unknown exception was cought !!!" );
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
return aNodeId;
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
class TNodeSimulation
|
|
|
|
{
|
|
|
|
SVTK_ViewWindow* myViewWindow;
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SALOME_Actor* myPreviewActor;
|
2004-12-01 15:48:31 +05:00
|
|
|
vtkDataSetMapper* myMapper;
|
2009-02-17 10:27:49 +05:00
|
|
|
vtkPoints* myPoints;
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
public:
|
2009-02-17 10:27:49 +05:00
|
|
|
TNodeSimulation( SVTK_ViewWindow* theViewWindow ):
|
|
|
|
myViewWindow( theViewWindow )
|
2004-12-01 15:48:31 +05:00
|
|
|
{
|
|
|
|
vtkUnstructuredGrid* aGrid = vtkUnstructuredGrid::New();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
// Create points
|
|
|
|
myPoints = vtkPoints::New();
|
2009-02-17 10:27:49 +05:00
|
|
|
myPoints->SetNumberOfPoints( 1 );
|
|
|
|
myPoints->SetPoint( 0, 0.0, 0.0, 0.0 );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
// Create cells
|
|
|
|
vtkIdList *anIdList = vtkIdList::New();
|
2009-02-17 10:27:49 +05:00
|
|
|
anIdList->SetNumberOfIds( 1 );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
vtkCellArray *aCells = vtkCellArray::New();
|
2009-02-17 10:27:49 +05:00
|
|
|
aCells->Allocate( 2, 0 );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
vtkUnsignedCharArray* aCellTypesArray = vtkUnsignedCharArray::New();
|
2009-02-17 10:27:49 +05:00
|
|
|
aCellTypesArray->SetNumberOfComponents( 1 );
|
|
|
|
aCellTypesArray->Allocate( 1 );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
anIdList->SetId( 0, 0 );
|
|
|
|
aCells->InsertNextCell( anIdList );
|
|
|
|
aCellTypesArray->InsertNextValue( VTK_VERTEX );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
VTKViewer_CellLocationsArray* aCellLocationsArray = VTKViewer_CellLocationsArray::New();
|
2009-02-17 10:27:49 +05:00
|
|
|
aCellLocationsArray->SetNumberOfComponents( 1 );
|
|
|
|
aCellLocationsArray->SetNumberOfTuples( 1 );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
aCells->InitTraversal();
|
2008-03-07 12:47:05 +05:00
|
|
|
vtkIdType npts = 0;
|
2009-02-17 10:27:49 +05:00
|
|
|
aCellLocationsArray->SetValue( 0, aCells->GetTraversalLocation( npts ) );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
aGrid->SetCells( aCellTypesArray, aCellLocationsArray, aCells );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
aGrid->SetPoints( myPoints );
|
|
|
|
aGrid->SetCells( aCellTypesArray, aCellLocationsArray, aCells );
|
2004-12-01 15:48:31 +05:00
|
|
|
aCellLocationsArray->Delete();
|
|
|
|
aCellTypesArray->Delete();
|
|
|
|
aCells->Delete();
|
2005-06-07 19:22:20 +06:00
|
|
|
anIdList->Delete();
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
// Create and display actor
|
|
|
|
myMapper = vtkDataSetMapper::New();
|
2013-03-01 19:13:25 +06:00
|
|
|
myMapper->SetInputData( aGrid );
|
2004-12-01 15:48:31 +05:00
|
|
|
aGrid->Delete();
|
|
|
|
|
|
|
|
myPreviewActor = SALOME_Actor::New();
|
2009-02-17 10:27:49 +05:00
|
|
|
myPreviewActor->SetInfinitive( true );
|
2004-12-01 15:48:31 +05:00
|
|
|
myPreviewActor->VisibilityOff();
|
|
|
|
myPreviewActor->PickableOff();
|
2009-02-17 10:27:49 +05:00
|
|
|
myPreviewActor->SetMapper( myMapper );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
vtkProperty* aProp = vtkProperty::New();
|
|
|
|
aProp->SetRepresentationToPoints();
|
|
|
|
|
2013-03-01 19:13:25 +06:00
|
|
|
double anRGB[3];
|
2005-06-27 17:29:58 +06:00
|
|
|
GetColor( "SMESH", "node_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 255, 0 ) );
|
|
|
|
aProp->SetColor( anRGB[0], anRGB[1], anRGB[2] );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-03-01 19:13:25 +06:00
|
|
|
double aPointSize = GetFloat( "SMESH:node_size", 3 );
|
2005-06-27 17:29:58 +06:00
|
|
|
aProp->SetPointSize( aPointSize );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-06-27 17:29:58 +06:00
|
|
|
myPreviewActor->SetProperty( aProp );
|
2004-12-01 15:48:31 +05:00
|
|
|
aProp->Delete();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myViewWindow->AddActor( myPreviewActor );
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SetPosition( float x, float y, float z )
|
2005-06-07 19:22:20 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
myPoints->SetPoint( 0, x, y, z );
|
2004-12-01 15:48:31 +05:00
|
|
|
myPoints->Modified();
|
2009-02-17 10:27:49 +05:00
|
|
|
SetVisibility( true );
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SetVisibility( bool theVisibility )
|
2005-06-07 19:22:20 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
myPreviewActor->SetVisibility( theVisibility );
|
2004-12-01 15:48:31 +05:00
|
|
|
RepaintCurrentView();
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
~TNodeSimulation()
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
myViewWindow->RemoveActor( myPreviewActor );
|
2004-12-01 15:48:31 +05:00
|
|
|
myPreviewActor->Delete();
|
|
|
|
|
|
|
|
myMapper->RemoveAllInputs();
|
|
|
|
myMapper->Delete();
|
|
|
|
|
|
|
|
myPoints->Delete();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
//=================================================================================
|
|
|
|
// class : SMESHGUI_NodesDlg()
|
2005-06-07 19:22:20 +06:00
|
|
|
// purpose :
|
2003-05-19 20:07:00 +06:00
|
|
|
//=================================================================================
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_NodesDlg::SMESHGUI_NodesDlg( SMESHGUI* theModule ):
|
|
|
|
QDialog( SMESH::GetDesktop( theModule ) ),
|
|
|
|
mySelector( SMESH::GetViewWindow( theModule )->GetSelector() ),
|
|
|
|
mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
|
|
|
|
mySMESHGUI( theModule )
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
setModal( false );
|
|
|
|
setAttribute( Qt::WA_DeleteOnClose, true );
|
|
|
|
setWindowTitle( tr("MESH_NODE_TITLE") );
|
|
|
|
setSizeGripEnabled( true );
|
|
|
|
|
|
|
|
mySimulation = new SMESH::TNodeSimulation( SMESH::GetViewWindow( mySMESHGUI ) );
|
|
|
|
|
|
|
|
QPixmap image0( SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap( "SMESH",
|
2012-08-09 16:03:55 +06:00
|
|
|
tr( "ICON_DLG_NODE" ) ) );
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
QVBoxLayout* SMESHGUI_NodesDlgLayout = new QVBoxLayout( this );
|
|
|
|
SMESHGUI_NodesDlgLayout->setSpacing( SPACING );
|
|
|
|
SMESHGUI_NodesDlgLayout->setMargin( MARGIN );
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
GroupConstructors = new QGroupBox( tr( "MESH_NODE" ), this );
|
|
|
|
QButtonGroup* ButtonGroup = new QButtonGroup(this);
|
|
|
|
QHBoxLayout* GroupConstructorsLayout = new QHBoxLayout( GroupConstructors );
|
|
|
|
GroupConstructorsLayout->setSpacing( SPACING );
|
|
|
|
GroupConstructorsLayout->setMargin( MARGIN );
|
|
|
|
|
|
|
|
Constructor1 = new QRadioButton( GroupConstructors );
|
|
|
|
Constructor1->setIcon( image0 );
|
|
|
|
Constructor1->setChecked( true );
|
|
|
|
|
|
|
|
GroupConstructorsLayout->addWidget( Constructor1 );
|
|
|
|
ButtonGroup->addButton( Constructor1, 0 );
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
/***************************************************************/
|
2009-02-17 10:27:49 +05:00
|
|
|
GroupCoordinates = new QGroupBox( tr( "SMESH_COORDINATES" ), this );
|
|
|
|
QHBoxLayout* GroupCoordinatesLayout = new QHBoxLayout(GroupCoordinates);
|
|
|
|
GroupCoordinatesLayout->setSpacing(SPACING);
|
|
|
|
GroupCoordinatesLayout->setMargin(MARGIN);
|
|
|
|
|
|
|
|
TextLabel_X = new QLabel( tr( "SMESH_X" ), GroupCoordinates );
|
|
|
|
SpinBox_X = new SMESHGUI_SpinBox( GroupCoordinates );
|
|
|
|
|
|
|
|
TextLabel_Y = new QLabel( tr( "SMESH_Y" ), GroupCoordinates );
|
|
|
|
SpinBox_Y = new SMESHGUI_SpinBox( GroupCoordinates );
|
|
|
|
|
|
|
|
TextLabel_Z = new QLabel( tr( "SMESH_Z" ), GroupCoordinates );
|
|
|
|
SpinBox_Z = new SMESHGUI_SpinBox( GroupCoordinates );
|
|
|
|
|
|
|
|
GroupCoordinatesLayout->addWidget( TextLabel_X );
|
2012-08-09 16:03:55 +06:00
|
|
|
GroupCoordinatesLayout->addWidget( SpinBox_X );
|
2009-02-17 10:27:49 +05:00
|
|
|
GroupCoordinatesLayout->addWidget( TextLabel_Y);
|
|
|
|
GroupCoordinatesLayout->addWidget( SpinBox_Y );
|
|
|
|
GroupCoordinatesLayout->addWidget( TextLabel_Z );
|
|
|
|
GroupCoordinatesLayout->addWidget( SpinBox_Z );
|
2012-08-09 16:03:55 +06:00
|
|
|
GroupCoordinatesLayout->setStretch(1, 1);
|
|
|
|
GroupCoordinatesLayout->setStretch(3, 1);
|
|
|
|
GroupCoordinatesLayout->setStretch(5, 1);
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
GroupGroups = new QGroupBox( tr( "SMESH_ADD_TO_GROUP" ), this );
|
|
|
|
GroupGroups->setCheckable( true );
|
|
|
|
QHBoxLayout* GroupGroupsLayout = new QHBoxLayout(GroupGroups);
|
|
|
|
GroupGroupsLayout->setSpacing(SPACING);
|
|
|
|
GroupGroupsLayout->setMargin(MARGIN);
|
|
|
|
|
|
|
|
TextLabel_GroupName = new QLabel( tr( "SMESH_GROUP" ), GroupGroups );
|
|
|
|
ComboBox_GroupName = new QComboBox( GroupGroups );
|
|
|
|
ComboBox_GroupName->setEditable( true );
|
|
|
|
ComboBox_GroupName->setInsertPolicy( QComboBox::NoInsert );
|
|
|
|
|
|
|
|
GroupGroupsLayout->addWidget( TextLabel_GroupName );
|
|
|
|
GroupGroupsLayout->addWidget( ComboBox_GroupName, 1 );
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
/***************************************************************/
|
2009-02-17 10:27:49 +05:00
|
|
|
GroupButtons = new QGroupBox( this );
|
|
|
|
QHBoxLayout* GroupButtonsLayout = new QHBoxLayout( GroupButtons );
|
|
|
|
GroupButtonsLayout->setSpacing( SPACING );
|
|
|
|
GroupButtonsLayout->setMargin( MARGIN );
|
|
|
|
buttonOk = new QPushButton( tr( "SMESH_BUT_APPLY_AND_CLOSE" ), GroupButtons );
|
|
|
|
buttonOk->setAutoDefault( true );
|
|
|
|
buttonOk->setDefault( true );
|
|
|
|
buttonApply = new QPushButton( tr( "SMESH_BUT_APPLY" ), GroupButtons );
|
|
|
|
buttonApply->setAutoDefault( true );
|
|
|
|
buttonCancel = new QPushButton( tr( "SMESH_BUT_CLOSE" ), GroupButtons );
|
|
|
|
buttonCancel->setAutoDefault( true );
|
|
|
|
buttonHelp = new QPushButton( tr( "SMESH_BUT_HELP" ), GroupButtons );
|
|
|
|
buttonHelp->setAutoDefault( true );
|
|
|
|
|
|
|
|
GroupButtonsLayout->addWidget( buttonOk );
|
|
|
|
GroupButtonsLayout->addSpacing( 10 );
|
|
|
|
GroupButtonsLayout->addWidget( buttonApply );
|
|
|
|
GroupButtonsLayout->addSpacing( 10 );
|
|
|
|
GroupButtonsLayout->addStretch();
|
|
|
|
GroupButtonsLayout->addWidget( buttonCancel );
|
|
|
|
GroupButtonsLayout->addWidget( buttonHelp );
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
/***************************************************************/
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_NodesDlgLayout->addWidget( GroupConstructors );
|
|
|
|
SMESHGUI_NodesDlgLayout->addWidget( GroupCoordinates );
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESHGUI_NodesDlgLayout->addWidget( GroupGroups );
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_NodesDlgLayout->addWidget( GroupButtons );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
myHelpFileName = "adding_nodes_and_elements_page.html#adding_nodes_anchor";
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
/* Initialisation and display */
|
2005-06-08 12:18:53 +06:00
|
|
|
Init();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : ~SMESHGUI_NodesDlg()
|
|
|
|
// purpose : Destructor
|
|
|
|
//=======================================================================
|
|
|
|
SMESHGUI_NodesDlg::~SMESHGUI_NodesDlg()
|
2004-12-01 15:48:31 +05:00
|
|
|
{
|
|
|
|
delete mySimulation;
|
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : Init()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_NodesDlg::Init()
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
|
|
|
/* Get setting of step value from file configuration */
|
2009-02-17 10:27:49 +05:00
|
|
|
double step = 25.0;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
/* min, max, step and decimals for spin boxes */
|
2012-08-09 16:03:55 +06:00
|
|
|
SpinBox_X->RangeStepAndValidator( COORD_MIN, COORD_MAX, step, "length_precision" );
|
|
|
|
SpinBox_Y->RangeStepAndValidator( COORD_MIN, COORD_MAX, step, "length_precision" );
|
|
|
|
SpinBox_Z->RangeStepAndValidator( COORD_MIN, COORD_MAX, step, "length_precision" );
|
2009-02-17 10:27:49 +05:00
|
|
|
SpinBox_X->SetValue( 0.0 );
|
|
|
|
SpinBox_Y->SetValue( 0.0 );
|
|
|
|
SpinBox_Z->SetValue( 0.0 );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
/* reset "Add to group" control */
|
|
|
|
GroupGroups->setChecked( false );
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
mySMESHGUI->SetActiveDialogBox( this );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
/* signals and slots connections */
|
2009-02-17 10:27:49 +05:00
|
|
|
connect( buttonOk, SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
|
2013-02-28 21:07:35 +06:00
|
|
|
connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
|
2009-02-17 10:27:49 +05:00
|
|
|
connect( buttonApply, SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
|
|
|
|
connect( buttonHelp, SIGNAL( clicked() ), this, SLOT( ClickOnHelp() ) );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
connect( SpinBox_X, SIGNAL( valueChanged( double ) ), SLOT( ValueChangedInSpinBox( double ) ) );
|
|
|
|
connect( SpinBox_Y, SIGNAL( valueChanged( double ) ), SLOT( ValueChangedInSpinBox( double ) ) );
|
|
|
|
connect( SpinBox_Z, SIGNAL( valueChanged( double ) ), SLOT( ValueChangedInSpinBox( double ) ) );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
connect( mySelectionMgr, SIGNAL( currentSelectionChanged() ), SLOT( SelectionIntoArgument() ) );
|
|
|
|
connect( mySMESHGUI, SIGNAL( SignalDeactivateActiveDialog() ), SLOT( DeactivateActiveDialog() ) );
|
2004-12-01 15:48:31 +05:00
|
|
|
/* to close dialog if study frame change */
|
2013-02-28 21:07:35 +06:00
|
|
|
connect( mySMESHGUI, SIGNAL( SignalStudyFrameChanged() ), SLOT( reject() ) );
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), SLOT(reject()));
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
// set selection mode
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH::SetPointRepresentation( true );
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ) )
|
|
|
|
aViewWindow->SetSelectionMode( NodeSelection );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
SelectionIntoArgument();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ValueChangedInSpinBox()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_NodesDlg::ValueChangedInSpinBox( double newValue )
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( !myMesh->_is_nil() ) {
|
2005-06-07 19:22:20 +06:00
|
|
|
double vx = SpinBox_X->GetValue();
|
|
|
|
double vy = SpinBox_Y->GetValue();
|
|
|
|
double vz = SpinBox_Z->GetValue();
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
mySimulation->SetPosition( vx, vy, vz );
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ClickOnOk()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_NodesDlg::ClickOnOk()
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( ClickOnApply() )
|
2013-02-28 21:07:35 +06:00
|
|
|
reject();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
//=================================================================================
|
2003-05-19 20:07:00 +06:00
|
|
|
// function : ClickOnApply()
|
|
|
|
// purpose :
|
2005-06-07 19:22:20 +06:00
|
|
|
//=================================================================================
|
2004-12-01 15:48:31 +05:00
|
|
|
bool SMESHGUI_NodesDlg::ClickOnApply()
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( mySMESHGUI->isActiveStudyLocked() )
|
2004-12-01 15:48:31 +05:00
|
|
|
return false;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( myMesh->_is_nil() ) {
|
|
|
|
SUIT_MessageBox::warning( this, tr( "SMESH_WRN_WARNING" ),
|
2012-08-09 16:03:55 +06:00
|
|
|
tr( "MESH_IS_NOT_SELECTED" ) );
|
2004-12-01 15:48:31 +05:00
|
|
|
return false;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
if( !isValid() )
|
|
|
|
return false;
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
/* Recup args and call method */
|
2005-06-07 19:22:20 +06:00
|
|
|
double x = SpinBox_X->GetValue();
|
|
|
|
double y = SpinBox_Y->GetValue();
|
|
|
|
double z = SpinBox_Z->GetValue();
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
QStringList aParameters;
|
|
|
|
aParameters << SpinBox_X->text();
|
|
|
|
aParameters << SpinBox_Y->text();
|
|
|
|
aParameters << SpinBox_Z->text();
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
bool addToGroup = GroupGroups->isChecked();
|
|
|
|
QString aGroupName;
|
|
|
|
|
|
|
|
SMESH::SMESH_GroupBase_var aGroup;
|
|
|
|
int idx = 0;
|
|
|
|
if( addToGroup ) {
|
|
|
|
aGroupName = ComboBox_GroupName->currentText();
|
2012-10-08 17:56:59 +06:00
|
|
|
for ( int i = 1; i <= ComboBox_GroupName->count(); i++ ) {
|
2012-08-09 16:03:55 +06:00
|
|
|
QString aName = ComboBox_GroupName->itemText( i );
|
|
|
|
if ( aGroupName == aName && ( i == ComboBox_GroupName->currentIndex() || idx == 0 ) )
|
|
|
|
idx = i;
|
|
|
|
}
|
2012-10-08 17:56:59 +06:00
|
|
|
if ( idx > 0 && idx <= myGroups.count() ) {
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_GroupOnGeom_var aGeomGroup = SMESH::SMESH_GroupOnGeom::_narrow( myGroups[idx-1] );
|
|
|
|
if ( !aGeomGroup->_is_nil() ) {
|
|
|
|
int res = SUIT_MessageBox::question( this, tr( "SMESH_WRN_WARNING" ),
|
|
|
|
tr( "MESH_STANDALONE_GRP_CHOSEN" ).arg( aGroupName ),
|
|
|
|
tr( "SMESH_BUT_YES" ), tr( "SMESH_BUT_NO" ), 0, 1 );
|
|
|
|
if ( res == 1 ) return false;
|
|
|
|
}
|
|
|
|
aGroup = myGroups[idx-1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
mySimulation->SetVisibility( false );
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
long aNodeId = SMESH::AddNode( myMesh, x, y, z, aParameters );
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH::SetPointRepresentation( true );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( aNodeId != -1 && addToGroup && !aGroupName.isEmpty() ) {
|
|
|
|
SMESH::SMESH_Group_var aGroupUsed;
|
|
|
|
if ( aGroup->_is_nil() ){
|
|
|
|
// create new group
|
|
|
|
aGroupUsed = SMESH::AddGroup( myMesh, SMESH::NODE, aGroupName );
|
|
|
|
if ( !aGroupUsed->_is_nil() ) {
|
|
|
|
myGroups.append(SMESH::SMESH_GroupBase::_duplicate(aGroupUsed));
|
|
|
|
ComboBox_GroupName->addItem( aGroupName );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SMESH::SMESH_GroupOnGeom_var aGeomGroup = SMESH::SMESH_GroupOnGeom::_narrow( aGroup );
|
|
|
|
if ( !aGeomGroup->_is_nil() ) {
|
|
|
|
aGroupUsed = myMesh->ConvertToStandalone( aGeomGroup );
|
|
|
|
if ( !aGroupUsed->_is_nil() && idx > 0 ) {
|
|
|
|
myGroups[idx-1] = SMESH::SMESH_GroupBase::_duplicate(aGroupUsed);
|
|
|
|
SMESHGUI::GetSMESHGUI()->getApp()->updateObjectBrowser();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aGroupUsed = SMESH::SMESH_Group::_narrow( aGroup );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !aGroupUsed->_is_nil() ) {
|
|
|
|
SMESH::long_array_var anIdList = new SMESH::long_array;
|
|
|
|
anIdList->length( 1 );
|
|
|
|
anIdList[0] = aNodeId;
|
|
|
|
aGroupUsed->Add( anIdList.inout() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
// select myMesh
|
2005-06-07 19:22:20 +06:00
|
|
|
SALOME_ListIO aList;
|
2009-02-17 10:27:49 +05:00
|
|
|
mySelectionMgr->selectedObjects( aList );
|
|
|
|
if ( aList.Extent() != 1 ) {
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView() ) {
|
2012-08-09 16:03:55 +06:00
|
|
|
VTK::ActorCollectionCopy aCopy(aViewWindow->getRenderer()->GetActors());
|
|
|
|
vtkActorCollection *aCollection = aCopy.GetActors();
|
2004-12-01 15:48:31 +05:00
|
|
|
aCollection->InitTraversal();
|
2009-02-17 10:27:49 +05:00
|
|
|
while ( vtkActor *anAct = aCollection->GetNextActor() ) {
|
|
|
|
if ( SMESH_Actor *anActor = dynamic_cast<SMESH_Actor*>( anAct ) ) {
|
|
|
|
if ( anActor->hasIO() ) {
|
|
|
|
if ( SMESH_MeshObj *aMeshObj = dynamic_cast<SMESH_MeshObj*>( anActor->GetObject().get() ) ) {
|
|
|
|
if ( myMesh->_is_equivalent( aMeshObj->GetMeshServer() ) ) {
|
2005-06-07 19:22:20 +06:00
|
|
|
aList.Clear();
|
2009-02-17 10:27:49 +05:00
|
|
|
aList.Append( anActor->getIO() );
|
|
|
|
mySelectionMgr->setSelectedObjects( aList, false );
|
2004-12-01 15:48:31 +05:00
|
|
|
break;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
SMESHGUI::Modified();
|
|
|
|
SMESH::UpdateView();
|
|
|
|
mySimulation->SetVisibility(false);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
return true;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
//=================================================================================
|
2013-02-28 21:07:35 +06:00
|
|
|
// function : reject()
|
2003-05-19 20:07:00 +06:00
|
|
|
// purpose :
|
2005-06-07 19:22:20 +06:00
|
|
|
//=================================================================================
|
2013-02-28 21:07:35 +06:00
|
|
|
void SMESHGUI_NodesDlg::reject()
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
disconnect( mySelectionMgr, 0, this, 0 );
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ) )
|
|
|
|
aViewWindow->SetSelectionMode( ActorSelection );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
mySimulation->SetVisibility( false );
|
|
|
|
SMESH::SetPointRepresentation( false );
|
2005-06-08 12:18:53 +06:00
|
|
|
mySMESHGUI->ResetState();
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2013-02-28 21:07:35 +06:00
|
|
|
QDialog::reject();
|
2005-06-07 19:22:20 +06:00
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
//=================================================================================
|
|
|
|
// function : ClickOnHelp()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_NodesDlg::ClickOnHelp()
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
LightApp_Application* app = (LightApp_Application*)( SUIT_Session::session()->activeApplication() );
|
|
|
|
if ( app )
|
|
|
|
app->onHelpContextModule( mySMESHGUI ? app->moduleName( mySMESHGUI->moduleName() ) :
|
2012-08-09 16:03:55 +06:00
|
|
|
QString( "" ), myHelpFileName );
|
2006-05-06 14:51:48 +06:00
|
|
|
else {
|
2009-02-17 10:27:49 +05:00
|
|
|
QString platform;
|
2008-03-07 12:47:05 +05:00
|
|
|
#ifdef WIN32
|
2009-02-17 10:27:49 +05:00
|
|
|
platform = "winapplication";
|
2008-03-07 12:47:05 +05:00
|
|
|
#else
|
2009-02-17 10:27:49 +05:00
|
|
|
platform = "application";
|
2008-03-07 12:47:05 +05:00
|
|
|
#endif
|
2009-02-17 10:27:49 +05:00
|
|
|
SUIT_MessageBox::warning( this, tr("WRN_WARNING"),
|
2012-08-09 16:03:55 +06:00
|
|
|
tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
|
|
|
|
arg( app->resourceMgr()->stringValue( "ExternalBrowser",
|
|
|
|
platform ) ).
|
|
|
|
arg( myHelpFileName ) );
|
2006-05-06 14:51:48 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
//=================================================================================
|
|
|
|
// function : SelectionIntoArgument()
|
|
|
|
// purpose : Called when selection as changed or other case
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_NodesDlg::SelectionIntoArgument()
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( !GroupConstructors->isEnabled() )
|
2003-05-19 20:07:00 +06:00
|
|
|
return;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
mySimulation->SetVisibility( false );
|
|
|
|
SMESH::SetPointRepresentation( true );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
QString aCurrentEntry = myEntry;
|
|
|
|
|
2005-06-08 12:18:53 +06:00
|
|
|
const SALOME_ListIO& aList = mySelector->StoredIObjects();
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( aList.Extent() == 1 ) {
|
2005-06-07 19:22:20 +06:00
|
|
|
Handle(SALOME_InteractiveObject) anIO = aList.First();
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( anIO->hasEntry() ) {
|
2012-08-09 16:03:55 +06:00
|
|
|
myEntry = anIO->getEntry();
|
2009-02-17 10:27:49 +05:00
|
|
|
myMesh = SMESH::GetMeshByIO( anIO );
|
|
|
|
if ( myMesh->_is_nil() ) return;
|
2004-12-01 15:48:31 +05:00
|
|
|
QString aText;
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( SMESH::GetNameOfSelectedNodes( mySelector, anIO, aText ) == 1 ) {
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( SMESH_Actor* anActor = SMESH::FindActorByObject( myMesh.in() ) ) {
|
|
|
|
if ( SMDS_Mesh* aMesh = anActor->GetObject()->GetMesh() ) {
|
|
|
|
if ( const SMDS_MeshNode* aNode = aMesh->FindNode( aText.toInt() ) ) {
|
|
|
|
SpinBox_X->SetValue( aNode->X() );
|
|
|
|
SpinBox_Y->SetValue( aNode->Y() );
|
|
|
|
SpinBox_Z->SetValue( aNode->Z() );
|
2005-06-07 19:22:20 +06:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
}
|
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
mySimulation->SetPosition( SpinBox_X->GetValue(),
|
2012-08-09 16:03:55 +06:00
|
|
|
SpinBox_Y->GetValue(),
|
|
|
|
SpinBox_Z->GetValue() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// process groups
|
|
|
|
if ( !myMesh->_is_nil() && myEntry != aCurrentEntry ) {
|
|
|
|
myGroups.clear();
|
|
|
|
ComboBox_GroupName->clear();
|
|
|
|
ComboBox_GroupName->addItem( QString() );
|
|
|
|
SMESH::ListOfGroups aListOfGroups = *myMesh->GetGroups();
|
|
|
|
for( int i = 0, n = aListOfGroups.length(); i < n; i++ ) {
|
|
|
|
SMESH::SMESH_GroupBase_var aGroup = aListOfGroups[i];
|
|
|
|
if ( !aGroup->_is_nil() && aGroup->GetType() == SMESH::NODE ) {
|
|
|
|
QString aGroupName( aGroup->GetName() );
|
|
|
|
if ( !aGroupName.isEmpty() ) {
|
|
|
|
myGroups.append(SMESH::SMESH_GroupBase::_duplicate(aGroup));
|
|
|
|
ComboBox_GroupName->addItem( aGroupName );
|
|
|
|
}
|
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : enterEvent()
|
|
|
|
// purpose : to reactivate this dialog box when mouse enter onto the window
|
|
|
|
//=================================================================================
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_NodesDlg::enterEvent( QEvent* )
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( !GroupConstructors->isEnabled() )
|
2005-06-07 19:22:20 +06:00
|
|
|
ActivateThisDialog();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : DeactivateActiveDialog()
|
|
|
|
// purpose : public slot to deactivate if active
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_NodesDlg::DeactivateActiveDialog()
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( GroupConstructors->isEnabled() ) {
|
|
|
|
GroupConstructors->setEnabled( false );
|
|
|
|
GroupCoordinates->setEnabled( false );
|
|
|
|
GroupButtons->setEnabled( false );
|
|
|
|
mySimulation->SetVisibility( false );
|
2005-06-08 12:18:53 +06:00
|
|
|
mySMESHGUI->ResetState();
|
2009-02-17 10:27:49 +05:00
|
|
|
mySMESHGUI->SetActiveDialogBox( 0 );
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : ActivateThisDialog()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_NodesDlg::ActivateThisDialog()
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2005-06-08 12:18:53 +06:00
|
|
|
mySMESHGUI->EmitSignalDeactivateDialog();
|
2009-02-17 10:27:49 +05:00
|
|
|
GroupConstructors->setEnabled( true );
|
|
|
|
GroupCoordinates->setEnabled( true );
|
|
|
|
GroupButtons->setEnabled( true );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH::SetPointRepresentation( true );
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ) )
|
|
|
|
aViewWindow->SetSelectionMode( NodeSelection );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
SelectionIntoArgument();
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : keyPressEvent()
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
void SMESHGUI_NodesDlg::keyPressEvent( QKeyEvent* e )
|
|
|
|
{
|
|
|
|
QDialog::keyPressEvent( e );
|
|
|
|
if ( e->isAccepted() )
|
|
|
|
return;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( e->key() == Qt::Key_F1 ) {
|
|
|
|
e->accept();
|
|
|
|
ClickOnHelp();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// function : isValid
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
bool SMESHGUI_NodesDlg::isValid()
|
|
|
|
{
|
|
|
|
QString msg;
|
|
|
|
bool ok = true;
|
|
|
|
ok = SpinBox_X->isValid( msg, true ) && ok;
|
|
|
|
ok = SpinBox_Y->isValid( msg, true ) && ok;
|
|
|
|
ok = SpinBox_Z->isValid( msg, true ) && ok;
|
|
|
|
|
|
|
|
if( !ok ) {
|
|
|
|
QString str( tr( "SMESH_INCORRECT_INPUT" ) );
|
|
|
|
if ( !msg.isEmpty() )
|
|
|
|
str += "\n" + msg;
|
|
|
|
SUIT_MessageBox::critical( this, tr( "SMESH_ERROR" ), str );
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
if( GroupGroups->isChecked() && ComboBox_GroupName->currentText().isEmpty() ) {
|
|
|
|
SUIT_MessageBox::warning( this, tr( "SMESH_WRN_WARNING" ), tr( "GROUP_NAME_IS_EMPTY" ) );
|
|
|
|
return false;
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
return true;
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|