1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : SMESHGUI_MultiEditDlg.h
24 // Author : Sergey LITONIN, Open CASCADE S.A.S.
26 #ifndef SMESHGUI_MULTIEDITDLG_H
27 #define SMESHGUI_MULTIEDITDLG_H
30 #include "SMESH_SMESHGUI.hxx"
36 #include <TColStd_MapOfInteger.hxx>
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
41 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
44 class SMESHGUI_FilterDlg;
45 class SMESHGUI_SpinBox;
49 class LightApp_SelectionMgr;
62 * Class : SMESHGUI_MultiEditDlg
63 * Description : Base class for dialogs of diagonal inversion and
64 * union of two neighboring triangles
67 class SMESHGUI_EXPORT SMESHGUI_MultiEditDlg : public QDialog
72 SMESHGUI_MultiEditDlg( SMESHGUI*, const int, const bool = false );
73 virtual ~SMESHGUI_MultiEditDlg();
77 bool eventFilter( QObject*, QEvent* );
80 void ListContensChanged();
84 virtual bool onApply();
85 virtual void onClose();
89 void onSelectionDone();
95 void onListSelectionChanged();
98 virtual void onToAllChk();
99 void onFilterAccepted();
100 void on3d2dChanged(int);
102 SMESH::NumericalFunctor_ptr getNumericalFunctor();
105 void closeEvent( QCloseEvent* );
106 void enterEvent( QEvent * );
107 void hideEvent( QHideEvent* ); /* ESC key */
108 void keyPressEvent( QKeyEvent* );
109 QWidget* createButtonFrame( QWidget* );
110 QWidget* createMainFrame( QWidget*, const bool );
111 virtual bool isValid( const bool );
112 SMESH::long_array_var getIds(SMESH::SMESH_IDSource_var& obj);
113 void updateButtons();
114 void setSelectionMode();
115 virtual bool isIdValid( const int ) const;
116 virtual bool process( SMESH::SMESH_MeshEditor_ptr,
117 const SMESH::long_array& ,
118 SMESH::SMESH_IDSource_ptr obj) = 0;
122 QPushButton* myOkBtn;
123 QPushButton* myApplyBtn;
124 QPushButton* myCloseBtn;
125 QPushButton* myHelpBtn;
126 SMESH_Actor* myActor;
127 SMESH::SMESH_Mesh_var myMesh;
129 LightApp_SelectionMgr* mySelectionMgr;
130 SVTK_Selector* mySelector;
131 SMESHGUI* mySMESHGUI;
134 QGroupBox* myCriterionGrp;
136 QWidget* myChoiceWidget;
137 QButtonGroup* myGroupChoice;
138 QComboBox* myComboBoxFunctor;
140 QListWidget* myListBox;
141 QPushButton* myFilterBtn;
142 QPushButton* myAddBtn;
143 QPushButton* myRemoveBtn;
144 QPushButton* mySortBtn;
146 QCheckBox* myToAllChk;
147 QButtonGroup* myEntityTypeGrp;
149 QCheckBox* mySubmeshChk;
150 QPushButton* mySubmeshBtn;
151 QLineEdit* mySubmesh;
153 QCheckBox* myGroupChk;
154 QPushButton* myGroupBtn;
157 SMESHGUI_FilterDlg* myFilterDlg;
158 TColStd_MapOfInteger myIds;
163 QString myHelpFileName;
167 * Class : SMESHGUI_ChangeOrientationDlg
168 * Description : Modification of orientation of faces
170 class SMESHGUI_ChangeOrientationDlg : public SMESHGUI_MultiEditDlg
175 SMESHGUI_ChangeOrientationDlg( SMESHGUI* );
176 virtual ~SMESHGUI_ChangeOrientationDlg();
179 virtual bool process( SMESH::SMESH_MeshEditor_ptr,
180 const SMESH::long_array& ,
181 SMESH::SMESH_IDSource_ptr obj);
185 * Class : SMESHGUI_UnionOfTrianglesDlg
186 * Description : Construction of quadrangles by automatic association of triangles
188 class SMESHGUI_UnionOfTrianglesDlg : public SMESHGUI_MultiEditDlg
193 SMESHGUI_UnionOfTrianglesDlg( SMESHGUI* );
194 virtual ~SMESHGUI_UnionOfTrianglesDlg();
197 virtual bool isValid( const bool );
198 virtual bool process( SMESH::SMESH_MeshEditor_ptr,
199 const SMESH::long_array&,
200 SMESH::SMESH_IDSource_ptr obj );
203 SMESHGUI_SpinBox* myMaxAngleSpin;
207 Class : SMESHGUI_CuttingOfQuadsDlg
208 Description : Construction of quadrangles by automatic association of triangles
210 class SMESHGUI_CuttingOfQuadsDlg : public SMESHGUI_MultiEditDlg
215 SMESHGUI_CuttingOfQuadsDlg( SMESHGUI* );
216 virtual ~SMESHGUI_CuttingOfQuadsDlg();
219 virtual bool process( SMESH::SMESH_MeshEditor_ptr,
220 const SMESH::long_array& ,
221 SMESH::SMESH_IDSource_ptr obj);
224 virtual void onClose();
225 void onCriterionRB();
229 void displayPreview();
233 SALOME_Actor* myPreviewActor;
234 QCheckBox* myPreviewChk;
238 * Class : SMESHGUI_CuttingIntoTetraDlg
239 * Description : Split all volumes into tetrahedrons
241 class SMESHGUI_CuttingIntoTetraDlg : public SMESHGUI_MultiEditDlg
246 SMESHGUI_CuttingIntoTetraDlg( SMESHGUI* );
247 virtual ~SMESHGUI_CuttingIntoTetraDlg();
250 virtual bool process( SMESH::SMESH_MeshEditor_ptr,
251 const SMESH::long_array&,
252 SMESH::SMESH_IDSource_ptr obj );
255 #endif // SMESHGUI_MULTIEDITDLG_H