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
// 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 glib::{prelude::*, translate::*};

glib::wrapper! {
    /// A render node for a solid color.
    #[doc(alias = "GskColorNode")]
    pub struct ColorNode(Shared<ffi::GskColorNode>);

    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 ColorNode {
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gsk_color_node_get_type()) }
    }
}

impl ColorNode {
    /// Creates a [`RenderNode`][crate::RenderNode] that will render the color specified by @rgba into
    /// the area given by @bounds.
    /// ## `rgba`
    /// a [`gdk::RGBA`][crate::gdk::RGBA] specifying a color
    /// ## `bounds`
    /// the rectangle to render the color into
    ///
    /// # Returns
    ///
    /// A new [`RenderNode`][crate::RenderNode]
    #[doc(alias = "gsk_color_node_new")]
    pub fn new(rgba: &gdk::RGBA, bounds: &graphene::Rect) -> ColorNode {
        assert_initialized_main_thread!();
        unsafe {
            from_glib_full(ffi::gsk_color_node_new(
                rgba.to_glib_none().0,
                bounds.to_glib_none().0,
            ))
        }
    }

    /// Retrieves the color of the given @self.
    ///
    /// # Returns
    ///
    /// the color of the node
    #[doc(alias = "gsk_color_node_get_color")]
    #[doc(alias = "get_color")]
    pub fn color(&self) -> gdk::RGBA {
        unsafe { from_glib_none(ffi::gsk_color_node_get_color(self.to_glib_none().0)) }
    }
}