Salome HOME
Porting SMESH module to Qt 4
[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 QList<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   SUIT_SelectionFilter* filter;
51   foreach( filter, myFilters )
52   {
53     if (myOperation == LO_OR && filter->isOk(owner))
54       return true;
55     if (myOperation == LO_AND && !filter->isOk(owner))
56       return false;
57     if (myOperation == LO_NOT)
58       return !filter->isOk(owner);
59   }
60
61   return (myOperation != LO_OR);
62 }
63
64 //=======================================================================
65 // name    : SMESH_LogicalFilter::setFilters
66 // Purpose : Set new list of filters. Old wilters are removed
67 //=======================================================================
68 void SMESH_LogicalFilter::setFilters (const QList<SUIT_SelectionFilter*>& theFilters)
69 {
70   myFilters = theFilters;
71 }
72
73 //=======================================================================
74 // name    : SMESH_LogicalFilter::setOperation
75 // Purpose : Set logical operation
76 //=======================================================================
77 void SMESH_LogicalFilter::setOperation (const int theLogOp)
78 {
79   myOperation = theLogOp;
80 }
81
82 //=======================================================================
83 // name    : SMESH_LogicalFilter::getFilters
84 // Purpose : Get list of filters
85 //=======================================================================
86 const QList<SUIT_SelectionFilter*> SMESH_LogicalFilter::getFilters() const
87 {
88   return myFilters;
89 }
90
91 //=======================================================================
92 // name    : SMESH_LogicalFilter::getOperation
93 // Purpose : Get logical operation
94 //=======================================================================
95 int SMESH_LogicalFilter::getOperation() const
96 {
97   return myOperation;
98 }