X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Object.h;h=07776479cf194c85bbae1d5bd82807fab11315b1;hb=dc50f2f6b509a5dd5de0be397a3fe4564cb8d98d;hp=d46fb76237c76ba2ca7a5b2c554a54b550e33509;hpb=4cbd08290dc7a540e3fa93913d484e8336df90d9;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Object.h b/src/ModelAPI/ModelAPI_Object.h index d46fb7623..07776479c 100644 --- a/src/ModelAPI/ModelAPI_Object.h +++ b/src/ModelAPI/ModelAPI_Object.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_Object.hxx // Created: 19 May 2014 // Author: Mikhail PONIKAROV @@ -6,8 +8,10 @@ #define ModelAPI_Object_H_ #include "ModelAPI.h" +#include "ModelAPI_Data.h" +#include "ModelAPI_Entity.h" -#include +#include class ModelAPI_Data; class ModelAPI_Document; @@ -21,39 +25,72 @@ class ModelAPI_Document; * objects related to the features and their results. Contains attributes of this * object in the "Data". */ -class ModelAPI_Object +class ModelAPI_Object: public ModelAPI_Entity { - boost::shared_ptr myData; ///< manager of the data model of a feature - boost::shared_ptr myDoc; ///< document this feature belongs to -public: + std::shared_ptr myData; ///< manager of the data model of a feature + std::shared_ptr myDoc; ///< document this object belongs to + 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 boost::shared_ptr data() {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 boost::shared_ptr& theObject) - {return theObject.get() == this;} + MODELAPI_EXPORT virtual bool isSame(const std::shared_ptr& theObject); /// Returns document this feature belongs to - virtual boost::shared_ptr document() - {return myDoc;} + MODELAPI_EXPORT virtual std::shared_ptr document() const; /// Returns the group identifier of this object virtual std::string groupName() = 0; -protected: + /// Request for initialization of data model of the object: adding all attributes + virtual void initAttributes() = 0; + + /// Returns the feature is disabled or not. + virtual bool isDisabled() const = 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); + + /// Initializes the default states of the object + MODELAPI_EXPORT ModelAPI_Object(); + + /// To use virtuality for destructors + MODELAPI_EXPORT virtual ~ModelAPI_Object(); + + /// Returns true if object must be displayed in the viewer: flag is stored in the + /// data model, so on undo/redo, open/save or recreation of object by history-playing it keeps + /// the original state i nthe current transaction. + MODELAPI_EXPORT virtual bool isDisplayed(); + + /// Sets the displayed/hidden state of the object. If it is changed, sends the "redisplay" + /// signal. + MODELAPI_EXPORT virtual void setDisplayed(const bool theDisplay); + + protected: /// Sets the data manager of an object (document does) - virtual void setData(boost::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(boost::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(); + + friend class Model_Objects; friend class Model_Document; + }; -typedef boost::shared_ptr ObjectPtr; +typedef std::shared_ptr ObjectPtr; #endif