Salome HOME
Separate classes related to Filters in Model/ModelAPI
[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
25 #include <GeomAPI_Shape.h>
26
27
28 /**\class ModelAPI_ViewFilter
29 * \ingroup DataModel
30 * \brief A general interface class filters definition
31 */
32 class ModelAPI_Filter
33 {
34 public:
35   /// Returns name of the filter to represent it in GUI
36   virtual const std::string& name() const = 0;
37
38   /// Returns true if the given shape type is supported
39   virtual bool isSupported(GeomAPI_Shape::ShapeType theType) const = 0;
40
41   /// This method should contain the filter logic. It returns true if the given shape
42   /// is accepted by the filter.
43   /// \param theShape the given shape
44   virtual bool isOk(const GeomShapePtr& theShape, const ModelAPI_FiltersArgs& theArgs) const = 0;
45
46   /// Returns XML string which represents GUI of the filter
47   /// By default it returns nothing (no GUI)
48   virtual std::string xmlRepresentation() const { return ""; }
49
50   /// Initializes arguments of a filter. If a filter has no arguments, this method may be
51   /// not redefined.
52   virtual void initAttributes(ModelAPI_FiltersArgs& theArguments) {}
53
54 private:
55   bool myIsReverse;
56 };
57
58 typedef std::shared_ptr<ModelAPI_Filter> FilterPtr;
59
60 #endif