Salome HOME
d09b95227e5e576cc0552ffd658b5c2f501bdff7
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_LogicalFilter.cxx
1 // Copyright (C) 2007-2023  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, or (at your option) any later version.
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 #include "GEOM_LogicalFilter.h"
24
25 //=======================================================================
26 // function : GEOM_LogicalFilter
27 // purpose  : 
28 //=======================================================================
29 GEOM_LogicalFilter::GEOM_LogicalFilter( const QList<SUIT_SelectionFilter*>& lst, const int op )
30 : SUIT_SelectionFilter()
31 {
32   setFilters( lst ); 
33   setOperation( op );
34 }
35
36 //=======================================================================
37 // function : ~GEOM_LogicalFilter
38 // purpose  : 
39 //=======================================================================
40 GEOM_LogicalFilter::~GEOM_LogicalFilter()
41 {
42 }
43
44 //=======================================================================
45 // function : isOk
46 // purpose  : 
47 //=======================================================================
48 bool GEOM_LogicalFilter::isOk( const SUIT_DataOwner* owner ) const
49 {
50   GEOM_LogicalFilter* non_const_this = (GEOM_LogicalFilter*)this;
51   QListIterator<SUIT_SelectionFilter*> it( non_const_this->myFilters );
52   while ( it.hasNext() )
53   {
54     SUIT_SelectionFilter* filter = it.next();
55     if ( !filter ) continue;
56
57     if ( myOperation == LO_OR && filter->isOk( owner ) )
58       return true;
59     if ( myOperation == LO_AND && !filter->isOk( owner ) )
60       return false;
61     if ( myOperation == LO_NOT )
62       return !filter->isOk( owner );
63   }
64
65   return ( myOperation != LO_OR );
66 }
67
68 //=======================================================================
69 // function : setFilters
70 // purpose  : 
71 //=======================================================================
72 void GEOM_LogicalFilter::setFilters( const QList<SUIT_SelectionFilter*>& lst )
73 {
74   myFilters = lst;
75 }
76
77 //=======================================================================
78 // function : setOperation
79 // purpose  : 
80 //=======================================================================
81 void GEOM_LogicalFilter::setOperation( const int op ) 
82 {
83   myOperation = op;
84 }
85
86 //=======================================================================
87 // function : getFilters
88 // purpose  : 
89 //=======================================================================
90 QList<SUIT_SelectionFilter*> GEOM_LogicalFilter::getFilters() const 
91 {
92   return myFilters;
93 }
94
95 //=======================================================================
96 // function : getOperation
97 // purpose  : 
98 //=======================================================================
99 int GEOM_LogicalFilter::getOperation() const
100 {
101   return myOperation;
102 }