Salome HOME
Merge from BR_DEBUG_3_2_0b1
[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
91     QButtonGroup* GroupConstructors;
92     QRadioButton* Constructor1;
93     QGroupBox* GroupCoordinates;
94     SMESHGUI_SpinBox* SpinBox_X;
95     SMESHGUI_SpinBox* SpinBox_Y;
96     SMESHGUI_SpinBox* SpinBox_Z;
97
98     QLabel* TextLabel_X;
99     QLabel* TextLabel_Y;
100     QLabel* TextLabel_Z;
101
102     QGroupBox* GroupButtons;
103     QPushButton* buttonApply;
104     QPushButton* buttonOk;
105     QPushButton* buttonCancel;
106     QPushButton* buttonHelp;
107
108     QString      myHelpFileName;
109
110 private slots:
111
112     void ClickOnOk();
113     void ClickOnCancel();
114     bool ClickOnApply();
115     void ClickOnHelp();
116     void DeactivateActiveDialog() ;
117     void ActivateThisDialog() ;
118     void SelectionIntoArgument() ;
119     void ValueChangedInSpinBox( double newValue ) ;
120
121 protected:
122     QGridLayout* SMESHGUI_NodesDlgLayout;    
123     QGridLayout* GroupConstructorsLayout;
124     QGridLayout* GroupCoordinatesLayout;
125     QGridLayout* GroupButtonsLayout;
126 };
127
128 #endif // DIALOGBOX_NODES_H