Sets our main struct and passes it to the parent class
Creates a new GNode containing the given data. Used to create the first node in a tree.
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. child must be a child of node. The first child is numbered 0, the second 1, and so on.
Calls a function for each of the children of a GNode. Note that it doesn't descend beneath the child nodes.
Recursively copies a GNode (but does not deep-copy the data inside the nodes, see g_node_copy_deep() if you need that).
Recursively copies a GNode and its data. Since 2.4
Gets the depth of a GNode. If node is NULL the depth is 0. The root node has a depth of 1. For the children of the root node the depth is 2. And so on.
Removes root and its children from the tree, freeing any memory allocated.
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.
Gets the root of a tree.
the main Gtk struct as a void*
Inserts a GNode beneath the parent at the given position.
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 child of a GNode.
Gets the last sibling of a GNode. This could possibly be the node itself.
Gets the maximum height of all branches beneath a GNode. This is the maximum distance from the GNode to all leaf nodes. If root is NULL, 0 is returned. If root has no children, 1 is returned. If root has children, 2 is returned. And so on.
Gets the number of children of a GNode.
Gets the number of nodes in a tree.
Gets a child of a GNode, using the given index. The first child is at index 0. If the index is too big, NULL is returned.
Inserts a GNode as the first child of the given parent.
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.
Unlinks a GNode from a tree, resulting in two separate trees.
Warning g_node_pop_allocator has been deprecated since version 2.10 and should not be used in newly-written code. It does nothing, since GNode has been converted to the slice allocator Restores the previous GAllocator, used when allocating GNode elements. Note that this function is not available if GLib has been compiled with --disable-mem-pools
Warning g_node_push_allocator has been deprecated since version 2.10 and should not be used in newly-written code. It does nothing, since GNode has been converted to the slice allocator Sets the allocator to use to allocate GNode elements. Use g_node_pop_allocator() to restore the previous allocator. Note that this function is not available if GLib has been compiled with --disable-mem-pools
the main Gtk struct
Description The GNode struct and its associated functions provide a N-ary tree data structure, where nodes in the tree can contain arbitrary data. To create a new tree use g_node_new(). To insert a node into a tree use g_node_insert(), g_node_insert_before(), g_node_append() and g_node_prepend(). To create a new node and insert it into a tree use g_node_insert_data(), g_node_insert_data_before(), g_node_append_data() and g_node_prepend_data(). To reverse the children of a node use g_node_reverse_children(). To find a node use g_node_get_root(), g_node_find(), g_node_find_child(), g_node_child_index(), g_node_child_position(), g_node_first_child(), g_node_last_child(), g_node_nth_child(), g_node_first_sibling(), g_node_prev_sibling(), g_node_next_sibling() or g_node_last_sibling(). To get information about a node or tree use G_NODE_IS_LEAF(), G_NODE_IS_ROOT(), g_node_depth(), g_node_n_nodes(), g_node_n_children(), g_node_is_ancestor() or g_node_max_height(). To traverse a tree, calling a function for each node visited in the traversal, use g_node_traverse() or g_node_children_foreach(). To remove a node or subtree from a tree use g_node_unlink() or g_node_destroy().