1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMESHGUI_NodesDlg.h
25 // Author : Nicolas REJNERI
29 #ifndef DIALOGBOX_NODES_H
30 #define DIALOGBOX_NODES_H
48 class SVTK_ViewWindow;
49 class SMESHGUI_SpinBox;
50 class LightApp_SelectionMgr;
53 struct TNodeSimulation;
57 #include <SALOMEconfig.h>
58 #include CORBA_SERVER_HEADER(SMESH_Mesh)
60 //=================================================================================
61 // class : SMESHGUI_NodesDlg
63 //=================================================================================
64 class SMESHGUI_NodesDlg : public QDialog
69 SMESHGUI_NodesDlg (SMESHGUI* theModule,
77 LightApp_SelectionMgr* mySelectionMgr;
78 SVTK_Selector* mySelector;
81 SMESH::SMESH_Mesh_var myMesh;
82 SMESH::TNodeSimulation* mySimulation;
85 void enterEvent(QEvent* e);
86 void closeEvent(QCloseEvent*);
87 void hideEvent (QHideEvent *); /* ESC key */
89 QButtonGroup* GroupConstructors;
90 QRadioButton* Constructor1;
91 QGroupBox* GroupCoordinates;
92 SMESHGUI_SpinBox* SpinBox_X;
93 SMESHGUI_SpinBox* SpinBox_Y;
94 SMESHGUI_SpinBox* SpinBox_Z;
100 QGroupBox* GroupButtons;
101 QPushButton* buttonApply;
102 QPushButton* buttonOk;
103 QPushButton* buttonCancel;
108 void ClickOnCancel();
110 void DeactivateActiveDialog() ;
111 void ActivateThisDialog() ;
112 void SelectionIntoArgument() ;
113 void ValueChangedInSpinBox( double newValue ) ;
116 QGridLayout* SMESHGUI_NodesDlgLayout;
117 QGridLayout* GroupConstructorsLayout;
118 QGridLayout* GroupCoordinatesLayout;
119 QGridLayout* GroupButtonsLayout;
122 #endif // DIALOGBOX_NODES_H