Salome HOME
Implement filter "F9: External Faces"
[modules/shaper.git] / src / ModelAPI / ModelAPI_Filter.h
1 // Copyright (C) 2014-2019  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 email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef ModelAPI_Filter_H_
21 #define ModelAPI_Filter_H_
22
23 #include "ModelAPI_FiltersArgs.h"
24 #include "ModelAPI_ResultBody.h"
25
26 #include <GeomAPI_Shape.h>
27
28
29 /**\class ModelAPI_ViewFilter
30 * \ingroup DataModel
31 * \brief A general interface class filters definition
32 */
33 class ModelAPI_Filter
34 {
35 public:
36   /// Returns name of the filter to represent it in GUI
37   virtual const std::string& name() const = 0;
38
39   /// Returns true if the given shape type is supported
40   virtual bool isSupported(GeomAPI_Shape::ShapeType theType) const = 0;
41
42   /// This method should contain the filter logic. It returns true if the given shape
43   /// is accepted by the filter.
44   /// \param theShape the given shape
45   /// \param theResult parent result of the shape to be checked
46   /// \param theArgs arguments of the filter
47   virtual bool isOk(const GeomShapePtr& theShape,
48                     const ResultPtr& theResult,
49                     const ModelAPI_FiltersArgs& theArgs) const = 0;
50
51   /// Returns XML string which represents GUI of the filter
52   /// By default it returns nothing (no GUI)
53   virtual std::string xmlRepresentation() const { return ""; }
54
55   /// Initializes arguments of a filter. If a filter has no arguments, this method may be
56   /// not redefined.
57   virtual void initAttributes(ModelAPI_FiltersArgs& theArguments) {}
58
59 private:
60   bool myIsReverse;
61 };
62
63 typedef std::shared_ptr<ModelAPI_Filter> FilterPtr;
64
65 #endif