1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMESHGUI_AddSubMeshDlg.h
25 // Author : Nicolas REJNERI
29 #ifndef DIALOGBOX_ADD_SUBMESH_H
30 #define DIALOGBOX_ADD_SUBMESH_H
32 //#include "SMESH_TypeFilter.hxx"
34 #include "SUIT_SelectionFilter.h"
35 #include "SalomeApp_SelectionMgr.h"
39 #include <qstringlist.h>
42 #include <SALOMEconfig.h>
43 #include CORBA_SERVER_HEADER(GEOM_Gen)
44 #include CORBA_SERVER_HEADER(SMESH_Mesh)
52 //=================================================================================
53 // class : SMESHGUI_AddSubMeshDlg
55 //=================================================================================
56 class SMESHGUI_AddSubMeshDlg : public QDialog
61 SMESHGUI_AddSubMeshDlg( SMESHGUI*,
65 ~SMESHGUI_AddSubMeshDlg();
68 void closeEvent (QCloseEvent* e);
69 void enterEvent (QEvent *) ;
74 void UpdateControlState();
78 SalomeApp_SelectionMgr* mySelectionMgr;
80 SMESH::SMESH_Mesh_var myMesh;
81 GEOM::GEOM_Object_var myGeomShape;
82 QLineEdit* myEditCurrentArgument;
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;
96 QGroupBox* GroupButtons;
97 QPushButton* buttonOk;
98 QPushButton* buttonApply;
99 QPushButton* buttonCancel;
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;
111 QLabel* TextLabelC1A1Hyp;
112 QPushButton* SelectButtonC1A1Hyp;
113 QLineEdit* LineEditC1A1Hyp;
115 QLabel* TextLabelC1A1Algo;
116 QPushButton* SelectButtonC1A1Algo;
117 QLineEdit* LineEditC1A1Algo;
122 void ClickOnCancel();
123 void SetEditCurrentArgument();
124 void SelectionIntoArgument();
125 void DeactivateActiveDialog();
126 void ActivateThisDialog();
129 #endif // DIALOGBOX_ADD_SUBMESH_H