X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Data.h;h=cb7158b75de28390da8316551c2dd3bfcfc26e1a;hb=758a57d77b6fa3a0485fa3378a1280c7e87a74aa;hp=f8ad2f0a73b214aa0e5a5e5582a63740d2791b4e;hpb=cb7a02e2d7e5f4c675571888b8119a8c58069a0d;p=modules%2Fshaper.git diff --git a/src/Model/Model_Data.h b/src/Model/Model_Data.h index f8ad2f0a7..cb7158b75 100644 --- a/src/Model/Model_Data.h +++ b/src/Model/Model_Data.h @@ -26,6 +26,7 @@ #include #include #include +#include class ModelAPI_Attribute; @@ -44,6 +45,9 @@ class Model_Data : public ModelAPI_Data /// needed here to emit signal that object changed on change of the attribute ObjectPtr myObject; + /// List of attributes referenced to owner (updated only during the transaction change) + std::set myRefsToMe; + Model_Data(); /// Returns label of this feature @@ -53,9 +57,11 @@ class Model_Data : public ModelAPI_Data } friend class Model_Document; + friend class Model_Update; friend class Model_AttributeReference; friend class Model_AttributeRefAttr; friend class Model_AttributeRefList; + friend class Model_AttributeSelection; public: /// Returns the name of the feature visible by the user in the object browser @@ -63,7 +69,7 @@ class Model_Data : public ModelAPI_Data /// Defines the name of the feature visible by the user in the object browser MODEL_EXPORT virtual void setName(const std::string& theName); /// Returns the attribute that references to another document - MODEL_EXPORT virtual boost::shared_ptr docRef(const std::string& theID); + MODEL_EXPORT virtual boost::shared_ptr document(const std::string& theID); /// Returns the attribute that contains real value with double precision MODEL_EXPORT virtual boost::shared_ptr real(const std::string& theID); /// Returns the attribute that contains integer value @@ -72,6 +78,12 @@ class Model_Data : public ModelAPI_Data /// Returns the attribute that contains reference to a feature MODEL_EXPORT virtual boost::shared_ptr reference(const std::string& theID); + /// Returns the attribute that contains selection to a shape + MODEL_EXPORT virtual boost::shared_ptr + selection(const std::string& theID); + /// Returns the attribute that contains selection to a shape + MODEL_EXPORT virtual boost::shared_ptr + selectionList(const std::string& theID); /// Returns the attribute that contains reference to an attribute of a feature MODEL_EXPORT virtual boost::shared_ptr refattr(const std::string& theID); @@ -127,6 +139,29 @@ class Model_Data : public ModelAPI_Data { myObject = theObject; } + + MODEL_EXPORT virtual void erase(); + + /// Makes feature must be updated later (on rebuild). Normally the Updater must call it + /// in case of not-automatic update to true + MODEL_EXPORT virtual void mustBeUpdated(const bool theFlag); + + /// Returns true if feature must be updated (re-executed) on rebuild + MODEL_EXPORT virtual bool mustBeUpdated(); + + /// Returns the identifier of feature-owner, unique in this document + MODEL_EXPORT virtual int featureId() const; + +private: + // removes all information about back references + void eraseBackReferences(); + // adds a back reference (with identifier which attribute references to this object + void addBackReference(FeaturePtr theFeature, std::string theAttrID); + // returns all objects referenced to this + const std::set& refsToMe() {return myRefsToMe;} + // returns all references by attributes of this data + // \param the returned list of pairs: id of referenced attribute and list of referenced objects + void referencesToObjects(std::list > >& theRefs); }; #endif