Salome HOME
Update mail address
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_LogicalFilter.h
1 // Copyright (C) 2005  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #ifndef GEOM_LOGICALFILTER_H
21 #define GEOM_LOGICALFILTER_H
22
23 #include <SUIT_SelectionFilter.h>
24 #include <Standard_Macro.hxx>
25
26 #include <qptrlist.h>
27
28 class Standard_EXPORT GEOM_LogicalFilter : public SUIT_SelectionFilter
29 {
30 public:
31   enum { LO_OR, LO_AND, LO_NOT, LO_UNDEFINED };
32
33 public:
34   GEOM_LogicalFilter( const QPtrList<SUIT_SelectionFilter>& lst, const int op );
35   ~GEOM_LogicalFilter();
36
37   virtual bool                   isOk( const SUIT_DataOwner* ) const;
38
39   void                           setFilters( const QPtrList<SUIT_SelectionFilter>& lst );
40   void                           setOperation( const int );
41   QPtrList<SUIT_SelectionFilter> getFilters() const;
42   int                            getOperation() const;
43
44 private:
45   QPtrList<SUIT_SelectionFilter>  myFilters;
46   int                             myOperation;
47
48 };
49
50 #endif