Salome HOME
Merging with WPdev
[modules/smesh.git] / src / SMESHFiltersSelection / SMESH_NumberFilter.hxx
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_NumberFilter.hxx
21 //  Module : SMESH
22
23 #ifndef _SMESH_NumberFilter_HeaderFile
24 #define _SMESH_NumberFilter_HeaderFile
25
26 #include "SMESH_Type.h"
27
28 #include "SUIT_SelectionFilter.h"
29
30 #include <TopAbs_ShapeEnum.hxx>
31 #include <TColStd_MapOfInteger.hxx>
32
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(GEOM_Gen)
35
36 #include <string>
37
38 class SUIT_DataOwner;
39
40 /*!
41  *  Class       : SMESH_NumberFilter
42  *  Description : Filter for geom or smesh objects.
43  *                Filter geom objects by number of subshapes of the given type
44  *                Parameters of constructor:
45  *                * theSubShapeType - Type of subshape
46  *                * theNumber       - Number of subshapes. Object is selected if it contains theNumber of
47  *                                    theSubShapeType sub-shapes
48  *                * theShapeType    - This map specifies types of object to be selected
49  *                * theMainObject   - Sub-shapes of this object is selected only
50  *                * theIsClosedOnly - Closed shapes is selected if this parameter is true
51  */
52 class SMESHFILTERSSELECTION_EXPORT SMESH_NumberFilter : public SUIT_SelectionFilter
53 {
54  public:
55   SMESH_NumberFilter (const char*            theKind,
56                       const TopAbs_ShapeEnum theSubShapeType,
57                       const int              theNumber,
58                       const TopAbs_ShapeEnum theShapeType = TopAbs_SHAPE,
59                       GEOM::GEOM_Object_ptr  theMainObj = GEOM::GEOM_Object::_nil(),
60                       const bool             theIsClosedOnly = false );
61
62   SMESH_NumberFilter (const char*                 theKind,
63                       const TopAbs_ShapeEnum      theSubShapeType,
64                       const int                   theNumber,
65                       const TColStd_MapOfInteger& theShapeTypes,
66                       GEOM::GEOM_Object_ptr       theMainObj = GEOM::GEOM_Object::_nil(),
67                       const bool                  theIsClosedOnly = false );
68
69   virtual ~SMESH_NumberFilter();
70
71   virtual bool isOk (const SUIT_DataOwner*) const;
72
73   void SetSubShapeType (const TopAbs_ShapeEnum);
74   void SetNumber       (const int);
75   void SetClosedOnly   (const bool);
76   void SetShapeType    (const TopAbs_ShapeEnum);
77   void SetShapeTypes   (const TColStd_MapOfInteger&);
78   void SetMainShape    (GEOM::GEOM_Object_ptr);
79
80  private:
81   GEOM::GEOM_Object_ptr getGeom (const SUIT_DataOwner*, const bool extractReference = true ) const;
82
83  private:
84   std::string           myKind;
85   TopAbs_ShapeEnum      mySubShapeType;
86   int                   myNumber;
87   bool                  myIsClosedOnly;
88   TColStd_MapOfInteger  myShapeTypes;
89   GEOM::GEOM_Object_var myMainObj;
90 };
91
92 #endif