Salome HOME
Plane object is added to construction plug-in
[modules/shaper.git] / src / GeomAPI / GeomAPI_AISObject.h
index 215aa69b7589da470f05c15ac9608bfe58067bb0..a76016bd6d738989f04238cb02037f5b291f17bb 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_AISObject.hxx
 // Created:     25 Jun 2014
 // Author:      Artem ZHIDKOV
@@ -7,7 +9,7 @@
 
 #include <GeomAPI_Interface.h>
 
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class GeomAPI_Circ;
 class GeomAPI_Lin;
@@ -15,14 +17,6 @@ class GeomAPI_Pln;
 class GeomAPI_Pnt;
 class GeomAPI_Shape;
 
-struct GEOMAPI_EXPORT Colors
-{
-  static int COLOR_BROWN;
-  static int COLOR_RED;
-  static int COLOR_GREEN;
-  static int COLOR_BLUE;
-};
-
 /** \class GeomAPI_AISObject
  *  \ingroup DataModel
  *  \brief Interface for AIS_InteractiveObject
@@ -30,12 +24,12 @@ struct GEOMAPI_EXPORT Colors
 
 class GEOMAPI_EXPORT GeomAPI_AISObject : public GeomAPI_Interface
 {
-public:
+ public:
   /// \brief Creation of empty AIS object
   GeomAPI_AISObject();
 
   /// \brief Creates AIS_Shape object using specified shape
-  void createShape(boost::shared_ptr<GeomAPI_Shape> theShape);
+  void createShape(std::shared_ptr<GeomAPI_Shape> theShape);
 
   /** \brief Creates AIS_LengthDimension object
    *  \param[in] theStartPoint  first point for dimension
@@ -44,20 +38,18 @@ public:
    *  \param[in] thePlane       the plane which contains all points above
    *  \param[in] theDistance    value of the distance to be shown
    */
-  void createDistance(boost::shared_ptr<GeomAPI_Pnt> theStartPoint,
-                      boost::shared_ptr<GeomAPI_Pnt> theEndPoint,
-                      boost::shared_ptr<GeomAPI_Pnt> theFlyoutPoint,
-                      boost::shared_ptr<GeomAPI_Pln> thePlane,
-                      double                         theDistance);
+  void createDistance(std::shared_ptr<GeomAPI_Pnt> theStartPoint,
+                      std::shared_ptr<GeomAPI_Pnt> theEndPoint,
+                      std::shared_ptr<GeomAPI_Pnt> theFlyoutPoint,
+                      std::shared_ptr<GeomAPI_Pln> thePlane, double theDistance);
 
   /** \brief Creates AIS_RadiusDimension object
    *  \param[in] theCircle      the radius is created for this circle
    *  \param[in] theFlyoutPoint the flyout of dimension
    *  \param[in] theRadius      value of the radius to be shown
    */
-  void createRadius(boost::shared_ptr<GeomAPI_Circ> theCircle,
-                    boost::shared_ptr<GeomAPI_Pnt>  theFlyoutPoint,
-                    double                          theRadius);
+  void createRadius(std::shared_ptr<GeomAPI_Circ> theCircle,
+                    std::shared_ptr<GeomAPI_Pnt> theFlyoutPoint, double theRadius);
 
   /** \brief Creates AIS_ParallelRelation object for two lines
    *  \param[in] theLine1       first parallel line
@@ -65,19 +57,26 @@ public:
    *  \param[in] theFlyoutPoint the flyout point for relation
    *  \param[in] thePlane       the plane which contains the lines
    */
-  void createParallel(boost::shared_ptr<GeomAPI_Shape> theLine1,
-                      boost::shared_ptr<GeomAPI_Shape> theLine2,
-                      boost::shared_ptr<GeomAPI_Pnt>   theFlyoutPoint,
-                      boost::shared_ptr<GeomAPI_Pln>   thePlane);
+  void createParallel(std::shared_ptr<GeomAPI_Shape> theLine1,
+                      std::shared_ptr<GeomAPI_Shape> theLine2,
+                      std::shared_ptr<GeomAPI_Pnt> theFlyoutPoint,
+                      std::shared_ptr<GeomAPI_Pln> thePlane);
 
   /** \brief Creates AIS_PerpendicularRelation object for two lines
    *  \param[in] theLine1       first parallel line
    *  \param[in] theLine2       second parallel line
    *  \param[in] thePlane       the plane which contains the lines
    */
-  void createPerpendicular(boost::shared_ptr<GeomAPI_Shape> theLine1,
-                           boost::shared_ptr<GeomAPI_Shape> theLine2,
-                           boost::shared_ptr<GeomAPI_Pln>   thePlane);
+  void createPerpendicular(std::shared_ptr<GeomAPI_Shape> theLine1,
+                           std::shared_ptr<GeomAPI_Shape> theLine2,
+                           std::shared_ptr<GeomAPI_Pln> thePlane);
+
+  /** \brief Creates AIS_FixedRelation object for an object
+   *  \param[in] theShape       the object
+   *  \param[in] thePlane       the plane which contains the lines
+   */
+  void createFixed(std::shared_ptr<GeomAPI_Shape> theShape,
+                   std::shared_ptr<GeomAPI_Pln> thePlane);
 
   /** \brief Assigns the color for the shape
    *  \param[in] theColor index of the color
@@ -96,10 +95,25 @@ public:
 
   /// \brief Checks if the object is empty
   bool empty() const;
+
+  /// Return shape type according to TopAbs_ShapeEnum if the AIS is AIS_Shape
+  /// Otherwise returns -1
+  int getShapeType() const;
+
+  /// Sets marker type for vertex.
+  /// The type has to be defined according to Acpect_TypeOfMarker
+  void setPointMarker(int theType, double theScale);
+
+  /// Set line type of edges
+  /// Has to be defined according to Aspect_TypeOfLine
+  void setLineStyle(int theStyle);
+
+  /// Set transparency of the presentation (theVal = 0 ... 1)
+  void setTransparensy(double theVal);
 };
 
 //! Pointer on attribute object
-typedef boost::shared_ptr<GeomAPI_AISObject> AISObjectPtr;
+typedef std::shared_ptr<GeomAPI_AISObject> AISObjectPtr;
 
 #endif