Salome HOME
Change Handle(SMESHDS_Document) to SMESHDS_Document*
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_NodesDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
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. 
10 // 
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. 
15 // 
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 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_NodesDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_NODES_H
30 #define DIALOGBOX_NODES_H
31
32 #include "SALOME_Selection.h"
33
34 #include <qvariant.h>
35 #include <qdialog.h>
36
37 class QVBoxLayout; 
38 class QHBoxLayout; 
39 class QGridLayout; 
40 class QButtonGroup;
41 class QFrame;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class SMESHGUI;
48 class SMESHGUI_SpinBox;
49
50 // IDL Headers
51 #include <SALOMEconfig.h>
52 #include CORBA_SERVER_HEADER(SMESH_Mesh)
53
54 //=================================================================================
55 // class    : SMESHGUI_NodesDlg
56 // purpose  :
57 //=================================================================================
58 class SMESHGUI_NodesDlg : public QDialog
59
60     Q_OBJECT
61
62 public:
63     SMESHGUI_NodesDlg( QWidget* parent = 0, const char* name = 0,
64                        SALOME_Selection* Sel = 0,
65                        bool modal = FALSE,
66                        WFlags fl = 0 );
67
68     ~SMESHGUI_NodesDlg();
69     
70 private :
71
72     SALOME_Selection* mySelection ;
73     SMESHGUI*         myMeshGUI ;
74
75     SMESH::SMESH_Mesh_var myMesh;
76
77     void Init(SALOME_Selection* Sel) ;
78     void enterEvent(QEvent* e);
79     void closeEvent(QCloseEvent* e) ;
80
81     QButtonGroup* GroupConstructors;
82     QRadioButton* Constructor1;
83     QGroupBox* GroupCoordinates;
84     SMESHGUI_SpinBox* SpinBox_X;
85     SMESHGUI_SpinBox* SpinBox_Y;
86     SMESHGUI_SpinBox* SpinBox_Z;
87
88     QLabel* TextLabel_X;
89     QLabel* TextLabel_Y;
90     QLabel* TextLabel_Z;
91
92     QGroupBox* GroupButtons;
93     QPushButton* buttonApply;
94     QPushButton* buttonOk;
95     QPushButton* buttonCancel;
96
97 private slots:
98
99     void ClickOnOk();
100     void ClickOnCancel();
101     void ClickOnApply();
102     void DeactivateActiveDialog() ;
103     void ActivateThisDialog() ;
104     void SelectionIntoArgument() ;
105     void ValueChangedInSpinBox( double newValue ) ;
106
107 protected:
108     QGridLayout* SMESHGUI_NodesDlgLayout;    
109     QGridLayout* GroupConstructorsLayout;
110     QGridLayout* GroupCoordinatesLayout;
111     QGridLayout* GroupButtonsLayout;
112 };
113
114 #endif // DIALOGBOX_NODES_H
115