Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_LogicalFilter.hxx
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  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 //
24 //  File   : GEOM_LogicalFilter.hxx
25 //  Author : Sergey LITONIN
26 //  Module : GEOM
27
28 #ifndef _GEOM_LogicalFilter_HeaderFile
29 #define _GEOM_LogicalFilter_HeaderFile
30
31 #include "SALOME_Filter.hxx"
32
33 #include <Standard_DefineHandle.hxx>
34 #include <NCollection_StdBase.hxx>
35 #include <NCollection_DefineList.hxx>
36
37 DEFINE_STANDARD_HANDLE( GEOM_LogicalFilter, SALOME_Filter )
38
39 DEFINE_BASECOLLECTION( GEOM_FilterColl, Handle(SALOME_Filter) )
40 DEFINE_LIST( GEOM_ListOfFilter, GEOM_FilterColl, Handle(SALOME_Filter) )
41
42
43 /*
44   Class       : GEOM_LogicalFilter
45   Description : Filter for combaining several filters with logical operation (OR or AND)
46 */
47
48 class GEOM_LogicalFilter : public SALOME_Filter
49 {
50 public:
51
52   enum { LO_OR, LO_AND, LO_NOT, LO_UNDEFINED };
53
54 public:
55
56                               GEOM_LogicalFilter( const GEOM_ListOfFilter&, const int  );
57                               GEOM_LogicalFilter( const Handle(SALOME_Filter)&, const int );
58
59
60   virtual                     ~GEOM_LogicalFilter();
61   virtual                     Standard_Boolean IsOk( const Handle(SALOME_InteractiveObject)& ) const;
62
63   void                        SetFilters( const GEOM_ListOfFilter& );
64   void                        SetLogOp( const int );
65   const GEOM_ListOfFilter&    GetFilters() const;
66   int                         GetLogOp() const;
67
68 private:
69
70   GEOM_ListOfFilter           myFilters;
71   int                         myLogOp;
72
73 public:
74   DEFINE_STANDARD_RTTI( GEOM_LogicalFilter )
75 };
76
77 #endif
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103