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