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
// Take a look at the license at the top of the repository in the LICENSE file.

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

glib::wrapper! {
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    #[doc(alias = "GskOpacityNode")]
    pub struct OpacityNode(Shared<ffi::GskOpacityNode>);

    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!(
    OpacityNode,
    ffi::GskOpacityNode,
    ffi::gsk_opacity_node_get_type,
    RenderNodeType::OpacityNode
);

impl OpacityNode {
    #[doc(alias = "gsk_opacity_node_new")]
    pub fn new<P: AsRef<RenderNode>>(child: &P, opacity: f32) -> Self {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::gsk_opacity_node_new(
                child.as_ref().to_glib_none().0,
                opacity,
            ))
        }
    }

    #[doc(alias = "gsk_opacity_node_get_child")]
    #[doc(alias = "get_child")]
    pub fn child(&self) -> Option<RenderNode> {
        unsafe { from_glib_none(ffi::gsk_opacity_node_get_child(self.to_glib_none().0)) }
    }

    #[doc(alias = "gsk_opacity_node_get_opacity")]
    #[doc(alias = "get_opacity")]
    pub fn opacity(&self) -> f32 {
        unsafe { ffi::gsk_opacity_node_get_opacity(self.to_glib_none().0) }
    }
}