Salome HOME
Added CPP High API for BuildPlugin_Face
authordbv <dbv@opencascade.com>
Thu, 16 Jun 2016 15:29:40 +0000 (18:29 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Fri, 17 Jun 2016 11:41:13 +0000 (14:41 +0300)
src/BuildAPI/BuildAPI.i
src/BuildAPI/BuildAPI_Face.cpp [new file with mode: 0644]
src/BuildAPI/BuildAPI_Face.h [new file with mode: 0644]
src/BuildAPI/BuildAPI_swig.h
src/BuildAPI/CMakeLists.txt

index 56bd04bd201635b5a158de8506e62058182fec9a..2fbc06a0239dab3dc72b13c24551692dcbd4d535 100644 (file)
 
 // shared pointers
 %shared_ptr(BuildAPI_Edge)
+%shared_ptr(BuildAPI_Face)
 %shared_ptr(BuildAPI_Vertex)
 %shared_ptr(BuildAPI_Wire)
 
 // all supported interfaces
 %include "BuildAPI_Edge.h"
+%include "BuildAPI_Face.h"
 %include "BuildAPI_Vertex.h"
 %include "BuildAPI_Wire.h"
diff --git a/src/BuildAPI/BuildAPI_Face.cpp b/src/BuildAPI/BuildAPI_Face.cpp
new file mode 100644 (file)
index 0000000..930021d
--- /dev/null
@@ -0,0 +1,49 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
+// File:        BuildAPI_Face.cpp
+// Created:     09 June 2016
+// Author:      Dmitry Bobylev
+
+#include "BuildAPI_Face.h"
+
+#include <ModelHighAPI_Tools.h>
+
+//==================================================================================================
+BuildAPI_Face::BuildAPI_Face(const std::shared_ptr<ModelAPI_Feature>& theFeature)
+: ModelHighAPI_Interface(theFeature)
+{
+  initialize();
+}
+
+//==================================================================================================
+BuildAPI_Face::BuildAPI_Face(const std::shared_ptr<ModelAPI_Feature>& theFeature,
+                             const std::list<ModelHighAPI_Selection>& theBaseObjects)
+: ModelHighAPI_Interface(theFeature)
+{
+  if(initialize()) {
+    setBase(theBaseObjects);
+  }
+}
+
+//==================================================================================================
+BuildAPI_Face::~BuildAPI_Face()
+{
+
+}
+
+//==================================================================================================
+void BuildAPI_Face::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
+{
+  fillAttribute(theBaseObjects, mybaseObjects);
+
+  execute();
+}
+
+// TODO(spo): make add* as static functions of the class
+//==================================================================================================
+FacePtr addFace(const std::shared_ptr<ModelAPI_Document>& thePart,
+                const std::list<ModelHighAPI_Selection>& theBaseObjects)
+{
+  std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(BuildAPI_Face::ID());
+  return FacePtr(new BuildAPI_Face(aFeature, theBaseObjects));
+}
diff --git a/src/BuildAPI/BuildAPI_Face.h b/src/BuildAPI/BuildAPI_Face.h
new file mode 100644 (file)
index 0000000..8a62179
--- /dev/null
@@ -0,0 +1,55 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
+// File:        BuildAPI_Face.h
+// Created:     09 June 2016
+// Author:      Dmitry Bobylev
+
+#ifndef BuildAPI_Face_H_
+#define BuildAPI_Face_H_
+
+#include "BuildAPI.h"
+
+#include <BuildPlugin_Face.h>
+
+#include <ModelHighAPI_Interface.h>
+#include <ModelHighAPI_Macro.h>
+
+class ModelHighAPI_Selection;
+
+/// \class BuildAPI_Face
+/// \ingroup CPPHighAPI
+/// \brief Interface for Face feature.
+class BuildAPI_Face: public ModelHighAPI_Interface
+{
+public:
+  /// Constructor without values.
+  BUILDAPI_EXPORT
+  explicit BuildAPI_Face(const std::shared_ptr<ModelAPI_Feature>& theFeature);
+
+  /// Constructor with values.
+  BUILDAPI_EXPORT
+  explicit BuildAPI_Face(const std::shared_ptr<ModelAPI_Feature>& theFeature,
+                         const std::list<ModelHighAPI_Selection>& theBaseObjects);
+
+  /// Destructor.
+  BUILDAPI_EXPORT
+  virtual ~BuildAPI_Face();
+
+  INTERFACE_1(BuildPlugin_Face::ID(),
+              baseObjects, BuildPlugin_Face::BASE_OBJECTS_ID(), ModelAPI_AttributeSelectionList, /** Base objects */)
+
+  /// Modify base attribute of the feature.
+  BUILDAPI_EXPORT
+  void setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects);
+};
+
+/// Pointer on Face object.
+typedef std::shared_ptr<BuildAPI_Face> FacePtr;
+
+/// \ingroup CPPHighAPI
+/// \brief Create Face feature.
+BUILDAPI_EXPORT
+FacePtr addFace(const std::shared_ptr<ModelAPI_Document>& thePart,
+                const std::list<ModelHighAPI_Selection>& theBaseObjects);
+
+#endif // BuildAPI_Face_H_
index f6d982af218c2cec73bb02ec9e8dd0ccd7f9c439..a1827f0024b9495573cd91e3fc0de624fa884745 100644 (file)
@@ -10,6 +10,7 @@
   #include <ModelHighAPI_swig.h>
 
   #include "BuildAPI_Edge.h"
+  #include "BuildAPI_Face.h"
   #include "BuildAPI_Vertex.h"
   #include "BuildAPI_Wire.h"
 
index 3cf929265dc313c8582c826ee38c1f71c77a064f..1fe462f77840c92e152b2eca6bccdc3a7fa5b7a8 100644 (file)
@@ -5,12 +5,14 @@ INCLUDE(Common)
 SET(PROJECT_HEADERS
   BuildAPI.h
   BuildAPI_Edge.h
+  BuildAPI_Face.h
   BuildAPI_Vertex.h
   BuildAPI_Wire.h
 )
 
 SET(PROJECT_SOURCES
   BuildAPI_Edge.cpp
+  BuildAPI_Face.cpp
   BuildAPI_Vertex.cpp
   BuildAPI_Wire.cpp
 )