SHAPER  9.12.0
FeaturesAPI_Pipe.h
1 // Copyright (C) 2014-2023 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 FeaturesAPI_Pipe_H_
21 #define FeaturesAPI_Pipe_H_
22 
23 #include "FeaturesAPI.h"
24 
25 #include <FeaturesPlugin_Pipe.h>
26 
27 #include <ModelHighAPI_Interface.h>
28 #include <ModelHighAPI_Macro.h>
29 
32 
37 {
38 public:
40  FEATURESAPI_EXPORT
41  explicit FeaturesAPI_Pipe(const std::shared_ptr<ModelAPI_Feature>& theFeature);
42 
44  FEATURESAPI_EXPORT
45  explicit FeaturesAPI_Pipe(const std::shared_ptr<ModelAPI_Feature>& theFeature,
46  const std::list<ModelHighAPI_Selection>& theBaseObjects,
47  const ModelHighAPI_Selection& thePath);
48 
50  FEATURESAPI_EXPORT
51  explicit FeaturesAPI_Pipe(const std::shared_ptr<ModelAPI_Feature>& theFeature,
52  const std::list<ModelHighAPI_Selection>& theBaseObjects,
53  const ModelHighAPI_Selection& thePath,
54  const ModelHighAPI_Selection& theBiNoramal);
55 
57  FEATURESAPI_EXPORT
58  explicit FeaturesAPI_Pipe(const std::shared_ptr<ModelAPI_Feature>& theFeature,
59  const std::list<ModelHighAPI_Selection>& theBaseObjects,
60  const ModelHighAPI_Selection& thePath,
61  const std::list<ModelHighAPI_Selection>& theLocations);
62 
64  FEATURESAPI_EXPORT
65  virtual ~FeaturesAPI_Pipe();
66 
67  INTERFACE_5(FeaturesPlugin_Pipe::ID(),
78 
79 
80  FEATURESAPI_EXPORT
81  void setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects);
82 
84  FEATURESAPI_EXPORT
85  void setPath(const ModelHighAPI_Selection& thePath);
86 
88  FEATURESAPI_EXPORT
89  void setByBasePath(const std::list<ModelHighAPI_Selection>& theBaseObjects,
90  const ModelHighAPI_Selection& thePath);
91 
93  FEATURESAPI_EXPORT
94  void setByBasePathBiNormal(const std::list<ModelHighAPI_Selection>& theBaseObjects,
95  const ModelHighAPI_Selection& thePath,
96  const ModelHighAPI_Selection& theBiNoramal);
97 
99  FEATURESAPI_EXPORT
100  void setByBasePathLocations(const std::list<ModelHighAPI_Selection>& theBaseObjects,
101  const ModelHighAPI_Selection& thePath,
102  const std::list<ModelHighAPI_Selection>& theLocations);
103 
105  FEATURESAPI_EXPORT
106  virtual void dump(ModelHighAPI_Dumper& theDumper) const;
107 };
108 
110 typedef std::shared_ptr<FeaturesAPI_Pipe> PipePtr;
111 
114 FEATURESAPI_EXPORT
115 PipePtr addPipe(const std::shared_ptr<ModelAPI_Document>& thePart,
116  const std::list<ModelHighAPI_Selection>& theBaseObjects,
117  const ModelHighAPI_Selection& thePath);
118 
121 FEATURESAPI_EXPORT
122 PipePtr addPipe(const std::shared_ptr<ModelAPI_Document>& thePart,
123  const std::list<ModelHighAPI_Selection>& theBaseObjects,
124  const ModelHighAPI_Selection& thePath,
125  const ModelHighAPI_Selection& theBiNoramal);
126 
129 FEATURESAPI_EXPORT
130 PipePtr addPipe(const std::shared_ptr<ModelAPI_Document>& thePart,
131  const std::list<ModelHighAPI_Selection>& theBaseObjects,
132  const ModelHighAPI_Selection& thePath,
133  const std::list<ModelHighAPI_Selection>& theLocations);
134 
135 #endif // FeaturesAPI_Pipe_H_
Interface for Pipe feature.
Definition: FeaturesAPI_Pipe.h:37
virtual std::shared_ptr< ModelAPI_AttributeSelection > path() const
Path.
Definition: FeaturesAPI_Pipe.h:77
void setByBasePathBiNormal(const std::list< ModelHighAPI_Selection > &theBaseObjects, const ModelHighAPI_Selection &thePath, const ModelHighAPI_Selection &theBiNoramal)
Modify creation method, base, path and bi-normal.
Definition: FeaturesAPI_Pipe.cpp:101
void setByBasePathLocations(const std::list< ModelHighAPI_Selection > &theBaseObjects, const ModelHighAPI_Selection &thePath, const std::list< ModelHighAPI_Selection > &theLocations)
Modify creation method, base, path and locations.
Definition: FeaturesAPI_Pipe.cpp:115
virtual std::shared_ptr< ModelAPI_AttributeSelectionList > locations() const
Locations.
Definition: FeaturesAPI_Pipe.h:77
void setPath(const ModelHighAPI_Selection &thePath)
Modify path attribute of the feature.
Definition: FeaturesAPI_Pipe.cpp:82
virtual void dump(ModelHighAPI_Dumper &theDumper) const
Dump wrapped feature.
Definition: FeaturesAPI_Pipe.cpp:129
virtual ~FeaturesAPI_Pipe()
Destructor.
Definition: FeaturesAPI_Pipe.cpp:68
void setByBasePath(const std::list< ModelHighAPI_Selection > &theBaseObjects, const ModelHighAPI_Selection &thePath)
Modify creation method, base and path.
Definition: FeaturesAPI_Pipe.cpp:90
virtual std::shared_ptr< ModelAPI_AttributeSelectionList > baseObjects() const
Base objects.
Definition: FeaturesAPI_Pipe.h:77
void setBase(const std::list< ModelHighAPI_Selection > &theBaseObjects)
Modify base attribute of the feature.
Definition: FeaturesAPI_Pipe.cpp:74
virtual std::shared_ptr< ModelAPI_AttributeSelection > biNormal() const
Bi-Normal.
Definition: FeaturesAPI_Pipe.h:77
virtual std::shared_ptr< ModelAPI_AttributeString > creationMethod() const
Creation method.
Definition: FeaturesAPI_Pipe.h:77
FeaturesAPI_Pipe(const std::shared_ptr< ModelAPI_Feature > &theFeature)
Constructor without values.
Definition: FeaturesAPI_Pipe.cpp:26
static const std::string & ID()
Feature kind.
Definition: FeaturesPlugin_Pipe.h:43
static const std::string & LOCATIONS_ID()
Attribute name of locations.
Definition: FeaturesPlugin_Pipe.h:99
static const std::string & BASE_OBJECTS_ID()
Attribute name of base objects.
Definition: FeaturesPlugin_Pipe.h:78
static const std::string & BINORMAL_ID()
Attribute name of Bi-Normal.
Definition: FeaturesPlugin_Pipe.h:92
static const std::string & CREATION_METHOD()
Attribute name for creation method.
Definition: FeaturesPlugin_Pipe.h:50
static const std::string & PATH_OBJECT_ID()
Attribute name of path object.
Definition: FeaturesPlugin_Pipe.h:85
Attribute that contains list of references to the sub-shapes with possibility to manage them.
Definition: ModelAPI_AttributeSelectionList.h:37
Attribute that contains reference to the sub-shape of some result, the selected shape.
Definition: ModelAPI_AttributeSelection.h:35
API for the attribute that contains std (null terminated) string.
Definition: ModelAPI_AttributeString.h:33
Document for internal data structure of any object storage.
Definition: ModelAPI_Document.h:52
Dump engine for the model.
Definition: ModelHighAPI_Dumper.h:81
Base class for feature interfaces.
Definition: ModelHighAPI_Interface.h:42
Class for filling ModelAPI_AttributeSelection.
Definition: ModelHighAPI_Selection.h:49
PipePtr addPipe(const std::shared_ptr< ModelAPI_Document > &thePart, const std::list< ModelHighAPI_Selection > &theBaseObjects, const ModelHighAPI_Selection &thePath)
Create Pipe feature.
Definition: FeaturesAPI_Pipe.cpp:160