Salome HOME
Fixes for crashes and bad behavior on delete of features and Parts. For now delete...
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintAngle.h
index ef3c478bef927e4e60203e760b41e97a976f3358..d3dd5c8adab1268f4c73c9e352045893fa71509e 100644 (file)
@@ -34,6 +34,20 @@ class SketchPlugin_ConstraintAngle : public SketchPlugin_ConstraintBase
     return MY_KIND;
   }
 
+  /// attribute name of operation type
+  inline static const std::string& TYPE_ID()
+  {
+    static const std::string MY_TYPE_ID("AngleType");
+    return MY_TYPE_ID;
+  }
+
+  /// attribute name of operation type
+  inline static const std::string& ANGLE_VALUE_ID()
+  {
+    static const std::string MY_ANGLE_VALUE_ID("AngleValue");
+    return MY_ANGLE_VALUE_ID;
+  }
+
   /// \brief Creates a new part document if needed
   SKETCHPLUGIN_EXPORT virtual void execute();
 
@@ -45,6 +59,10 @@ class SketchPlugin_ConstraintAngle : public SketchPlugin_ConstraintBase
   /// \brief Request for initialization of data model of the feature: adding all attributes
   SKETCHPLUGIN_EXPORT virtual void initAttributes();
 
+  /// Retuns the parameters of color definition in the resources config manager
+  SKETCHPLUGIN_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName,
+                                                   std::string& theDefault);
+
   /// Called on change of any argument-attribute of this object
   /// \param theID identifier of changed attribute
   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
@@ -60,6 +78,15 @@ class SketchPlugin_ConstraintAngle : public SketchPlugin_ConstraintBase
   /// Calculate current value of the angle
   double calculateAngle();
 
+  /// Converts the angle value according to the current angle type and sketch plane normal.
+  /// The in/out angle is in degree.
+  /// \param theAngle a source for the calculated angle
+  /// \param a double angle value
+  double getAngleForType(double theAngle);
+
+  /// Update value of VALUE attribute by the combination of the current angle type and angle value
+  void updateAngleValue();
+
   /// \brief Use plugin manager for features creation
   SketchPlugin_ConstraintAngle();