Node
The #GNode struct represents one node in a glib-N-ary-Trees.
Constructors
Allocate a new Node.
Allocate a new Node using the provided AutofreeScope.
Allocate a new Node.
Allocate a new Node using the provided AutofreeScope.
Functions
Registers a cleaner to be executed when this proxy object is garbage collected.
Gets the position of the first child of a #GNode which contains the given data.
Gets the position of a #GNode with respect to its siblings.
Calls a function for each of the children of a #GNode. Note that it doesn't descend beneath the child nodes. @func must not do anything that would modify the structure of the tree.
Finds a #GNode in a tree.
Finds the first child of a #GNode with the given data.
Gets the first sibling of a #GNode. This could possibly be the node itself.
Inserts a #GNode beneath the parent after the given sibling.
Inserts a #GNode beneath the parent before the given sibling.
Returns true if @node is an ancestor of @descendant. This is true if node is the parent of @descendant, or if node is the grandparent of @descendant etc.
Gets the last sibling of a #GNode. This could possibly be the node itself.
Gets the number of nodes in a tree.
Removes a previously registered cleaner from this proxy object.
Reverses the order of the children of a #GNode. (It doesn't change the order of the grandchildren.)
Traverses a tree starting at the given root #GNode. It calls the given function for each node visited. The traversal can be halted at any point by returning true from @func.