![]() |
Represents a list of attributes for a node, or subattributes of an attribute.
An AttributeList provides the attributes owned by the parent. In most cases, the AttributeList is provided by a Node via OMC::Node::attributes. Some attributes are complex and have subattributes, accessible from OMC::Attribute::subattributes.
The AttributeList allows for list iteration in for loops, indexed access with the list operator[int_idx], and named access with the map operator["name"]
Identify All Attributes Recursively on a Node
Direct Access to an Attribute by Keyword
Public Member Functions | |
OMC::Attribute * | operator[] (int idx) |
Provides the attribute at the given index. More... | |
OMC::Attribute * | operator[] (QString &attribute_name) |
Provides the attribute at the given index. More... | |
bool | contains (OMC::Attribute *) const |
Identifies if the list contains the attribute (or subattribute). More... | |
virtual std::vector< OMC::Attribute * > | list () const override |
Converts the dynamic list into a static list of attribute objects. More... | |
OMC::Attribute * | create_dynamic_attr (const QString &type, const QString &name, const QString &displayName, bool linkable) |
Creates a dynamic attribute on the node. More... | |
virtual void | remove_dynamic_attr (const OMC::Attribute *attr) |
Removes a dynamic attribute from the node. More... | |
bool OMC::AttributeList::contains | ( | OMC::Attribute * | ) | const |
Identifies if the list contains the attribute (or subattribute).
Useful when identifying if an attribute is contained within an attribute list. This is also used with Python's built in in operator.
Check for Attribute in List
OMC::Attribute* OMC::AttributeList::create_dynamic_attr | ( | const QString & | type, |
const QString & | name, | ||
const QString & | displayName, | ||
bool | linkable | ||
) |
Creates a dynamic attribute on the node.
Custom dynamic attributes can be added to nodes by the attribute list owned by the Node. These dynamic attributes behave as normal attributes, but can be added and removed as needed.
type | - The type of the dynamic attribute. |
name | - The name of the attribute. |
displayName | - The display name of the attribute. |
linkable | - Whether the attribute can be linked to a column. |
Create a new Double Attribute
|
overridevirtual |
Converts the dynamic list into a static list of attribute objects.
By default, the AttributeList object is a dynamic list-type. This means that the object does not contain a persistent list, but behaves dynamically when a node is requested from it. Sometimes, a static list is preferred and this method will generate a static list of OMC::Attribute objects. Note, although the list is static, the objects within the list remain dynamic and refer to a node within the project.
OMC::Attribute* OMC::AttributeList::operator[] | ( | int | idx | ) |
Provides the attribute at the given index.
Allows for index access to an Attribute.
Iterate over the Attribute List with Index
OMC::Attribute* OMC::AttributeList::operator[] | ( | QString & | attribute_name | ) |
Provides the attribute at the given index.
Allows for index access to an Attribute.
Direct Access to an Attribute by Keyword
|
virtual |
Removes a dynamic attribute from the node.
Removes the dynamic attribute provided as an argument, if it exists in this list. Throws an error if there is an issue otherwise.
attr | - The name of the attribute. |