Salome HOME
Merge branch 'Pre_2.8.0_development'
[modules/shaper.git] / src / ModuleBase / ModuleBase_FilterValidated.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 ModuleBase_FilterValidated_H
22 #define ModuleBase_FilterValidated_H
23
24 #include <SelectMgr_Filter.hxx>
25 #include <SelectMgr_EntityOwner.hxx>
26
27 class ModuleBase_IWorkshop;
28
29 //#define DEBUG_FILTERS
30
31 /**
32 * \ingroup GUI
33 * \class ModuleBase_FilterValidated
34 * A filter which provides filtering of selection in 3d viewer.
35 * Installing of this filter lets to select objects which belong to 
36 * currently active document or to global document
37 */
38 DEFINE_STANDARD_HANDLE(ModuleBase_FilterValidated, SelectMgr_Filter);
39 class ModuleBase_FilterValidated: public SelectMgr_Filter
40 {
41 public:
42   /// Constructor
43   /// \param theWorkshop instance of workshop interface
44   Standard_EXPORT ModuleBase_FilterValidated(ModuleBase_IWorkshop* theWorkshop):
45       SelectMgr_Filter(), myWorkshop(theWorkshop) {}
46
47   /**
48    * Returns true if the owner is computed from decomposition
49    * (it is global selection, not the sub-shapes)
50    * of if the selected result is a construction and the result 
51    * feature is composite and has sub-elements.
52    * \param theOwner the result of selection
53    * \return whether the owner is selectable in the viewer
54   */
55   Standard_EXPORT virtual
56     Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
57
58   DEFINE_STANDARD_RTTIEXT(ModuleBase_FilterValidated, SelectMgr_Filter)
59 protected:
60   /// Instance of workshop interface
61   ModuleBase_IWorkshop* myWorkshop;
62 };
63
64 #endif