Salome HOME
*** empty log message ***
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupOp.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
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. 
8 // 
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. 
13 // 
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 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19 //
20 //
21 //
22 //  File   : SMESHGUI_GroupOp.h
23 //  Author : Sergey LITONIN
24 //  Module : SMESH
25
26
27 #ifndef SMESHGUI_GroupOp_H
28 #define SMESHGUI_GroupOp_H
29
30 #include <SMESHGUI_SelectionOp.h>
31
32 class SMESHGUI_GroupOpDlg;
33
34 /*
35   Class       : SMESHGUI_GroupOp
36   Description : Perform boolean operations on groups
37 */
38
39 class SMESHGUI_GroupOp : public SMESHGUI_SelectionOp
40
41   Q_OBJECT
42
43 public:
44   enum { UNION, INTERSECT, CUT };
45   
46 public:
47   SMESHGUI_GroupOp( const int );
48   virtual ~SMESHGUI_GroupOp();
49   
50   virtual SalomeApp_Dialog* dlg() const;  
51
52 protected:
53   virtual void startOperation();
54   virtual void initDialog();
55   virtual void selectionDone();
56   
57   virtual SUIT_SelectionFilter* createFilter( const int ) const;
58
59   bool isValid() const;
60   void updateDialog();
61   
62 protected slots:
63   virtual bool onApply();
64
65 private slots:
66   void onNameChanged( const QString& );
67
68 private:
69   SMESHGUI_GroupOpDlg  *myDlg;
70   int                   myMode;
71 };
72
73 #endif