1 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
22 // File : SMESHGUI_MultiEditDlg.h
23 // Author : Sergey LITONIN
27 #ifndef SMESHGUI_MultiEditDlg_H
28 #define SMESHGUI_MultiEditDlg_H
32 #include "SUIT_SelectionFilter.h"
34 #include <TColStd_MapOfInteger.hxx>
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38 #include CORBA_SERVER_HEADER(SMESH_Filter)
41 class SMESHGUI_FilterDlg;
42 class SMESHGUI_SpinBox;
46 class LightApp_SelectionMgr;
49 class SVTK_ViewWindow;
62 * Class : SMESHGUI_MultiEditDlg
63 * Description : Base class for dialogs of diagonal inversion and
64 * union of two neighboring triangles
67 class SMESHGUI_MultiEditDlg : public QDialog
72 SMESHGUI_MultiEditDlg(SMESHGUI* theModule,
76 virtual ~SMESHGUI_MultiEditDlg();
80 bool eventFilter( QObject* object, QEvent* event );
83 void ListContensChanged();
87 virtual bool onApply();
88 virtual void onClose();
91 void onSelectionDone();
97 void onListSelectionChanged();
100 virtual void onToAllChk();
101 void onFilterAccepted();
102 void on3d2dChanged(int);
104 SMESH::NumericalFunctor_ptr getNumericalFunctor();
107 void closeEvent( QCloseEvent* e ) ;
108 void enterEvent ( QEvent * ) ;
109 void hideEvent ( QHideEvent * ); /* ESC key */
110 QFrame* createButtonFrame( QWidget* );
111 QFrame* createMainFrame ( QWidget*, const bool );
112 bool isValid( const bool ) const;
113 SMESH::long_array_var getIds();
114 void updateButtons();
115 void setSelectionMode();
116 virtual bool isIdValid( const int theID ) const;
117 virtual bool process( SMESH::SMESH_MeshEditor_ptr, const SMESH::long_array& ) = 0;
121 QPushButton* myOkBtn;
122 QPushButton* myApplyBtn;
123 QPushButton* myCloseBtn;
124 SMESH_Actor* myActor;
125 SMESH::SMESH_Mesh_var myMesh;
127 LightApp_SelectionMgr* mySelectionMgr;
128 SVTK_Selector* mySelector;
129 SMESHGUI* mySMESHGUI;
132 QGroupBox* myCriterionGrp;
134 QButtonGroup* myGroupChoice;
135 QComboBox* myComboBoxFunctor;
138 QPushButton* myFilterBtn;
139 QPushButton* myAddBtn;
140 QPushButton* myRemoveBtn;
141 QPushButton* mySortBtn;
143 QCheckBox* myToAllChk;
144 QButtonGroup* myEntityTypeGrp;
146 QCheckBox* mySubmeshChk;
147 QPushButton* mySubmeshBtn;
148 QLineEdit* mySubmesh;
150 QCheckBox* myGroupChk;
151 QPushButton* myGroupBtn;
154 SMESHGUI_FilterDlg* myFilterDlg;
155 TColStd_MapOfInteger myIds;
162 * Class : SMESHGUI_ChangeOrientationDlg
163 * Description : Modification of orientation of faces
165 class SMESHGUI_ChangeOrientationDlg : public SMESHGUI_MultiEditDlg
170 SMESHGUI_ChangeOrientationDlg(SMESHGUI* theModule,
172 virtual ~SMESHGUI_ChangeOrientationDlg();
175 virtual bool process( SMESH::SMESH_MeshEditor_ptr, const SMESH::long_array& );
179 * Class : SMESHGUI_UnionOfTrianglesDlg
180 * Description : Construction of quadrangles by automatic association of triangles
182 class SMESHGUI_UnionOfTrianglesDlg : public SMESHGUI_MultiEditDlg
187 SMESHGUI_UnionOfTrianglesDlg(SMESHGUI* theModule,
189 virtual ~SMESHGUI_UnionOfTrianglesDlg();
192 virtual bool process( SMESH::SMESH_MeshEditor_ptr, const SMESH::long_array& );
195 SMESHGUI_SpinBox* myMaxAngleSpin;
199 Class : SMESHGUI_CuttingOfQuadsDlg
200 Description : Construction of quadrangles by automatic association of triangles
202 class SMESHGUI_CuttingOfQuadsDlg : public SMESHGUI_MultiEditDlg
207 SMESHGUI_CuttingOfQuadsDlg(SMESHGUI* theModule,
209 virtual ~SMESHGUI_CuttingOfQuadsDlg();
212 virtual bool process( SMESH::SMESH_MeshEditor_ptr, const SMESH::long_array& );
215 virtual void onClose();
216 void onCriterionRB();
220 void displayPreview();
224 SALOME_Actor* myPreviewActor;
225 QCheckBox* myPreviewChk;