Salome HOME
Dump Python in the High Level Parameterized Geometry API (issue #1648)
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Line.h
index 05d94cc65e59bd582bd6290920a1d7820d995e4a..e24e90e5444c0f52762a57e99e576f89258db299 100644 (file)
@@ -12,6 +12,8 @@
 #include <SketchPlugin_Sketch.h>
 #include <list>
 
+class GeomAPI_Pnt2d;
+
 /**\class SketchPlugin_Line
  * \ingroup Plugins
  * \brief Feature for creation of the new part in PartSet.
@@ -38,22 +40,25 @@ class SketchPlugin_Line : public SketchPlugin_SketchEntity
     return MY_END_ID;
   }
 
-  /// Returns the kind of a feature
-  SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
+  /// Line length.
+  static const std::string& LENGTH_ID()
   {
-    static std::string MY_KIND = SketchPlugin_Line::ID();
-    return MY_KIND;
+    static const std::string MY_LENGTH("LineLength");
+    return MY_LENGTH;
   }
 
+  /// Returns the kind of a feature
+  SKETCHPLUGIN_EXPORT virtual const std::string& getKind();
+
   /// Returns true is sketch element is under the rigid constraint
   SKETCHPLUGIN_EXPORT virtual bool isFixed();
 
+  /// Request for initialization of data model of the feature: adding all attributes
+  virtual void initAttributes();
+
   /// Creates a new part document if needed
   SKETCHPLUGIN_EXPORT virtual void execute();
 
-  /// Request for initialization of data model of the feature: adding all attributes
-  SKETCHPLUGIN_EXPORT virtual void initAttributes();
-
   /// Moves the feature
   /// \param theDeltaX the delta for X coordinate is moved
   /// \param theDeltaY the delta for Y coordinate is moved
@@ -61,13 +66,21 @@ class SketchPlugin_Line : public SketchPlugin_SketchEntity
 
   /// Return the distance between the feature and the point
   /// \param thePoint the point
-  virtual double distanceToPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
+  double distanceToPoint(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
 
   /// Called on change of any argument-attribute of this object
   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
 
   /// Use plugin manager for features creation
   SketchPlugin_Line();
+
+private:
+  /// Calculates the lenght of the line and fill the lenght attribute with the value
+  void updateLenghtValue();
+
+protected:
+  /// \brief Initializes attributes of derived class.
+  virtual void initDerivedClassAttributes();
 };
 
 #endif