Version: 8.3.0
SMESHGUI_NodesDlg.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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 //=================================================================================
61 {
62  Q_OBJECT
63 
64 public:
67 
68 private:
69  typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
70 
71  LightApp_SelectionMgr* mySelectionMgr;
72  SVTK_Selector* mySelector;
74 
75  SMESH::SMESH_Mesh_var myMesh;
77  QString myEntry;
79 
80  void Init();
81  void enterEvent( QEvent* );
82  void keyPressEvent( QKeyEvent* );
83 
84  bool isValid();
85 
87  QRadioButton* Constructor1;
92 
93  QLabel* TextLabel_X;
94  QLabel* TextLabel_Y;
95  QLabel* TextLabel_Z;
96 
99  QComboBox* ComboBox_GroupName;
100 
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