Salome HOME
Switch to the newer compiled Linux SALOME environment.
[modules/shaper.git] / src / PartSet / PartSet_Filters.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef PartSet_Filters_H
22 #define PartSet_Filters_H
23
24 #include <ModuleBase_ViewerFilters.h>
25
26
27 /**
28 * \class PartSet_GlobalFilter
29 * \ingroup Modules
30 * A class which filters groups object in addition to documents (see issue #310)
31 */
32 DEFINE_STANDARD_HANDLE(PartSet_GlobalFilter, ModuleBase_ShapeDocumentFilter);
33 class PartSet_GlobalFilter: public ModuleBase_ShapeDocumentFilter
34 {
35 public:
36   /// Constructor
37   /// \param theWorkshop a pointer to workshop
38   PartSet_GlobalFilter(ModuleBase_IWorkshop* theWorkshop)
39     : ModuleBase_ShapeDocumentFilter(theWorkshop) {}
40
41   /// Returns True if selected presentation can be selected
42   /// \param theOwner an owner of the persentation
43   Standard_EXPORT virtual Standard_Boolean
44     IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
45
46   DEFINE_STANDARD_RTTIEXT(PartSet_GlobalFilter, ModuleBase_ShapeDocumentFilter)
47 };
48
49
50 /// \class PartSet_CirclePointFilter
51 /// \ingroup GUI
52 /// \brief A filter which provide filtering of selection in 3d viewer.
53 /// Installing of this filter disables selection of point on circle in sketch
54 DEFINE_STANDARD_HANDLE(PartSet_CirclePointFilter, SelectMgr_Filter);
55 class PartSet_CirclePointFilter: public SelectMgr_Filter
56 {
57 public:
58
59   /// Constructor
60   /// \param theWorkshop instance of workshop interface
61   Standard_EXPORT PartSet_CirclePointFilter(ModuleBase_IWorkshop* theWorkshop):
62     SelectMgr_Filter(),
63     myWorkshop(theWorkshop) {};
64
65   /// Returns True if the given owner is acceptable for selection
66   /// \param theOwner the selected owner
67   Standard_EXPORT virtual Standard_Boolean
68     IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
69
70   DEFINE_STANDARD_RTTIEXT(PartSet_CirclePointFilter, SelectMgr_Filter)
71
72 private:
73
74   /// Reference to workshop
75   ModuleBase_IWorkshop* myWorkshop;
76 };
77
78 #endif