Salome HOME
bos #26449: SHAPER: save imported images
[modules/shaper.git] / src / ModelAPI / ModelAPI_Object.h
1 // Copyright (C) 2014-2021  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef ModelAPI_Object_H_
21 #define ModelAPI_Object_H_
22
23 #include "ModelAPI.h"
24 #include "ModelAPI_Data.h"
25 #include "ModelAPI_Entity.h"
26
27 #include <memory>
28
29 class ModelAPI_Data;
30 class ModelAPI_Document;
31
32 // sometimes it is useful for debug to see name of each object (bad for memory and performance)
33 //#define DEBUG_NAMES
34
35 /**\class ModelAPI_Object
36  * \ingroup DataModel
37  * \brief Represents any object in the data model and in the object browser.
38  *
39  * It may be feature or result of the feature. User just may set name for it
40  * or change this name later. Generic class for Feature, Body, Parameter and other
41  * objects related to the features and their results. Contains attributes of this 
42  * object in the "Data".
43  */
44 class ModelAPI_Object: public ModelAPI_Entity
45 {
46   std::shared_ptr<ModelAPI_Data> myData;  ///< manager of the data model of a feature
47   std::shared_ptr<ModelAPI_Document> myDoc;  ///< document this object belongs to
48  public:
49 #ifdef DEBUG_NAMES
50   std::wstring myName; // name of this object
51 #endif
52   /// By default object is displayed in the object browser.
53   MODELAPI_EXPORT virtual bool isInHistory();
54
55   /// Makes object presented or not in the history of the created objects
56   /// \param theObject is shared pointer to "this"
57   /// \param theFlag is boolean value: to add or remove from the history
58   MODELAPI_EXPORT virtual void setInHistory(
59     const std::shared_ptr<ModelAPI_Object> theObject, const bool theFlag);
60
61   /// Returns the data manager of this object: attributes
62   MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Data> data() const;
63
64   /// Returns true if object refers to the same data model instance
65   MODELAPI_EXPORT virtual bool isSame(const std::shared_ptr<ModelAPI_Object>& theObject);
66
67   /// Returns document this feature belongs to
68   MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Document> document() const;
69
70   /// Returns the group identifier of this object
71   virtual std::string groupName() = 0;
72
73   /// Request for initialization of data model of the object: adding all attributes
74   virtual void initAttributes() = 0;
75
76   /// Returns the feature is disabled or not.
77   virtual bool isDisabled() = 0;
78
79   /// Returns the parameters of color definition in the resources config manager
80   virtual void colorConfigInfo(std::string& /*theSection*/,
81                                std::string& /*theName*/,
82                                std::string& /*theDefault*/) {}
83
84   /// Called on change of any argument-attribute of this object
85   /// \param theID identifier of changed attribute
86   MODELAPI_EXPORT virtual void attributeChanged(const std::string& theID);
87
88   /// Initializes the default states of the object
89   MODELAPI_EXPORT ModelAPI_Object();
90
91   /// To use virtuality for destructors
92   MODELAPI_EXPORT virtual ~ModelAPI_Object();
93
94   /// Returns true if object must be displayed in the viewer: flag is stored in the
95   /// data model, so on undo/redo, open/save or recreation of object by history-playing it keeps
96   /// the original state in the current transaction.
97   MODELAPI_EXPORT virtual bool isDisplayed();
98
99   /// Sets the displayed/hidden state of the object. If it is changed, sends the "redisplay"
100   /// signal.
101   MODELAPI_EXPORT virtual void setDisplayed(const bool theDisplay);
102
103   MODELAPI_EXPORT virtual bool hasTexture()
104   {
105     return false;
106   }
107
108  protected:
109   /// This method is called just after creation of the object: it must initialize
110   /// all fields, normally initialized in the constructor
111   MODELAPI_EXPORT virtual void init() = 0;
112
113   /// Sets the data manager of an object (document does)
114   MODELAPI_EXPORT virtual void setData(std::shared_ptr<ModelAPI_Data> theData);
115
116   /// Sets the data manager of an object (document does)
117   MODELAPI_EXPORT virtual void setDoc(std::shared_ptr<ModelAPI_Document> theDoc);
118
119   /// removes all fields from this feature
120   MODELAPI_EXPORT virtual void erase();
121
122   friend class Model_Objects;
123   friend class ModelAPI_Feature;
124   friend class Model_Document;
125
126 };
127
128 typedef std::shared_ptr<ModelAPI_Object> ObjectPtr;
129
130 #endif