Salome HOME
Fix bug of build_configure (missed '>' operator)
[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 "SMESH_TypeFilter.hxx"
33
34 #include "SUIT_SelectionFilter.h"
35 #include "SalomeApp_SelectionMgr.h"
36
37 // QT Includes
38 #include <qdialog.h>
39 #include <qstringlist.h>
40
41 // IDL Headers
42 #include <SALOMEconfig.h>
43 #include CORBA_SERVER_HEADER(GEOM_Gen)
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( SMESHGUI*,
62                             const char* name = 0,
63                             bool modal = FALSE,
64                             WFlags fl = 0);
65     ~SMESHGUI_AddSubMeshDlg();
66
67 protected:
68     void closeEvent (QCloseEvent* e);
69     void enterEvent (QEvent *) ;
70
71 private:
72     void Init ();
73
74     void UpdateControlState();
75
76 private:
77     SMESHGUI*               mySMESHGUI;
78     SalomeApp_SelectionMgr* mySelectionMgr;
79
80     SMESH::SMESH_Mesh_var   myMesh;
81     GEOM::GEOM_Object_var   myGeomShape;
82     QLineEdit*              myEditCurrentArgument; 
83
84     //Handle(SALOME_TypeFilter)     myMeshFilter;
85     //Handle(SMESH_TypeFilter)      myMeshFilter;
86     //Handle(SMESH_TypeFilter)      myHypothesisFilter;
87     //Handle(SMESH_TypeFilter)      myAlgorithmFilter;
88     SUIT_SelectionFilter*   myGeomFilter;
89     SUIT_SelectionFilter*   myMeshFilter;
90     SUIT_SelectionFilter*   myHypothesisFilter;
91     SUIT_SelectionFilter*   myAlgorithmFilter;
92
93     QStringList             HypoList;
94     QStringList             AlgoList;
95
96     QGroupBox*    GroupButtons;
97     QPushButton*  buttonOk;
98     QPushButton*  buttonApply;
99     QPushButton*  buttonCancel;
100
101     QGroupBox*    GroupC1;
102     QLabel*       TextLabel_NameMesh;
103     QLineEdit*    LineEdit_NameMesh;
104     QLabel*       TextLabelC1A1;
105     QPushButton*  SelectButtonC1A1;
106     QLineEdit*    LineEditC1A1;
107     QLabel*       TextLabelC1A2;
108     QPushButton*  SelectButtonC1A2;
109     QLineEdit*    LineEditC1A2;
110
111     QLabel*       TextLabelC1A1Hyp;
112     QPushButton*  SelectButtonC1A1Hyp;
113     QLineEdit*    LineEditC1A1Hyp;
114
115     QLabel*       TextLabelC1A1Algo;
116     QPushButton*  SelectButtonC1A1Algo;
117     QLineEdit*    LineEditC1A1Algo;
118
119 private slots:
120     void ClickOnOk();
121     bool ClickOnApply();
122     void ClickOnCancel();
123     void SetEditCurrentArgument();
124     void SelectionIntoArgument();
125     void DeactivateActiveDialog();
126     void ActivateThisDialog();
127 };
128
129 #endif // DIALOGBOX_ADD_SUBMESH_H