Salome HOME
Update from local sources
[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 <qvariant.h>
33 #include <qdialog.h>
34
35 class QVBoxLayout; 
36 class QHBoxLayout; 
37 class QGridLayout; 
38 class QButtonGroup;
39 class QFrame;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45
46 class SMESHGUI;
47 class SVTK_Selector;
48 class SVTK_ViewWindow;
49 class SMESHGUI_SpinBox;
50 class SalomeApp_SelectionMgr;
51
52 namespace SMESH{
53   struct TNodeSimulation;
54 }
55
56 // IDL Headers
57 #include <SALOMEconfig.h>
58 #include CORBA_SERVER_HEADER(SMESH_Mesh)
59
60 //=================================================================================
61 // class    : SMESHGUI_NodesDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_NodesDlg : public QDialog
65
66     Q_OBJECT
67
68 public:
69     SMESHGUI_NodesDlg (SMESHGUI* theModule, 
70                        const char* name = 0,
71                        bool modal = FALSE,
72                        WFlags fl = 0);
73
74     ~SMESHGUI_NodesDlg();
75
76 private:
77     SalomeApp_SelectionMgr* mySelectionMgr;
78     SVTK_ViewWindow*              myViewWindow;
79     SVTK_Selector*                mySelector;
80     SMESHGUI*               mySMESHGUI;
81
82     SMESH::SMESH_Mesh_var   myMesh;
83     SMESH::TNodeSimulation* mySimulation;
84
85     void Init ();
86     void enterEvent(QEvent* e);
87     void closeEvent(QCloseEvent*);
88     void hideEvent (QHideEvent *);                 /* ESC key */
89
90     QButtonGroup* GroupConstructors;
91     QRadioButton* Constructor1;
92     QGroupBox* GroupCoordinates;
93     SMESHGUI_SpinBox* SpinBox_X;
94     SMESHGUI_SpinBox* SpinBox_Y;
95     SMESHGUI_SpinBox* SpinBox_Z;
96
97     QLabel* TextLabel_X;
98     QLabel* TextLabel_Y;
99     QLabel* TextLabel_Z;
100
101     QGroupBox* GroupButtons;
102     QPushButton* buttonApply;
103     QPushButton* buttonOk;
104     QPushButton* buttonCancel;
105
106 private slots:
107
108     void ClickOnOk();
109     void ClickOnCancel();
110     bool ClickOnApply();
111     void DeactivateActiveDialog() ;
112     void ActivateThisDialog() ;
113     void SelectionIntoArgument() ;
114     void ValueChangedInSpinBox( double newValue ) ;
115
116 protected:
117     QGridLayout* SMESHGUI_NodesDlgLayout;    
118     QGridLayout* GroupConstructorsLayout;
119     QGridLayout* GroupCoordinatesLayout;
120     QGridLayout* GroupButtonsLayout;
121 };
122
123 #endif // DIALOGBOX_NODES_H