Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/smesh.git] / src / SMESHFiltersSelection / SMESH_LogicalFilter.cxx
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 //  File   : SMESH_LogicalFilter.cxx
21 //  Module : SMESH
22
23 #include "SMESH_LogicalFilter.hxx"
24
25 //=======================================================================
26 // name    : SMESH_LogicalFilter::SMESH_LogicalFilter
27 // Purpose : Constructor
28 //=======================================================================
29 SMESH_LogicalFilter::SMESH_LogicalFilter (const QPtrList<SUIT_SelectionFilter>& theFilters,
30                                           const int                             theLogOp)
31 {
32   setFilters(theFilters); 
33   setOperation(theLogOp);
34 }
35
36 //=======================================================================
37 // name    : SMESH_LogicalFilter::~SMESH_LogicalFilter
38 // Purpose : Destructor
39 //=======================================================================
40 SMESH_LogicalFilter::~SMESH_LogicalFilter()
41 {
42 }
43
44 //=======================================================================
45 // name    : SMESH_LogicalFilter::IsOk
46 // Purpose : Verify validity of entry object
47 //=======================================================================
48 bool SMESH_LogicalFilter::isOk (const SUIT_DataOwner* owner) const
49 {
50   bool res = true;
51   QPtrListIterator<SUIT_SelectionFilter> it (myFilters);
52   SUIT_SelectionFilter* filter;
53   for (; ((filter = it.current()) != 0) && res; ++it)
54   {
55     if (myOperation == LO_OR && filter->isOk(owner))
56       return true;
57     if (myOperation == LO_AND && !filter->isOk(owner))
58       return false;
59     if (myOperation == LO_NOT)
60       return !filter->isOk(owner);
61   }
62
63   return (myOperation != LO_OR);
64 }
65
66 //=======================================================================
67 // name    : SMESH_LogicalFilter::setFilters
68 // Purpose : Set new list of filters. Old wilters are removed
69 //=======================================================================
70 void SMESH_LogicalFilter::setFilters (const QPtrList<SUIT_SelectionFilter>& theFilters)
71 {
72   myFilters = theFilters;
73 }
74
75 //=======================================================================
76 // name    : SMESH_LogicalFilter::setOperation
77 // Purpose : Set logical operation
78 //=======================================================================
79 void SMESH_LogicalFilter::setOperation (const int theLogOp)
80 {
81   myOperation = theLogOp;
82 }
83
84 //=======================================================================
85 // name    : SMESH_LogicalFilter::getFilters
86 // Purpose : Get list of filters
87 //=======================================================================
88 const QPtrList<SUIT_SelectionFilter> SMESH_LogicalFilter::getFilters() const
89 {
90   return myFilters;
91 }
92
93 //=======================================================================
94 // name    : SMESH_LogicalFilter::getOperation
95 // Purpose : Get logical operation
96 //=======================================================================
97 int SMESH_LogicalFilter::getOperation() const
98 {
99   return myOperation;
100 }