Class
AravisDomElement
Instance methods
Methods inherited from ArvDomNode (17)
arv_dom_node_append_child
Adds the node new_child
to the end of the list of children of this node.
If the new_child
is already in the tree, it is first removed.
arv_dom_node_changed
arv_dom_node_get_child_nodes
arv_dom_node_get_first_child
arv_dom_node_get_last_child
arv_dom_node_get_next_sibling
arv_dom_node_get_node_name
Gets the node name.
arv_dom_node_get_node_type
arv_dom_node_get_node_value
Gets the node value.
arv_dom_node_get_owner_document
arv_dom_node_get_parent_node
Get the parent node of self
.
arv_dom_node_get_previous_sibling
arv_dom_node_has_child_nodes
arv_dom_node_insert_before
Inserts the node new_child
before the existing child node ref_child
. If
ref_child
is null, insert new_child
at the end of the list of children.
If the new_child
is already in the tree, it is first removed.
arv_dom_node_remove_child
Removes the child node indicated by old_child
from the list of children, and returns it.
arv_dom_node_replace_child
Replaces the child node old_child
with new_child
in the list of children,
and returns the old_child
node.
If the new_child
is already in the tree, it is first removed.
arv_dom_node_set_node_value
Signals
Signals inherited from GObject (1)
GObject::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.
Class structure
struct AravisDomElementClass {
ArvDomNodeClass parent_class;
const char* (* get_attribute) (
ArvDomElement* self,
const char* name
);
void (* set_attribute) (
ArvDomElement* self,
const char* name,
const char* attribute_value
);
}
No description available.
Class members
parent_class: ArvDomNodeClass
No description available.
get_attribute: const char* (* get_attribute) ( ArvDomElement* self, const char* name )
No description available.
set_attribute: void (* set_attribute) ( ArvDomElement* self, const char* name, const char* attribute_value )
No description available.