Salome HOME
DCQ : Merge with Ecole_Ete_a6.
[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 <qdialog.h>
38 #include <qstringlist.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 QGroupBox;
47 class QLabel;
48 class QLineEdit;
49 class QPushButton;
50 class SMESHGUI;
51
52 //=================================================================================
53 // class    : SMESHGUI_AddSubMeshDlg
54 // purpose  :
55 //=================================================================================
56 class SMESHGUI_AddSubMeshDlg : public QDialog
57
58     Q_OBJECT
59
60 public:
61     SMESHGUI_AddSubMeshDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
62     ~SMESHGUI_AddSubMeshDlg();
63
64 protected:
65     void closeEvent( QCloseEvent* e ) ;
66     void enterEvent ( QEvent * ) ;
67
68 private:
69     void Init( SALOME_Selection* Sel ) ;
70
71     void UpdateControlState();
72
73 private:
74     SMESHGUI*                     mySMESHGUI ;
75     SALOME_Selection*             mySelection ;
76              
77     SMESH::SMESH_Mesh_var         myMesh;
78     GEOM::GEOM_Shape_var          myGeomShape ;
79     QLineEdit*                    myEditCurrentArgument; 
80
81     Handle(SALOME_TypeFilter)     myGeomFilter;
82     Handle(SMESH_TypeFilter)      myMeshFilter;
83     Handle(SMESH_TypeFilter)      myHypothesisFilter;
84     Handle(SMESH_TypeFilter)      myAlgorithmFilter;
85
86     QStringList                   HypoList;
87     QStringList                   AlgoList;
88
89     QGroupBox*    GroupButtons;
90     QPushButton*  buttonOk;
91     QPushButton*  buttonApply;
92     QPushButton*  buttonCancel;
93
94     QGroupBox*    GroupC1;
95     QLabel*       TextLabel_NameMesh ;
96     QLineEdit*    LineEdit_NameMesh ;
97     QLabel*       TextLabelC1A1;
98     QPushButton*  SelectButtonC1A1;
99     QLineEdit*    LineEditC1A1;
100     QLabel*       TextLabelC1A2;
101     QPushButton*  SelectButtonC1A2;
102     QLineEdit*    LineEditC1A2;
103
104     QLabel*       TextLabelC1A1Hyp;
105     QPushButton*  SelectButtonC1A1Hyp;
106     QLineEdit*    LineEditC1A1Hyp;
107
108     QLabel*       TextLabelC1A1Algo;
109     QPushButton*  SelectButtonC1A1Algo;
110     QLineEdit*    LineEditC1A1Algo;
111
112 private slots:
113     void ClickOnOk();
114     bool ClickOnApply();
115     void ClickOnCancel();
116     void SetEditCurrentArgument() ;
117     void SelectionIntoArgument() ;
118     void DeactivateActiveDialog() ;
119     void ActivateThisDialog() ;
120 };
121
122 #endif // DIALOGBOX_ADD_SUBMESH_H