SHAPER 9.16.0
ModuleBase_FilterValidated.h
1// Copyright (C) 2014-2026 CEA, EDF
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 email : webmaster.salome@opencascade.com
18//
19
20#ifndef ModuleBase_FilterValidated_H
21#define ModuleBase_FilterValidated_H
22
23#include <SelectMgr_Filter.hxx>
24#include <SelectMgr_EntityOwner.hxx>
25
27
28//#define DEBUG_FILTERS
29
37DEFINE_STANDARD_HANDLE(ModuleBase_FilterValidated, SelectMgr_Filter);
39{
40public:
43 Standard_EXPORT ModuleBase_FilterValidated(ModuleBase_IWorkshop* theWorkshop):
44 SelectMgr_Filter(), myWorkshop(theWorkshop) {}
45
54 Standard_EXPORT virtual
55 Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
56
57 DEFINE_STANDARD_RTTIEXT(ModuleBase_FilterValidated, SelectMgr_Filter)
58protected:
60 ModuleBase_IWorkshop* myWorkshop;
61};
62
63#endif
A filter which provides filtering of selection in 3d viewer.
Definition: ModuleBase_FilterValidated.h:39
virtual Standard_Boolean IsOk(const Handle &theOwner) const
Returns true if the owner is computed from decomposition (it is global selection, not the sub-shapes)...
Definition: ModuleBase_FilterValidated.cpp:36
ModuleBase_FilterValidated(ModuleBase_IWorkshop *theWorkshop)
Constructor.
Definition: ModuleBase_FilterValidated.h:43
Class which provides access to Workshop object services.
Definition: ModuleBase_IWorkshop.h:48