1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_NodesDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_NODESDLG_H
28 #define SMESHGUI_NODESDLG_H
31 #include "SMESH_SMESHGUI.hxx"
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
48 class SMESHGUI_SpinBox;
49 class LightApp_SelectionMgr;
53 struct TNodeSimulation;
56 //=================================================================================
57 // class : SMESHGUI_NodesDlg
59 //=================================================================================
60 class SMESHGUI_EXPORT SMESHGUI_NodesDlg : public QDialog
65 SMESHGUI_NodesDlg( SMESHGUI* );
69 typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
71 LightApp_SelectionMgr* mySelectionMgr;
72 SVTK_Selector* mySelector;
75 SMESH::SMESH_Mesh_var myMesh;
76 SMESH::TNodeSimulation* mySimulation;
81 void enterEvent( QEvent* );
82 void closeEvent( QCloseEvent* );
83 void hideEvent ( QHideEvent* );
84 void keyPressEvent( QKeyEvent* );
88 QGroupBox* GroupConstructors;
89 QRadioButton* Constructor1;
90 QGroupBox* GroupCoordinates;
91 SMESHGUI_SpinBox* SpinBox_X;
92 SMESHGUI_SpinBox* SpinBox_Y;
93 SMESHGUI_SpinBox* SpinBox_Z;
99 QGroupBox* GroupGroups;
100 QLabel* TextLabel_GroupName;
101 QComboBox* ComboBox_GroupName;
103 QGroupBox* GroupButtons;
104 QPushButton* buttonApply;
105 QPushButton* buttonOk;
106 QPushButton* buttonCancel;
107 QPushButton* buttonHelp;
109 QString myHelpFileName;
113 void ClickOnCancel();
116 void DeactivateActiveDialog();
117 void ActivateThisDialog();
118 void SelectionIntoArgument();
119 void ValueChangedInSpinBox( double );
122 #endif // SMESHGUI_NODESDLG_H