X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Attribute.h;h=179fbae2ff8f9636c80e2ce7289cacd847e3e4a9;hb=28b7c94db082ec6dd8a6fd4c6770df0fa5f2b6a3;hp=580f443dbb1e4138eddef31f5615ade924873271;hpb=426a1cf07dfee0bbb58dcd399787a89a4992fa72;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Attribute.h b/src/ModelAPI/ModelAPI_Attribute.h index 580f443db..179fbae2f 100644 --- a/src/ModelAPI/ModelAPI_Attribute.h +++ b/src/ModelAPI/ModelAPI_Attribute.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_Attribute.h // Created: 2 Apr 2014 // Author: Mikhail PONIKAROV @@ -7,7 +9,7 @@ #include "ModelAPI.h" #include -#include +#include class ModelAPI_Object; @@ -18,46 +20,63 @@ class ModelAPI_Object; class ModelAPI_Attribute { ///< needed here to emit signal that feature changed on change of the attribute - boost::shared_ptr myObject; -protected: // accessible from the attributes - bool myIsInitialized; - bool myIsArgument; -public: - + std::shared_ptr myObject; + std::string myID; ///< identifier of this attribute in Data class + protected: + // accessible from the attributes + bool myIsInitialized; ///< is some value assigned to this attribute + bool myIsArgument; ///< is this attribute used as an argument for execution + bool myIsImmutable; ///< is this attribute can be changed programmatically (e.g. by constraint) + + 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 setObject(const boost::shared_ptr& theObject) - {myObject = theObject;} + MODELAPI_EXPORT virtual void setObject(const std::shared_ptr& theObject); /// Returns the owner of this attribute - MODELAPI_EXPORT const boost::shared_ptr& owner() - {return myObject;} + MODELAPI_EXPORT const std::shared_ptr& owner() const; /// Returns true if attribute was initialized by some value - MODELAPI_EXPORT bool isInitialized() {return myIsInitialized;} + MODELAPI_EXPORT bool isInitialized(); /// Makes attribute initialized - MODELAPI_EXPORT void setInitialized() {myIsInitialized = true;} + MODELAPI_EXPORT void setInitialized(); /// 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;} + MODELAPI_EXPORT void setIsArgument(const bool theFlag); /// Returns true if attribute causes the result change - MODELAPI_EXPORT bool isArgument() {return myIsArgument;} + MODELAPI_EXPORT bool isArgument(); + + /// 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); -protected: + /// Returns true if can not be changed programaticaly + MODELAPI_EXPORT bool isImmutable(); + + /// ID of the attribute in Data + MODELAPI_EXPORT const std::string& id() const; + + protected: /// Objects are created for features automatically - ModelAPI_Attribute() {myIsInitialized = false; myIsArgument = true;} + MODELAPI_EXPORT ModelAPI_Attribute(); + + /// Sets the ID of the attribute in Data (called from Data) + MODELAPI_EXPORT void setID(const std::string theID); + friend class Model_Data; }; //! Pointer on attribute object -typedef boost::shared_ptr AttributePtr; +typedef std::shared_ptr AttributePtr; #endif