X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintAngle.h;h=d3dd5c8adab1268f4c73c9e352045893fa71509e;hb=bc13ffbc8c0dbdce3805bf9362ee8a3c05adf9b4;hp=ef3c478bef927e4e60203e760b41e97a976f3358;hpb=0e158cb76c7797d04c2090d9283c3fb907d8b4bb;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintAngle.h b/src/SketchPlugin/SketchPlugin_ConstraintAngle.h index ef3c478be..d3dd5c8ad 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintAngle.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintAngle.h @@ -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();