Salome HOME
Update copyright information
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_NodesDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI_NodesDlg.h
24 //  Author : Nicolas REJNERI
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef DIALOGBOX_NODES_H
29 #define DIALOGBOX_NODES_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include <qvariant.h>
34 #include <qdialog.h>
35
36 class QVBoxLayout; 
37 class QHBoxLayout; 
38 class QGridLayout; 
39 class QButtonGroup;
40 class QFrame;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46
47 class SMESHGUI;
48 class SVTK_Selector;
49 class SVTK_ViewWindow;
50 class SMESHGUI_SpinBox;
51 class LightApp_SelectionMgr;
52
53 namespace SMESH{
54   struct TNodeSimulation;
55 }
56
57 // IDL Headers
58 #include <SALOMEconfig.h>
59 #include CORBA_SERVER_HEADER(SMESH_Mesh)
60
61 //=================================================================================
62 // class    : SMESHGUI_NodesDlg
63 // purpose  :
64 //=================================================================================
65 class SMESHGUI_EXPORT SMESHGUI_NodesDlg : public QDialog
66
67     Q_OBJECT
68
69 public:
70     SMESHGUI_NodesDlg (SMESHGUI* theModule, 
71                        const char* name = 0,
72                        bool modal = FALSE,
73                        WFlags fl = 0);
74
75     ~SMESHGUI_NodesDlg();
76
77 private:
78     LightApp_SelectionMgr*  mySelectionMgr;
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     void keyPressEvent(QKeyEvent*);
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