Salome HOME
Merging with WPdev
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "SMESH_SMESHGUI.hxx"
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
48 class SMESHGUI;
49 class SVTK_Selector;
50 class SVTK_ViewWindow;
51 class SMESHGUI_SpinBox;
52 class LightApp_SelectionMgr;
53
54 namespace SMESH{
55   struct TNodeSimulation;
56 }
57
58 // IDL Headers
59 #include <SALOMEconfig.h>
60 #include CORBA_SERVER_HEADER(SMESH_Mesh)
61
62 //=================================================================================
63 // class    : SMESHGUI_NodesDlg
64 // purpose  :
65 //=================================================================================
66 class SMESHGUI_EXPORT SMESHGUI_NodesDlg : public QDialog
67
68     Q_OBJECT
69
70 public:
71     SMESHGUI_NodesDlg (SMESHGUI* theModule, 
72                        const char* name = 0,
73                        bool modal = FALSE,
74                        WFlags fl = 0);
75
76     ~SMESHGUI_NodesDlg();
77
78 private:
79     LightApp_SelectionMgr*  mySelectionMgr;
80     SVTK_Selector*                mySelector;
81     SMESHGUI*               mySMESHGUI;
82
83     SMESH::SMESH_Mesh_var   myMesh;
84     SMESH::TNodeSimulation* mySimulation;
85
86     void Init ();
87     void enterEvent(QEvent* e);
88     void closeEvent(QCloseEvent*);
89     void hideEvent (QHideEvent *);                 /* ESC key */
90     void keyPressEvent(QKeyEvent*);
91
92     QButtonGroup* GroupConstructors;
93     QRadioButton* Constructor1;
94     QGroupBox* GroupCoordinates;
95     SMESHGUI_SpinBox* SpinBox_X;
96     SMESHGUI_SpinBox* SpinBox_Y;
97     SMESHGUI_SpinBox* SpinBox_Z;
98
99     QLabel* TextLabel_X;
100     QLabel* TextLabel_Y;
101     QLabel* TextLabel_Z;
102
103     QGroupBox* GroupButtons;
104     QPushButton* buttonApply;
105     QPushButton* buttonOk;
106     QPushButton* buttonCancel;
107     QPushButton* buttonHelp;
108
109     QString      myHelpFileName;
110
111 private slots:
112
113     void ClickOnOk();
114     void ClickOnCancel();
115     bool ClickOnApply();
116     void ClickOnHelp();
117     void DeactivateActiveDialog() ;
118     void ActivateThisDialog() ;
119     void SelectionIntoArgument() ;
120     void ValueChangedInSpinBox( double newValue ) ;
121
122 protected:
123     QGridLayout* SMESHGUI_NodesDlgLayout;    
124     QGridLayout* GroupConstructorsLayout;
125     QGridLayout* GroupCoordinatesLayout;
126     QGridLayout* GroupButtonsLayout;
127 };
128
129 #endif // DIALOGBOX_NODES_H