Node

class Node(val glibNodePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance(source)

The #GNode struct represents one node in a glib-N-ary-Trees.

Constructors

Link copied to clipboard
constructor()

Allocate a new Node.

constructor(scope: <Error class: unknown class>)

Allocate a new Node using the provided AutofreeScope.

constructor(data: <Error class: unknown class>, next: Node?, prev: Node?, parent: Node?, children: Node?)

Allocate a new Node.

constructor(data: <Error class: unknown class>, next: Node?, prev: Node?, parent: Node?, children: Node?, scope: <Error class: unknown class>)

Allocate a new Node using the provided AutofreeScope.

constructor(glibNodePointer: <Error class: unknown class><<Error class: unknown class>>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

points to the first child of the #GNode. The other children are accessed by using the @next pointer of each child.

Link copied to clipboard
var data: <Error class: unknown class>

contains the actual data of the node.

Link copied to clipboard
val glibNodePointer: <Error class: unknown class><<Error class: unknown class>>
Link copied to clipboard
open override val handle: <Error class: unknown class>
Link copied to clipboard
var next: Node?

points to the node's next sibling (a sibling is another #GNode with the same parent).

Link copied to clipboard
var parent: Node?

points to the parent of the #GNode, or is null if the #GNode is the root of the tree.

Link copied to clipboard
var prev: Node?

points to the node's previous sibling.

Functions

Link copied to clipboard
open override fun addCleaner(cleaner: <Error class: unknown class>): Boolean

Registers a cleaner to be executed when this proxy object is garbage collected.

Link copied to clipboard
fun childIndex(data: <Error class: unknown class>? = null): <Error class: unknown class>

Gets the position of the first child of a #GNode which contains the given data.

Link copied to clipboard
fun childPosition(child: Node): <Error class: unknown class>

Gets the position of a #GNode with respect to its siblings.

Link copied to clipboard

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.

Link copied to clipboard
fun copy(): Node

Recursively copies a #GNode (but does not deep-copy the data inside the nodes, see g_node_copy_deep() if you need that).

Link copied to clipboard
fun copyDeep(copyFunc: CopyFunc): Node

Recursively copies a #GNode and its data.

Link copied to clipboard
fun depth(): <Error class: unknown class>

Gets the depth of a #GNode.

Link copied to clipboard
fun destroy()

Removes @root and its children from the tree, freeing any memory allocated.

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Compare two proxy instances for equality. This will compare both the type of the instances, and their memory addresses.

Link copied to clipboard
fun find(order: TraverseType, flags: TraverseFlags, data: <Error class: unknown class>? = null): Node

Finds a #GNode in a tree.

Link copied to clipboard
fun findChild(flags: TraverseFlags, data: <Error class: unknown class>? = null): Node

Finds the first child of a #GNode with the given data.

Link copied to clipboard

Gets the first sibling of a #GNode. This could possibly be the node itself.

Link copied to clipboard
fun getRoot(): Node

Gets the root of a tree.

Link copied to clipboard
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
fun insert(position: <Error class: unknown class>, node: Node): Node

Inserts a #GNode beneath the parent at the given position.

Link copied to clipboard
fun insertAfter(sibling: Node, node: Node): Node

Inserts a #GNode beneath the parent after the given sibling.

Link copied to clipboard
fun insertBefore(sibling: Node, node: Node): Node

Inserts a #GNode beneath the parent before the given sibling.

Link copied to clipboard
fun isAncestor(descendant: Node): Boolean

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.

Link copied to clipboard

Gets the last child of a #GNode.

Link copied to clipboard

Gets the last sibling of a #GNode. This could possibly be the node itself.

Link copied to clipboard
fun maxHeight(): <Error class: unknown class>

Gets the maximum height of all branches beneath a #GNode. This is the maximum distance from the #GNode to all leaf nodes.

Link copied to clipboard
fun nChildren(): <Error class: unknown class>

Gets the number of children of a #GNode.

Link copied to clipboard
fun nNodes(flags: TraverseFlags): <Error class: unknown class>

Gets the number of nodes in a tree.

Link copied to clipboard
fun nthChild(n: <Error class: unknown class>): Node

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.

Link copied to clipboard
fun prepend(node: Node): Node

Inserts a #GNode as the first child of the given parent.

Link copied to clipboard
open override fun removeCleaner(cleaner: <Error class: unknown class>): Boolean

Removes a previously registered cleaner from this proxy object.

Link copied to clipboard

Reverses the order of the children of a #GNode. (It doesn't change the order of the grandchildren.)

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun traverse(order: TraverseType, flags: TraverseFlags, maxDepth: <Error class: unknown class>, func: NodeTraverseFunc)

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.

Link copied to clipboard
fun unlink()

Unlinks a #GNode from a tree, resulting in two separate trees.