X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_MultiRotation.h;h=416f477b14ef26bfe20fb94fbb89ad319e53dbd5;hb=c7a5ff20294ae8270bfb9120b8887f0c9959d658;hp=e743386f48b338cad8edc05638c4b277c3584604;hpb=5352bbb1915f98d1f02b1cb953a2de19b286a28c;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_MultiRotation.h b/src/SketchPlugin/SketchPlugin_MultiRotation.h index e743386f4..416f477b1 100644 --- a/src/SketchPlugin/SketchPlugin_MultiRotation.h +++ b/src/SketchPlugin/SketchPlugin_MultiRotation.h @@ -19,10 +19,9 @@ * SketchPlugin_Constraint::ENTITY_A() for initial list of objects and * SketchPlugin_Constraint::ENTITY_B() for the list of created objects * - * The list of created objects contains a number of copies of each object given in - * the NUMBER_OF_COPIES_ID() attribute plus 1 (the initial objects are stored into this - * attribute too). At the start of the list, there are collected N copies - * of first object from initial list, then N copies of second object etc. + * The list of created objects contains initial and copied objects of each object given. The + * number copies is the NUMBER_OF_OBJECTS_ID() minus 1. At the start of the list, there are + * collected N copies of first object from initial list, then N copies of second object etc. */ class SketchPlugin_MultiRotation : public SketchPlugin_ConstraintBase { @@ -53,17 +52,31 @@ class SketchPlugin_MultiRotation : public SketchPlugin_ConstraintBase static const std::string MY_CENTER_ID("MultiRotationCenter"); return MY_CENTER_ID; } + /// attribute name for first point + inline static const std::string& ANGLE_TYPE() + { + static const std::string ANGLE_TYPE_ATTR("AngleType"); + return ANGLE_TYPE_ATTR; + } + /// End point of translation inline static const std::string& ANGLE_ID() { static const std::string MY_ANGLE_ID("MultiRotationAngle"); return MY_ANGLE_ID; } - /// Number of translated objects - inline static const std::string& NUMBER_OF_COPIES_ID() + /// End point of translation + inline static const std::string& ANGLE_FULL_ID() { - static const std::string MY_NUMBER_OF_COPIES_ID("MultiRotationCopies"); - return MY_NUMBER_OF_COPIES_ID; + static const std::string MY_ANGLE_FULL_ID("MultiRotationFullAngle"); + return MY_ANGLE_FULL_ID; + } + + /// Total number of objects, initial and translated objects + inline static const std::string& NUMBER_OF_OBJECTS_ID() + { + static const std::string MY_NUMBER_OF_OBJECTS_ID("MultiRotationObjects"); + return MY_NUMBER_OF_OBJECTS_ID; } /// \brief Creates a new part document if needed @@ -72,6 +85,10 @@ class SketchPlugin_MultiRotation : public SketchPlugin_ConstraintBase /// \brief Request for initialization of data model of the feature: adding all attributes SKETCHPLUGIN_EXPORT virtual void initAttributes(); + /// 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); + /// Returns the AIS preview SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); @@ -82,6 +99,11 @@ private: ObjectPtr copyFeature(ObjectPtr theObject); void rotateFeature(ObjectPtr theInitial, ObjectPtr theTarget, double theCenterX, double theCenterY, double theAngle); + + bool updateFullAngleValue(); + +private: + bool myBlockAngle; /// a boolean state to avoid recusive angle change in attributeChanged }; #endif