Salome HOME
sources v1.2
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_InitMeshDlg.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_InitMeshDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_INIT_MESH_H
30 #define DIALOGBOX_INIT_MESH_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_Gen)
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_InitMeshDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_InitMeshDlg : public QDialog
63
64     Q_OBJECT
65
66 public:
67     SMESHGUI_InitMeshDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
68     ~SMESHGUI_InitMeshDlg();
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     QString                       myNameMesh ;
84
85     Handle(SALOME_TypeFilter)     myGeomFilter;
86     Handle(SMESH_TypeFilter)      myHypothesisFilter;
87     Handle(SMESH_TypeFilter)      myAlgorithmFilter;
88
89     SALOME_ListIO                 HypoList;
90     SALOME_ListIO                 AlgoList;
91
92     bool                          myOkHypothesis;
93     bool                          myOkAlgorithm;
94
95     SMESH::SMESH_Hypothesis_var   myHypothesis;
96     SMESH::SMESH_Hypothesis_var   myAlgorithm;
97
98     SMESH::SMESH_Mesh_var         myMesh;
99
100     QButtonGroup* GroupConstructors;
101     QRadioButton* Constructor1;
102     QGroupBox*    GroupButtons;
103     QPushButton*  buttonOk;
104     QPushButton*  buttonCancel;
105     QPushButton*  buttonApply;
106     QGroupBox*    GroupC1;
107     QLabel*       TextLabel_NameMesh ;
108     QLineEdit*    LineEdit_NameMesh ;
109     QLabel*       TextLabelC1A1;
110     QPushButton*  SelectButtonC1A1;
111     QLineEdit*    LineEditC1A1;
112
113     QLabel*       TextLabelC1A1Hyp;
114     QPushButton*  SelectButtonC1A1Hyp;
115     QLineEdit*    LineEditC1A1Hyp;
116
117     QLabel*       TextLabelC1A1Algo;
118     QPushButton*  SelectButtonC1A1Algo;
119     QLineEdit*    LineEditC1A1Algo;
120
121 private slots:
122
123     void ConstructorsClicked(int constructorId);
124     void ClickOnOk();
125     void ClickOnCancel();
126     void ClickOnApply();
127     void SetEditCurrentArgument() ;
128     void SelectionIntoArgument() ;
129     void DeactivateActiveDialog() ;
130     void ActivateThisDialog() ;
131     void TextChangedInLineEdit(const QString& newText) ;
132
133 protected:
134     QGridLayout* SMESHGUI_InitMeshDlgLayout;
135     QGridLayout* GroupConstructorsLayout;
136     QGridLayout* GroupButtonsLayout;
137     QGridLayout* GroupC1Layout;
138 };
139
140 #endif // DIALOGBOX_INIT_MESH_H