Salome HOME
Refactoring
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MultiEditDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : SMESHGUI_MultiEditDlg.h
23 // Author : Sergey LITONIN, Open CASCADE S.A.S.
24 //
25 #ifndef SMESHGUI_MULTIEDITDLG_H
26 #define SMESHGUI_MULTIEDITDLG_H
27
28 // SMESH includes
29 #include "SMESH_SMESHGUI.hxx"
30 #include "SMESHGUI_Helper.h"
31
32 // Qt includes 
33 #include <QDialog>
34
35 // OCCT includes
36 #include <TColStd_MapOfInteger.hxx>
37
38 // IDL includes
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
41 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
42
43 class SMESHGUI;
44 class SMESHGUI_FilterDlg;
45 class SMESHGUI_SpinBox;
46
47 class SMESH_Actor;
48
49 class LightApp_SelectionMgr;
50 class SALOME_Actor;
51 class SVTK_Selector;
52
53 class QListWidget;
54 class QComboBox;
55 class QCheckBox;
56 class QGroupBox;
57 class QLineEdit;
58 class QPushButton;
59 class QButtonGroup;
60
61 /*!
62  * Class       : SMESHGUI_MultiEditDlg
63  * Description : Base class for dialogs of diagonal inversion and
64  *               union of two neighboring triangles
65  */
66
67 class SMESHGUI_EXPORT SMESHGUI_MultiEditDlg : public QDialog, public SMESHGUI_Helper
68 {
69   Q_OBJECT
70
71 public:
72   SMESHGUI_MultiEditDlg( SMESHGUI*, const int, const bool = false );
73   virtual ~SMESHGUI_MultiEditDlg();
74
75   void                      Init();
76
77   bool                      eventFilter( QObject*, QEvent* );
78
79 signals:
80   void                      ListContensChanged();
81
82 protected slots:
83   void                      onOk();
84   virtual bool              onApply();
85   virtual void              onClose();
86   void                      onHelp();
87
88   void                      onDeactivate();
89   void                      onSelectionDone();
90
91   void                      onFilterBtn();
92   void                      onAddBtn();
93   void                      onRemoveBtn();
94   void                      onSortListBtn();
95   void                      onListSelectionChanged();
96   void                      onSubmeshChk();
97   void                      onGroupChk();
98   virtual void              onToAllChk();
99   void                      onFilterAccepted();
100   void                      on3d2dChanged(int);
101
102   SMESH::NumericalFunctor_ptr getNumericalFunctor();
103
104 protected:
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();
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& ) = 0;
118   int                       entityType();
119
120 protected:
121   QPushButton*              myOkBtn;
122   QPushButton*              myApplyBtn;
123   QPushButton*              myCloseBtn;
124   QPushButton*              myHelpBtn;
125   SMESH_Actor*              myActor;
126   SMESH::SMESH_Mesh_var     myMesh;
127
128   LightApp_SelectionMgr*    mySelectionMgr;
129   SVTK_Selector*            mySelector;
130   SMESHGUI*                 mySMESHGUI;
131
132   QGroupBox*                mySelGrp;
133   QGroupBox*                myCriterionGrp;
134
135   QWidget*                  myChoiceWidget;
136   QButtonGroup*             myGroupChoice;
137   QComboBox*                myComboBoxFunctor;
138
139   QListWidget*              myListBox;
140   QPushButton*              myFilterBtn;
141   QPushButton*              myAddBtn;
142   QPushButton*              myRemoveBtn;
143   QPushButton*              mySortBtn;
144
145   QCheckBox*                myToAllChk;
146   QButtonGroup*             myEntityTypeGrp;
147
148   QCheckBox*                mySubmeshChk;
149   QPushButton*              mySubmeshBtn;
150   QLineEdit*                mySubmesh;
151
152   QCheckBox*                myGroupChk;
153   QPushButton*              myGroupBtn;
154   QLineEdit*                myGroup;
155
156   SMESHGUI_FilterDlg*       myFilterDlg;
157   TColStd_MapOfInteger      myIds;
158   int                       myFilterType;
159   bool                      myBusy;
160   int                       myEntityType;
161
162   QString                   myHelpFileName;
163 };
164
165 /*!
166  * Class       : SMESHGUI_ChangeOrientationDlg
167  * Description : Modification of orientation of faces
168  */
169 class  SMESHGUI_ChangeOrientationDlg : public SMESHGUI_MultiEditDlg
170 {
171   Q_OBJECT
172
173 public:
174   SMESHGUI_ChangeOrientationDlg( SMESHGUI* );
175   virtual ~SMESHGUI_ChangeOrientationDlg();
176
177 protected:
178   virtual bool process( SMESH::SMESH_MeshEditor_ptr, const SMESH::long_array& );
179 };
180
181 /*!
182  * Class       : SMESHGUI_UnionOfTrianglesDlg
183  * Description : Construction of quadrangles by automatic association of triangles
184  */
185 class  SMESHGUI_UnionOfTrianglesDlg : public SMESHGUI_MultiEditDlg
186 {
187   Q_OBJECT
188
189 public:
190   SMESHGUI_UnionOfTrianglesDlg( SMESHGUI* );
191   virtual ~SMESHGUI_UnionOfTrianglesDlg();
192
193 protected:
194   virtual bool      isValid( const bool );
195   virtual bool      process( SMESH::SMESH_MeshEditor_ptr, const SMESH::long_array& );
196
197 private:
198   SMESHGUI_SpinBox* myMaxAngleSpin;
199 };
200
201 /*
202   Class       : SMESHGUI_CuttingOfQuadsDlg
203   Description : Construction of quadrangles by automatic association of triangles
204 */
205 class  SMESHGUI_CuttingOfQuadsDlg : public SMESHGUI_MultiEditDlg
206 {
207   Q_OBJECT
208
209 public:
210   SMESHGUI_CuttingOfQuadsDlg( SMESHGUI* );
211   virtual ~SMESHGUI_CuttingOfQuadsDlg();
212
213 protected:
214   virtual bool  process( SMESH::SMESH_MeshEditor_ptr, const SMESH::long_array& );
215
216 protected slots:
217   virtual void  onClose();
218   void          onCriterionRB();
219   void          onPreviewChk();
220
221 private:
222   void          displayPreview();
223   void          erasePreview();
224
225 private:
226   SALOME_Actor* myPreviewActor;
227   QCheckBox*    myPreviewChk;
228 };
229
230 #endif // SMESHGUI_MULTIEDITDLG_H