Salome HOME
Prevent exception at shape selection if no mesh was pre-selected
[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 namespace SMESH{
51   struct TNodeSimulation;
52 }
53
54 // IDL Headers
55 #include <SALOMEconfig.h>
56 #include CORBA_SERVER_HEADER(SMESH_Mesh)
57
58 //=================================================================================
59 // class    : SMESHGUI_NodesDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_NodesDlg : public QDialog
63
64     Q_OBJECT
65
66 public:
67     SMESHGUI_NodesDlg( QWidget* parent = 0, const char* name = 0,
68                        SALOME_Selection* Sel = 0,
69                        bool modal = FALSE,
70                        WFlags fl = 0 );
71
72     ~SMESHGUI_NodesDlg();
73     
74 private :
75
76     SALOME_Selection* mySelection ;
77     SMESHGUI*         myMeshGUI ;
78
79     SMESH::SMESH_Mesh_var myMesh;
80     SMESH::TNodeSimulation* mySimulation;
81
82     void Init(SALOME_Selection* Sel) ;
83     void enterEvent(QEvent* e);
84     void closeEvent(QCloseEvent* e) ;
85     void hideEvent ( QHideEvent * );                 /* ESC key */
86
87     QButtonGroup* GroupConstructors;
88     QRadioButton* Constructor1;
89     QGroupBox* GroupCoordinates;
90     SMESHGUI_SpinBox* SpinBox_X;
91     SMESHGUI_SpinBox* SpinBox_Y;
92     SMESHGUI_SpinBox* SpinBox_Z;
93
94     QLabel* TextLabel_X;
95     QLabel* TextLabel_Y;
96     QLabel* TextLabel_Z;
97
98     QGroupBox* GroupButtons;
99     QPushButton* buttonApply;
100     QPushButton* buttonOk;
101     QPushButton* buttonCancel;
102
103 private slots:
104
105     void ClickOnOk();
106     void ClickOnCancel();
107     bool ClickOnApply();
108     void DeactivateActiveDialog() ;
109     void ActivateThisDialog() ;
110     void SelectionIntoArgument() ;
111     void ValueChangedInSpinBox( double newValue ) ;
112
113 protected:
114     QGridLayout* SMESHGUI_NodesDlgLayout;    
115     QGridLayout* GroupConstructorsLayout;
116     QGridLayout* GroupCoordinatesLayout;
117     QGridLayout* GroupButtonsLayout;
118 };
119
120 #endif // DIALOGBOX_NODES_H
121