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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// DO NOT EDIT

use crate::RenderNode;
use crate::Shadow;
use glib::translate::*;
use glib::StaticType;
use std::fmt;

glib::wrapper! {
    /// A render node drawing one or more shadows behind its single child node.
    #[doc(alias = "GskShadowNode")]
    pub struct ShadowNode(Shared<ffi::GskShadowNode>);

    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 glib::StaticType for ShadowNode {
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gsk_shadow_node_get_type()) }
    }
}

impl ShadowNode {
    /// Creates a [`RenderNode`][crate::RenderNode] that will draw a @child with the given
    /// @shadows below it.
    /// ## `child`
    /// The node to draw
    /// ## `shadows`
    /// The shadows to apply
    ///
    /// # Returns
    ///
    /// A new [`RenderNode`][crate::RenderNode]
    #[doc(alias = "gsk_shadow_node_new")]
    pub fn new(child: impl AsRef<RenderNode>, shadows: &[Shadow]) -> ShadowNode {
        skip_assert_initialized!();
        let n_shadows = shadows.len() as usize;
        unsafe {
            from_glib_full(ffi::gsk_shadow_node_new(
                child.as_ref().to_glib_none().0,
                shadows.to_glib_none().0,
                n_shadows,
            ))
        }
    }

    /// Retrieves the child [`RenderNode`][crate::RenderNode] of the shadow @self.
    ///
    /// # Returns
    ///
    /// the child render node
    #[doc(alias = "gsk_shadow_node_get_child")]
    #[doc(alias = "get_child")]
    pub fn child(&self) -> RenderNode {
        unsafe { from_glib_none(ffi::gsk_shadow_node_get_child(self.to_glib_none().0)) }
    }

    /// Retrieves the number of shadows in the @self.
    ///
    /// # Returns
    ///
    /// the number of shadows.
    #[doc(alias = "gsk_shadow_node_get_n_shadows")]
    #[doc(alias = "get_n_shadows")]
    pub fn n_shadows(&self) -> usize {
        unsafe { ffi::gsk_shadow_node_get_n_shadows(self.to_glib_none().0) }
    }
}

impl fmt::Display for ShadowNode {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("ShadowNode")
    }
}