Top |
const char * | arv_dom_node_get_node_name () |
const char * | arv_dom_node_get_node_value () |
void | arv_dom_node_set_node_value () |
ArvDomNodeType | arv_dom_node_get_node_type () |
ArvDomNode * | arv_dom_node_get_parent_node () |
ArvDomNodeList * | arv_dom_node_get_child_nodes () |
ArvDomNode * | arv_dom_node_get_first_child () |
ArvDomNode * | arv_dom_node_get_last_child () |
ArvDomNode * | arv_dom_node_get_previous_sibling () |
ArvDomNode * | arv_dom_node_get_next_sibling () |
ArvDomNamedNodeMap * | arv_dom_node_get_attributes () |
ArvDomNode * | arv_dom_node_insert_before () |
ArvDomNode * | arv_dom_node_replace_child () |
ArvDomNode * | arv_dom_node_append_child () |
ArvDomNode * | arv_dom_node_remove_child () |
gboolean | arv_dom_node_has_child_nodes () |
void | arv_dom_node_changed () |
ArvDomDocument * | arv_dom_node_get_owner_document () |
const char *
arv_dom_node_get_node_name (ArvDomNode *self
);
Gets the node name.
const char *
arv_dom_node_get_node_value (ArvDomNode *self
);
Gets the node value.
void arv_dom_node_set_node_value (ArvDomNode *self
,const char *new_value
);
ArvDomNode *
arv_dom_node_get_parent_node (ArvDomNode *self
);
Get the parent node of self
.
ArvDomNode *
arv_dom_node_get_previous_sibling (ArvDomNode *self
);
ArvDomNode * arv_dom_node_insert_before (ArvDomNode *self
,ArvDomNode *new_child
,ArvDomNode *ref_child
);
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.
ArvDomNode * arv_dom_node_replace_child (ArvDomNode *self
,ArvDomNode *new_child
,ArvDomNode *old_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.
ArvDomNode * arv_dom_node_append_child (ArvDomNode *self
,ArvDomNode *new_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.
ArvDomNode * arv_dom_node_remove_child (ArvDomNode *self
,ArvDomNode *old_child
);
Removes the child node indicated by old_child
from the list of children, and returns it.
ArvDomDocument *
arv_dom_node_get_owner_document (ArvDomNode *self
);