20 #ifndef Model_AttributeRefList_H_
21 #define Model_AttributeRefList_H_
24 #include "ModelAPI_AttributeRefList.h"
25 #include "ModelAPI_Feature.h"
26 #include "Model_Document.h"
28 #include <TDataStd_ReferenceList.hxx>
29 #include <TDataStd_ExtStringList.hxx>
40 Handle_TDataStd_ReferenceList myRef;
43 Handle_TDataStd_ExtStringList myExtDocRef;
45 std::set<ObjectPtr> myHashObjects;
46 std::map<int, ObjectPtr> myHashIndex;
47 std::map<int, ObjectPtr> myHashIndexNoEmpty;
50 MODEL_EXPORT
virtual void append(ObjectPtr theObject);
53 MODEL_EXPORT
virtual void remove(ObjectPtr theObject);
57 MODEL_EXPORT
virtual int size(
const bool theWithEmpty =
true)
const;
60 MODEL_EXPORT
virtual void clear();
63 MODEL_EXPORT
virtual std::list<ObjectPtr>
list();
66 MODEL_EXPORT
virtual bool isInList(
const ObjectPtr& theObj);
71 MODEL_EXPORT
virtual ObjectPtr
object(
const int theIndex,
const bool theWithEmpty =
true);
75 MODEL_EXPORT
virtual void substitute(
const ObjectPtr& theCurrent,
const ObjectPtr& theNew);
84 MODEL_EXPORT
virtual void remove(
const std::set<int>& theIndices);
99 TDataStd_ListIteratorOfListOfExtendedString& theExtIter,
100 std::shared_ptr<Model_Document> theDoc)
const;
Attribute that contains list of references to features (located in the same document).
Definition: ModelAPI_AttributeRefList.h:33
Attribute that contains list of references to features, may be located in different documents.
Definition: Model_AttributeRefList.h:37
virtual bool isInList(const ObjectPtr &theObj)
Returns true if the object is in list.
Definition: Model_AttributeRefList.cpp:204
virtual void reinit()
Reinitializes the internal state of the attribute (may be needed on undo/redo, abort,...
Definition: Model_AttributeRefList.cpp:305
virtual int size(const bool theWithEmpty=true) const
Returns number of features in the list.
Definition: Model_AttributeRefList.cpp:139
virtual void substitute(const ObjectPtr &theCurrent, const ObjectPtr &theNew)
Substitutes the feature by another one.
Definition: Model_AttributeRefList.cpp:229
ObjectPtr iteratedObject(TDF_ListIteratorOfLabelList &theLIter, TDataStd_ListIteratorOfListOfExtendedString &theExtIter, std::shared_ptr< Model_Document > theDoc) const
Returns the object by iterators (theExtIter is iterated if necessary)
Definition: Model_AttributeRefList.cpp:164
void createHash()
Creates the hash-objects containers (does nothing if hash is already correct)
Definition: Model_AttributeRefList.cpp:317
Model_AttributeRefList(TDF_Label &theLabel)
Objects are created for features automatically.
Definition: Model_AttributeRefList.cpp:299
void eraseHash()
Erases the hashed objects caused by complicated modifications in the list.
Definition: Model_AttributeRefList.cpp:340
virtual void clear()
Removes all references from the list.
Definition: Model_AttributeRefList.cpp:126
virtual void removeLast()
Removes the last element in the list.
Definition: Model_AttributeRefList.cpp:257
virtual bool isInitialized()
Returns true if attribute was initialized by some value.
Definition: Model_AttributeRefList.cpp:155
virtual std::list< ObjectPtr > list()
Returns the list of features.
Definition: Model_AttributeRefList.cpp:193
virtual void remove(ObjectPtr theObject)
Erases the first meet of the feature in the list.
Definition: Model_AttributeRefList.cpp:58
virtual void append(ObjectPtr theObject)
Appends the feature to the end of a list.
Definition: Model_AttributeRefList.cpp:29
virtual ObjectPtr object(const int theIndex, const bool theWithEmpty=true)
Returns the list of features.
Definition: Model_AttributeRefList.cpp:213
General object of the application that allows to get/set attributes from the document and compute res...
Definition: Model_Data.h:62