Salome HOME
Update of CheckDone
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_NodesDlg.h
1 // Copyright (C) 2007-2020  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, or (at your option) any later version.
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                    keyPressEvent( QKeyEvent* );
83   
84   bool                    isValid();
85
86   QGroupBox*              GroupConstructors;
87   QRadioButton*           Constructor1;
88   QGroupBox*              GroupCoordinates;
89   SMESHGUI_SpinBox*       SpinBox_X;
90   SMESHGUI_SpinBox*       SpinBox_Y;
91   SMESHGUI_SpinBox*       SpinBox_Z;
92   
93   QLabel*                 TextLabel_X;
94   QLabel*                 TextLabel_Y;
95   QLabel*                 TextLabel_Z;
96
97   QGroupBox*              GroupGroups;
98   QLabel*                 TextLabel_GroupName;
99   QComboBox*              ComboBox_GroupName;
100
101   QGroupBox*              GroupButtons;
102   QPushButton*            buttonApply;
103   QPushButton*            buttonOk;
104   QPushButton*            buttonCancel;
105   QPushButton*            buttonHelp;
106
107   QString                 myHelpFileName;
108
109 protected slots:
110   virtual void            reject();
111
112 private slots:
113   void                    ClickOnOk();
114   bool                    ClickOnApply();
115   void                    ClickOnHelp();
116   void                    DeactivateActiveDialog();
117   void                    ActivateThisDialog();
118   void                    SelectionIntoArgument();
119   void                    ValueChangedInSpinBox( double );
120   void                    onOpenView();
121   void                    onCloseView();
122 };
123
124 #endif // SMESHGUI_NODESDLG_H