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
80
81
82
83
84
85
86
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::{BlendMode, RenderNode, RenderNodeType};
use glib::translate::*;

glib::wrapper! {
    /// A render node applying a blending function between its two child nodes.
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    #[doc(alias = "GskBlendNode")]
    pub struct BlendNode(Shared<ffi::GskBlendNode>);

    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),
    }
}

define_render_node!(
    BlendNode,
    ffi::GskBlendNode,
    ffi::gsk_blend_node_get_type,
    RenderNodeType::BlendNode
);

impl BlendNode {
    /// Creates a [`RenderNode`][crate::RenderNode] that will use `blend_mode` to blend the `top`
    /// node onto the `bottom` node.
    /// ## `bottom`
    /// The bottom node to be drawn
    /// ## `top`
    /// The node to be blended onto the `bottom` node
    /// ## `blend_mode`
    /// The blend mode to use
    ///
    /// # Returns
    ///
    /// A new [`RenderNode`][crate::RenderNode]
    #[doc(alias = "gsk_blend_node_new")]
    pub fn new<P: AsRef<RenderNode>, Q: AsRef<RenderNode>>(
        bottom: &P,
        top: &Q,
        blend_mode: BlendMode,
    ) -> Self {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::gsk_blend_node_new(
                bottom.as_ref().to_glib_none().0,
                top.as_ref().to_glib_none().0,
                blend_mode.into_glib(),
            ))
        }
    }

    /// Retrieves the blend mode used by `self`.
    ///
    /// # Returns
    ///
    /// the blend mode
    #[doc(alias = "gsk_blend_node_get_blend_mode")]
    #[doc(alias = "get_blend_mode")]
    pub fn blend_mode(&self) -> BlendMode {
        unsafe { from_glib(ffi::gsk_blend_node_get_blend_mode(self.to_glib_none().0)) }
    }

    /// Retrieves the bottom [`RenderNode`][crate::RenderNode] child of the `self`.
    ///
    /// # Returns
    ///
    /// the bottom child node
    #[doc(alias = "gsk_blend_node_get_bottom_child")]
    #[doc(alias = "get_bottom_child")]
    pub fn bottom_child(&self) -> Option<RenderNode> {
        unsafe { from_glib_none(ffi::gsk_blend_node_get_bottom_child(self.to_glib_none().0)) }
    }

    /// Retrieves the top [`RenderNode`][crate::RenderNode] child of the `self`.
    ///
    /// # Returns
    ///
    /// the top child node
    #[doc(alias = "gsk_blend_node_get_top_child")]
    #[doc(alias = "get_top_child")]
    pub fn top_child(&self) -> Option<RenderNode> {
        unsafe { from_glib_none(ffi::gsk_blend_node_get_top_child(self.to_glib_none().0)) }
    }
}