Salome HOME
Porting to Qt4.
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_SelectionFilter.h
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 #ifndef GEOM_SELECTIONFILTER_H
21 #define GEOM_SELECTIONFILTER_H
22
23 #include <SalomeApp_Filter.h>
24
25 #include <TopoDS_Shape.hxx>
26
27 #include <QList>
28
29 // IDL Headers
30 #include <SALOMEconfig.h>
31 #include CORBA_SERVER_HEADER(GEOM_Gen)
32
33 class Standard_EXPORT GEOM_SelectionFilter : public SalomeApp_Filter
34 {
35 public:
36   GEOM_SelectionFilter( SalomeApp_Study* study, const bool theAll = false );
37   ~GEOM_SelectionFilter();
38
39   virtual bool isOk( const SUIT_DataOwner* ) const;
40
41 protected:
42   GEOM::GEOM_Object_ptr getObject( const SUIT_DataOwner*, const bool = true ) const;
43   bool                  getShape( const GEOM::GEOM_Object_ptr&, TopoDS_Shape& ) const;
44   
45   bool                  contains( const int ) const;
46   void                  add( const int );
47   void                  remove( const int );
48
49   void                  setAll( const bool );
50   bool                  isAll() const;
51
52   bool                  isShapeOk( const TopoDS_Shape& ) const;
53
54 private:
55   QList<int>            myTypes;
56   bool                  myAll;
57
58 };
59
60 #endif