Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ModelAPI / ModelAPI_Object.h
index cf81f99bfee1dda02e24ba738a498ef8c6aeaf65..9079883933ae2be6ee557374e53d1f4b11f94e92 100644 (file)
@@ -1,52 +1,59 @@
 // File:        ModelAPI_Object.hxx
-// Created:     21 Mar 2014
+// Created:     19 May 2014
 // Author:      Mikhail PONIKAROV
 
 #ifndef ModelAPI_Object_HeaderFile
 #define ModelAPI_Object_HeaderFile
 
 #include "ModelAPI.h"
-#include <string>
-#include <memory>
 
-class ModelAPI_AttributeDocRef;
-class ModelAPI_AttributeDouble;
+#include <boost/shared_ptr.hpp>
+
+class ModelAPI_Data;
 class ModelAPI_Document;
 
 /**\class ModelAPI_Object
  * \ingroup DataModel
- * \brief General object of the application that allows
- * to get/set attributes from the document and compute result of an operation.
+ * \brief Represents any object in the data model and in the object browser.
+ *
+ * It may be feature or result of the feature. User just may set name for it
+ * or change this name later. Generic class for Feature, Body, Parameter and other
+ * objects related to the features and their results. Contains attributes of this 
+ * object in the "Data".
  */
-
-class MODELAPI_EXPORT ModelAPI_Object
+class ModelAPI_Object
 {
+  boost::shared_ptr<ModelAPI_Data> myData; ///< manager of the data model of a feature
+  boost::shared_ptr<ModelAPI_Document> myDoc; ///< document this feature belongs to
 public:
+  /// By default object is displayed in the object browser.
+  virtual bool isInHistory() {return true;}
 
-  /// Returns the name of the feature visible by the user in the object browser
-  virtual std::string getName() = 0;
-
-  /// Defines the name of the feature visible by the user in the object browser
-  virtual void setName(std::string theName) = 0;
+  /// Returns the data manager of this object: attributes
+  virtual boost::shared_ptr<ModelAPI_Data> data() {return myData;}
 
-  /// Returns the attribute that references to another document
-  virtual std::shared_ptr<ModelAPI_AttributeDocRef> docRef(const std::string theID) = 0;
-  /// Returns the attribute that contains real value with double precision
-  virtual std::shared_ptr<ModelAPI_AttributeDouble> real(const std::string theID) = 0;
+  /// Returns true if feature refers to the same data model instance
+  virtual bool isSame(const boost::shared_ptr<ModelAPI_Object>& theObject)
+    {return theObject.get() == this;}
 
-  /// Initializes object by the attributes: must be called just after the object is created
-  /// for each attribute of the object
-  /// \param theID identifier of the attribute that can be referenced by this ID later
-  /// \param theAttrType type of the created attribute (received from the type method)
-  virtual void addAttribute(std::string theID, std::string theAttrType) = 0;
+  /// Returns document this feature belongs to
+  virtual boost::shared_ptr<ModelAPI_Document> document()
+    {return myDoc;}
 
-  /// Returns the document of this data
-  virtual std::shared_ptr<ModelAPI_Document> document() = 0;
+  /// Returns the group identifier of this object
+  virtual std::string groupName() = 0;
 
 protected:
-  /// Objects are created for features automatically
-  ModelAPI_Object()
-  {}
+  /// Sets the data manager of an object (document does)
+  virtual void setData(boost::shared_ptr<ModelAPI_Data> theData) 
+    {myData = theData;}
+
+  /// Sets the data manager of an object (document does)
+  virtual void setDoc(boost::shared_ptr<ModelAPI_Document> theDoc) {myDoc = theDoc;}
+
+  friend class Model_Document;
 };
 
+typedef boost::shared_ptr<ModelAPI_Object> ObjectPtr;
+
 #endif