gsk4/auto/container_node.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use crate::{ffi, RenderNode};
use glib::{prelude::*, translate::*};
glib::wrapper! {
/// A render node that can contain other render nodes.
#[doc(alias = "GskContainerNode")]
pub struct ContainerNode(Shared<ffi::GskContainerNode>);
match fn {
ref => |ptr| ffi::gsk_render_node_ref(ptr as *mut ffi::GskRenderNode),
unref => |ptr| ffi::gsk_render_node_unref(ptr as *mut ffi::GskRenderNode),
}
}
impl StaticType for ContainerNode {
fn static_type() -> glib::Type {
unsafe { from_glib(ffi::gsk_container_node_get_type()) }
}
}
impl ContainerNode {
/// Creates a new [`RenderNode`][crate::RenderNode] instance for holding the given @children.
///
/// The new node will acquire a reference to each of the children.
/// ## `children`
/// The children of the node
///
/// # Returns
///
/// the new [`RenderNode`][crate::RenderNode]
#[doc(alias = "gsk_container_node_new")]
pub fn new(children: &[RenderNode]) -> ContainerNode {
assert_initialized_main_thread!();
let n_children = children.len() as _;
unsafe {
from_glib_full(ffi::gsk_container_node_new(
children.to_glib_none().0,
n_children,
))
}
}
/// Retrieves the number of direct children of @self.
///
/// # Returns
///
/// the number of children of the [`RenderNode`][crate::RenderNode]
#[doc(alias = "gsk_container_node_get_n_children")]
#[doc(alias = "get_n_children")]
pub fn n_children(&self) -> u32 {
unsafe { ffi::gsk_container_node_get_n_children(self.to_glib_none().0) }
}
}