Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/smesh.git] / src / SMESHFiltersSelection / SMESH_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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_LogicalFilter.hxx
25 //  Author : Sergey LITONIN
26 //  Module : SMESH
27
28 #ifndef _SMESH_LogicalFilter_HeaderFile
29 #define _SMESH_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( SMESH_LogicalFilter, SALOME_Filter )
38
39 DEFINE_BASECOLLECTION( SMESH_FilterColl, Handle(SALOME_Filter) )
40 DEFINE_LIST( SMESH_ListOfFilter, SMESH_FilterColl, Handle(SALOME_Filter) )
41
42
43 /*
44   Class       : SMESH_LogicalFilter
45   Description : Filter for combaining several filters with logical operation (OR or AND)
46 */
47
48 class SMESH_LogicalFilter : public SALOME_Filter
49 {
50 public:
51
52   enum { LO_OR, LO_AND, LO_UNDEFINED };
53
54 public:
55
56                               SMESH_LogicalFilter( const SMESH_ListOfFilter&, const int  );
57
58
59   virtual                     ~SMESH_LogicalFilter();
60   virtual                     Standard_Boolean IsOk( const Handle(SALOME_InteractiveObject)& ) const;
61
62   void                        SetFilters( const SMESH_ListOfFilter& );
63   void                        SetLogOp( const int );
64   const SMESH_ListOfFilter&    GetFilters() const;
65   int                         GetLogOp() const;
66
67 private:
68
69   SMESH_ListOfFilter           myFilters;
70   int                         myLogOp;
71
72 public:
73   DEFINE_STANDARD_RTTI( SMESH_LogicalFilter )
74 };
75
76 #endif
77
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