X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Attribute.h;h=cfef5172421791a08ebd6958ca018a3000be1378;hb=a5a4efb5a57703a634a60c097b6ab9179a04e6d4;hp=4a15abb88c718b680beeff2b45d323c3020426e2;hpb=8ef37902d880bc2e74f2ae46880aaee1b4c19307;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Attribute.h b/src/ModelAPI/ModelAPI_Attribute.h index 4a15abb88..cfef51724 100644 --- a/src/ModelAPI/ModelAPI_Attribute.h +++ b/src/ModelAPI/ModelAPI_Attribute.h @@ -2,14 +2,14 @@ // Created: 2 Apr 2014 // Author: Mikhail PONIKAROV -#ifndef ModelAPI_Attribute_HeaderFile -#define ModelAPI_Attribute_HeaderFile +#ifndef ModelAPI_Attribute_H_ +#define ModelAPI_Attribute_H_ #include "ModelAPI.h" #include #include -class ModelAPI_Feature; +class ModelAPI_Object; /**\class ModelAPI_Attribute * \ingroup DataModel @@ -18,35 +18,88 @@ class ModelAPI_Feature; class ModelAPI_Attribute { ///< needed here to emit signal that feature changed on change of the attribute - boost::shared_ptr myFeature; -protected: // accessible from the attributes + boost::shared_ptr myObject; + protected: + // accessible from the attributes bool myIsInitialized; -public: - + bool myIsArgument; + bool myIsImmutable; + + public: + /// Returns the type of this class of attributes, not static method MODELAPI_EXPORT virtual std::string attributeType() = 0; /// To virtually destroy the fields of successors - MODELAPI_EXPORT virtual ~ModelAPI_Attribute() {} + MODELAPI_EXPORT virtual ~ModelAPI_Attribute() + { + } /// Sets the owner of this attribute - MODELAPI_EXPORT void setFeature(const boost::shared_ptr& theFeature) - {myFeature = theFeature;} + MODELAPI_EXPORT virtual void setObject(const boost::shared_ptr& theObject) + { + myObject = theObject; + } /// Returns the owner of this attribute - MODELAPI_EXPORT const boost::shared_ptr& owner() - {return myFeature;} + MODELAPI_EXPORT const boost::shared_ptr& owner() const + { + return myObject; + } /// Returns true if attribute was initialized by some value - MODELAPI_EXPORT bool isInitialized() {return myIsInitialized;} + MODELAPI_EXPORT bool isInitialized() + { + return myIsInitialized; + } /// Makes attribute initialized - MODELAPI_EXPORT void setInitialized() {myIsInitialized = true;} + MODELAPI_EXPORT void setInitialized() + { + myIsInitialized = true; + } + + /// Set this attribute is argument for result (change of this attribute requires update of result). + /// By default it is true. + MODELAPI_EXPORT void setIsArgument(const bool theFlag) + { + myIsArgument = theFlag; + } + + /// Returns true if attribute causes the result change + MODELAPI_EXPORT bool isArgument() + { + return myIsArgument; + } -protected: + /// Immutable argument can not be changed programaticaly (e.g. by constraint) + /// By default it is false. + /// Returns the previous state of the attribute's immutability. + MODELAPI_EXPORT bool setImmutable(const bool theFlag) + { + bool aResult = myIsImmutable; + myIsImmutable = theFlag; + return aResult; + } + + /// Returns true if can not be changed programaticaly + MODELAPI_EXPORT bool isImmutable() + { + return myIsImmutable; + } + + protected: /// Objects are created for features automatically - ModelAPI_Attribute() {myIsInitialized = false;} + ModelAPI_Attribute() + { + myIsInitialized = false; + myIsArgument = true; + myIsImmutable = false; + } }; +//! Pointer on attribute object +typedef boost::shared_ptr AttributePtr; + #endif