Salome HOME
IMP 22635: EDF 8345 - Creation of group based on groups
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupOpDlg.h
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_GroupOpDlg.h
25 // Author : Sergey LITONIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_GROUPOPDLG_H
28 #define SMESHGUI_GROUPOPDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 // IDL includes
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Group)
39
40 class LightApp_SelectionMgr;
41 class QCheckBox;
42 class QComboBox;
43 class QGroupBox;
44 class QLineEdit;
45 class QListWidget;
46 class QPushButton;
47 class QtxColorButton;
48 class SMESHGUI;
49 class SVTK_Selector;
50
51 /*
52   Class       : SMESHGUI_GroupOpDlg
53   Description : Perform boolean operations on groups
54 */
55
56 class SMESHGUI_EXPORT SMESHGUI_GroupOpDlg : public QDialog
57
58   Q_OBJECT
59     
60 public:
61   //enum { UNION, INTERSECT, CUT };
62     
63 public:
64   SMESHGUI_GroupOpDlg( SMESHGUI* );
65   virtual ~SMESHGUI_GroupOpDlg();
66
67   void                      Init();
68
69 protected slots:
70
71   virtual bool              onApply();
72   virtual void              onSelectionDone();
73   virtual void              setVisible ( bool visible );
74
75 protected:
76
77   virtual void              reset();
78
79   QString                   getName() const;
80   void                      setName( const QString& theName );
81
82   QGroupBox*                getArgGrp() const;
83   void                      setHelpFileName( const QString& theFName );
84   SMESHGUI*                 getSMESHGUI() const;
85   bool                      isValid( const QList<SMESH::SMESH_GroupBase_var>& theListGrp );
86   bool                      getSelectedGroups( QList<SMESH::SMESH_GroupBase_var>& theOutList,
87                                                QStringList& theOutNames );
88   SMESH::ListOfGroups*      convert( const QList<SMESH::SMESH_GroupBase_var>& );
89
90   SALOMEDS::Color           getColor() const;
91
92   void                      setIsApplyAndClose( const bool theFlag );
93   bool                      isApplyAndClose() const;
94
95 private:
96   void                      enterEvent( QEvent* );            
97   void                      keyPressEvent( QKeyEvent* );
98   
99 protected slots:
100   virtual void              reject();
101
102 private slots:
103   void                      onOk();
104   void                      onHelp();
105
106   void                      onDeactivate();
107
108 private:
109   QWidget*                  createButtonFrame( QWidget* );
110   QWidget*                  createMainFrame  ( QWidget* );
111     
112 private:
113   QPushButton*              myOkBtn;
114   QPushButton*              myApplyBtn;
115   QPushButton*              myCloseBtn;
116   QPushButton*              myHelpBtn;
117   
118   QLineEdit*                myNameEdit;
119   QGroupBox*                myArgGrp;
120   QtxColorButton*           myColorBtn;
121   
122   SMESHGUI*                 mySMESHGUI;
123   LightApp_SelectionMgr*    mySelectionMgr;
124   SVTK_Selector*            mySelector;
125   
126   QString                   myHelpFileName;
127
128   bool                      myIsApplyAndClose;
129 };
130
131 /*
132   Class       : SMESHGUI_UnionGroupsDlg
133   Description : Perform union of several groups
134 */
135
136 class SMESHGUI_EXPORT SMESHGUI_UnionGroupsDlg : public SMESHGUI_GroupOpDlg
137
138   Q_OBJECT
139     
140 public:
141
142   SMESHGUI_UnionGroupsDlg( SMESHGUI* );
143   virtual ~SMESHGUI_UnionGroupsDlg();
144
145 protected slots:
146   virtual bool                      onApply();
147   virtual void                      onSelectionDone();
148
149 protected:
150   virtual void                      reset();
151
152 private:
153   QListWidget*                      myListWg;
154   QList<SMESH::SMESH_GroupBase_var> myGroups;
155 };
156
157 /*
158   Class       : SMESHGUI_IntersectGroupsDlg
159   Description : Perform intersection of several groups
160 */
161
162 class SMESHGUI_EXPORT SMESHGUI_IntersectGroupsDlg : public SMESHGUI_GroupOpDlg
163
164   Q_OBJECT
165     
166 public:
167
168   SMESHGUI_IntersectGroupsDlg( SMESHGUI* );
169   virtual ~SMESHGUI_IntersectGroupsDlg();
170
171 protected slots:
172   virtual bool                      onApply();
173   virtual void                      onSelectionDone();
174
175 protected:
176   virtual void                      reset();
177     
178 private:
179   QListWidget*                      myListWg;
180   QList<SMESH::SMESH_GroupBase_var> myGroups;
181 };
182
183 /*
184   Class       : SMESHGUI_CutGroupsDlg
185   Description : Perform cut of several groups
186 */
187
188 class SMESHGUI_EXPORT SMESHGUI_CutGroupsDlg : public SMESHGUI_GroupOpDlg
189
190   Q_OBJECT
191     
192 public:
193
194   SMESHGUI_CutGroupsDlg( SMESHGUI* );
195   virtual ~SMESHGUI_CutGroupsDlg();
196
197 protected slots:
198   virtual bool                      onApply();
199   virtual void                      onSelectionDone();
200
201 protected:
202   virtual void                      reset();
203
204 private:
205   QPushButton*                      myBtn1;
206   QPushButton*                      myBtn2;
207   QListWidget*                      myListWg1;
208   QListWidget*                      myListWg2;
209   QList<SMESH::SMESH_GroupBase_var> myGroups1;
210   QList<SMESH::SMESH_GroupBase_var> myGroups2;
211 };
212
213 /*
214   Class       : SMESHGUI_DimGroupDlg
215   Description : Dialog for creating groups of entities from existing 
216                 groups of superior dimensions
217 */
218
219 class SMESHGUI_EXPORT SMESHGUI_DimGroupDlg : public SMESHGUI_GroupOpDlg
220
221   Q_OBJECT
222     
223 public:
224
225   SMESHGUI_DimGroupDlg( SMESHGUI* );
226   virtual ~SMESHGUI_DimGroupDlg();
227
228   SMESH::ElementType                getElementType() const;
229   void                              setElementType( const SMESH::ElementType& theElemType );
230
231 protected:
232   virtual void                      reset();
233
234 protected slots:
235   virtual bool                      onApply();
236   virtual void                      onSelectionDone();
237
238 private:
239   QComboBox*                        myTypeCombo;
240   QComboBox*                        myNbNoCombo;
241   QListWidget*                      myListWg;
242   QCheckBox*                        myUnderlOnlyChk;
243   
244   QList<SMESH::SMESH_GroupBase_var> myGroups;
245 };
246
247 #endif // SMESHGUI_GROUPOPDLG_H
248
249