Salome HOME
Add some comments
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddSubMeshDlg.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_AddSubMeshDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_ADD_SUBMESH_H
30 #define DIALOGBOX_ADD_SUBMESH_H
31
32 #include "SALOME_Selection.h"
33 #include "SALOME_TypeFilter.hxx"
34 #include "SMESH_TypeFilter.hxx"
35
36 // QT Includes
37 #include <qvariant.h>
38 #include <qdialog.h>
39
40 // IDL Headers
41 #include <SALOMEconfig.h>
42 #include CORBA_SERVER_HEADER(GEOM_Gen)
43 #include CORBA_SERVER_HEADER(GEOM_Shape)
44 #include CORBA_SERVER_HEADER(SMESH_Mesh)
45
46 class QVBoxLayout; 
47 class QHBoxLayout; 
48 class QGridLayout; 
49 class QButtonGroup;
50 class QGroupBox;
51 class QLabel;
52 class QLineEdit;
53 class QPushButton;
54 class QRadioButton;
55 class SMESHGUI;
56
57
58 //=================================================================================
59 // class    : SMESHGUI_AddSubMeshDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_AddSubMeshDlg : public QDialog
63
64     Q_OBJECT
65
66 public:
67     SMESHGUI_AddSubMeshDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
68     ~SMESHGUI_AddSubMeshDlg();
69
70 private:
71
72     void Init( SALOME_Selection* Sel ) ;
73     void closeEvent( QCloseEvent* e ) ;
74     void enterEvent ( QEvent * ) ;
75
76     SMESHGUI*                     mySMESHGUI ;
77     SALOME_Selection*             mySelection ;
78              
79     GEOM::GEOM_Shape_var                myGeomShape ;
80     int                           myConstructorId ; 
81     QLineEdit*                    myEditCurrentArgument; 
82
83     SMESH::SMESH_Mesh_var         myMesh;
84     SMESH::SMESH_subMesh_var      mySubMesh;
85
86     QString                       myNameSubMesh ;
87
88     Handle(SALOME_TypeFilter)     myGeomFilter;
89     Handle(SMESH_TypeFilter)      myMeshFilter;
90     Handle(SMESH_TypeFilter)      myHypothesisFilter;
91     Handle(SMESH_TypeFilter)      myAlgorithmFilter;
92
93     SALOME_ListIO                 HypoList;
94     SALOME_ListIO                 AlgoList;
95
96     bool                          myOkHypothesis;
97     bool                          myOkAlgorithm;
98
99     SMESH::SMESH_Hypothesis_var   myHypothesis;
100     SMESH::SMESH_Hypothesis_var   myAlgorithm;
101
102     QButtonGroup* GroupConstructors;
103     QRadioButton* Constructor1;
104     QGroupBox*    GroupButtons;
105     QPushButton*  buttonOk;
106     QPushButton*  buttonCancel;
107     QPushButton*  buttonApply;
108     QGroupBox*    GroupC1;
109     QLabel*       TextLabel_NameMesh ;
110     QLineEdit*    LineEdit_NameMesh ;
111     QLabel*       TextLabelC1A1;
112     QPushButton*  SelectButtonC1A1;
113     QLineEdit*    LineEditC1A1;
114     QLabel*       TextLabelC1A2;
115     QPushButton*  SelectButtonC1A2;
116     QLineEdit*    LineEditC1A2;
117
118     QLabel*       TextLabelC1A1Hyp;
119     QPushButton*  SelectButtonC1A1Hyp;
120     QLineEdit*    LineEditC1A1Hyp;
121
122     QLabel*       TextLabelC1A1Algo;
123     QPushButton*  SelectButtonC1A1Algo;
124     QLineEdit*    LineEditC1A1Algo;
125
126 private slots:
127
128     void ConstructorsClicked(int constructorId);
129     void ClickOnOk();
130     void ClickOnCancel();
131     void ClickOnApply();
132     void SetEditCurrentArgument() ;
133     void SelectionIntoArgument() ;
134     void DeactivateActiveDialog() ;
135     void ActivateThisDialog() ;
136     void TextChangedInLineEdit(const QString& newText) ;
137
138 protected:
139     QGridLayout* SMESHGUI_AddSubMeshDlgLayout;
140     QGridLayout* GroupConstructorsLayout;
141     QGridLayout* GroupButtonsLayout;
142     QGridLayout* GroupC1Layout;
143 };
144
145 #endif // DIALOGBOX_ADD_SUBMESH_H