Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupOpDlg.h
1 //  Copyright (C) 2007-2010  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
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 private:
92   void                      closeEvent( QCloseEvent* );
93   void                      enterEvent( QEvent* );            
94   void                      keyPressEvent( QKeyEvent* );
95   
96 private slots:
97   void                      onOk();
98   void                      onClose();
99   void                      onHelp();
100
101   void                      onDeactivate();
102
103 private:
104   QWidget*                  createButtonFrame( QWidget* );
105   QWidget*                  createMainFrame  ( QWidget* );
106     
107 private:
108   QPushButton*              myOkBtn;
109   QPushButton*              myApplyBtn;
110   QPushButton*              myCloseBtn;
111   QPushButton*              myHelpBtn;
112   
113   QLineEdit*                myNameEdit;
114   QGroupBox*                myArgGrp;
115   QtxColorButton*           myColorBtn;
116   
117   SMESHGUI*                 mySMESHGUI;
118   LightApp_SelectionMgr*    mySelectionMgr;
119   SVTK_Selector*            mySelector;
120   
121   QString                   myHelpFileName;
122 };
123
124 /*
125   Class       : SMESHGUI_UnionGroupsDlg
126   Description : Perform union of several groups
127 */
128
129 class SMESHGUI_EXPORT SMESHGUI_UnionGroupsDlg : public SMESHGUI_GroupOpDlg
130
131   Q_OBJECT
132     
133 public:
134
135   SMESHGUI_UnionGroupsDlg( SMESHGUI* );
136   virtual ~SMESHGUI_UnionGroupsDlg();
137
138 protected slots:
139   virtual bool                      onApply();
140   virtual void                      onSelectionDone();
141
142 protected:
143   virtual void                      reset();
144
145 private:
146   QListWidget*                      myListWg;
147   QList<SMESH::SMESH_GroupBase_var> myGroups;
148 };
149
150 /*
151   Class       : SMESHGUI_IntersectGroupsDlg
152   Description : Perform intersection of several groups
153 */
154
155 class SMESHGUI_EXPORT SMESHGUI_IntersectGroupsDlg : public SMESHGUI_GroupOpDlg
156
157   Q_OBJECT
158     
159 public:
160
161   SMESHGUI_IntersectGroupsDlg( SMESHGUI* );
162   virtual ~SMESHGUI_IntersectGroupsDlg();
163
164 protected slots:
165   virtual bool                      onApply();
166   virtual void                      onSelectionDone();
167
168 protected:
169   virtual void                      reset();
170     
171 private:
172   QListWidget*                      myListWg;
173   QList<SMESH::SMESH_GroupBase_var> myGroups;
174 };
175
176 /*
177   Class       : SMESHGUI_CutGroupsDlg
178   Description : Perform cut of several groups
179 */
180
181 class SMESHGUI_EXPORT SMESHGUI_CutGroupsDlg : public SMESHGUI_GroupOpDlg
182
183   Q_OBJECT
184     
185 public:
186
187   SMESHGUI_CutGroupsDlg( SMESHGUI* );
188   virtual ~SMESHGUI_CutGroupsDlg();
189
190 protected slots:
191   virtual bool                      onApply();
192   virtual void                      onSelectionDone();
193
194 protected:
195   virtual void                      reset();
196
197 private:
198   QPushButton*                      myBtn1;
199   QPushButton*                      myBtn2;
200   QListWidget*                      myListWg1;
201   QListWidget*                      myListWg2;
202   QList<SMESH::SMESH_GroupBase_var> myGroups1;
203   QList<SMESH::SMESH_GroupBase_var> myGroups2;
204 };
205
206 /*
207   Class       : SMESHGUI_DimGroupDlg
208   Description : Dialog for creating groups of entities from existing 
209                 groups of superior dimensions
210 */
211
212 class SMESHGUI_EXPORT SMESHGUI_DimGroupDlg : public SMESHGUI_GroupOpDlg
213
214   Q_OBJECT
215     
216 public:
217
218   SMESHGUI_DimGroupDlg( SMESHGUI* );
219   virtual ~SMESHGUI_DimGroupDlg();
220
221   SMESH::ElementType                getElementType() const;
222   void                              setElementType( const SMESH::ElementType& theElemType );
223
224 protected:
225   virtual void                      reset();
226
227 protected slots:
228   virtual bool                      onApply();
229   virtual void                      onSelectionDone();
230
231 private:
232   QComboBox*                        myCombo;
233   QListWidget*                      myListWg;
234   QList<SMESH::SMESH_GroupBase_var> myGroups;
235 };
236
237 #endif // SMESHGUI_GROUPOPDLG_H
238
239