X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Object.h;h=f04d10ad5da5c417579b140e78188980c76d471c;hb=b900918cef83bb82217e7221c7ff0ad9d8a6dbe9;hp=6d8aeaec8f82869cf259908aacb9bbb8cdcdf779;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Object.h b/src/ModelAPI/ModelAPI_Object.h index 6d8aeaec8..f04d10ad5 100644 --- a/src/ModelAPI/ModelAPI_Object.h +++ b/src/ModelAPI/ModelAPI_Object.h @@ -28,60 +28,51 @@ class ModelAPI_Object { std::shared_ptr myData; ///< manager of the data model of a feature std::shared_ptr myDoc; ///< document this object belongs to + bool myInHistory; ///< keep the information about the presense of the object in the history tree public: /// By default object is displayed in the object browser. - virtual bool isInHistory() - { - return true; - } + MODELAPI_EXPORT virtual bool isInHistory(); + + /// Makes object presented or not in the history of the created objects + /// \param theObject is shared pointer to "this" + /// \param theFlag is boolean value: to add or remove from the history + MODELAPI_EXPORT virtual void setInHistory( + const std::shared_ptr theObject, const bool theFlag); /// Returns the data manager of this object: attributes - virtual std::shared_ptr data() const - { - return myData; - } + MODELAPI_EXPORT virtual std::shared_ptr data() const; /// Returns true if object refers to the same data model instance - virtual bool isSame(const std::shared_ptr& theObject) - { - return theObject.get() == this; - } + MODELAPI_EXPORT virtual bool isSame(const std::shared_ptr& theObject); /// Returns document this feature belongs to - virtual std::shared_ptr document() const - { - return myDoc; - } + MODELAPI_EXPORT virtual std::shared_ptr document() const; /// Returns the group identifier of this object virtual std::string groupName() = 0; + /// Request for initialization of data model of the object: adding all attributes + virtual void initAttributes() = 0; + /// Called on change of any argument-attribute of this object /// \param theID identifier of changed attribute - MODELAPI_EXPORT virtual void attributeChanged(const std::string& theID) - {} + MODELAPI_EXPORT virtual void attributeChanged(const std::string& theID); + + /// Initializes the default states of the object + MODELAPI_EXPORT ModelAPI_Object(); /// To use virtuality for destructors - virtual ~ModelAPI_Object() {} + MODELAPI_EXPORT virtual ~ModelAPI_Object(); protected: /// Sets the data manager of an object (document does) - virtual void setData(std::shared_ptr theData) - { - myData = theData; - } + MODELAPI_EXPORT virtual void setData(std::shared_ptr theData); /// Sets the data manager of an object (document does) - virtual void setDoc(std::shared_ptr theDoc) - { - myDoc = theDoc; - } + MODELAPI_EXPORT virtual void setDoc(std::shared_ptr theDoc); /// removes all fields from this feature - MODELAPI_EXPORT virtual void erase() { - if (myData) myData->erase(); - setData(DataPtr()); - } + MODELAPI_EXPORT virtual void erase(); friend class Model_Document;