Salome HOME
Merge from V5_1_main 14/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_NodesDlg.h
1 //  Copyright (C) 2007-2010  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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_NodesDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_NODESDLG_H
28 #define SMESHGUI_NODESDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 // IDL includes
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
39
40 class QComboBox;
41 class QGroupBox;
42 class QLabel;
43 class QPushButton;
44 class QRadioButton;
45
46 class SMESHGUI;
47 class SVTK_Selector;
48 class SMESHGUI_SpinBox;
49 class LightApp_SelectionMgr;
50
51 namespace SMESH 
52 {
53   struct TNodeSimulation;
54 }
55
56 //=================================================================================
57 // class    : SMESHGUI_NodesDlg
58 // purpose  :
59 //=================================================================================
60 class SMESHGUI_EXPORT SMESHGUI_NodesDlg : public QDialog
61
62   Q_OBJECT
63
64 public:
65   SMESHGUI_NodesDlg( SMESHGUI* );
66   ~SMESHGUI_NodesDlg();
67
68 private:
69   typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
70   
71   LightApp_SelectionMgr*  mySelectionMgr;
72   SVTK_Selector*          mySelector;
73   SMESHGUI*               mySMESHGUI;
74   
75   SMESH::SMESH_Mesh_var   myMesh;
76   SMESH::TNodeSimulation* mySimulation;
77   QString                 myEntry;
78   GrpList                 myGroups;
79
80   void                    Init();
81   void                    enterEvent( QEvent* );
82   void                    closeEvent( QCloseEvent* );
83   void                    hideEvent ( QHideEvent* );
84   void                    keyPressEvent( QKeyEvent* );
85   
86   bool                    isValid();
87
88   QGroupBox*              GroupConstructors;
89   QRadioButton*           Constructor1;
90   QGroupBox*              GroupCoordinates;
91   SMESHGUI_SpinBox*       SpinBox_X;
92   SMESHGUI_SpinBox*       SpinBox_Y;
93   SMESHGUI_SpinBox*       SpinBox_Z;
94   
95   QLabel*                 TextLabel_X;
96   QLabel*                 TextLabel_Y;
97   QLabel*                 TextLabel_Z;
98
99   QGroupBox*              GroupGroups;
100   QLabel*                 TextLabel_GroupName;
101   QComboBox*              ComboBox_GroupName;
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   void                    ClickOnOk();
113   void                    ClickOnCancel();
114   bool                    ClickOnApply();
115   void                    ClickOnHelp();
116   void                    DeactivateActiveDialog();
117   void                    ActivateThisDialog();
118   void                    SelectionIntoArgument();
119   void                    ValueChangedInSpinBox( double );
120 };
121
122 #endif // SMESHGUI_NODESDLG_H