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