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

glib::wrapper! {
    /// A render node that will fill the area determined by stroking the the given
    /// [`Path`][crate::Path] using the [`Stroke`][crate::Stroke] attributes.
    #[doc(alias = "GskStrokeNode")]
    pub struct StrokeNode(Shared<ffi::GskStrokeNode>);

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

impl StrokeNode {
    /// Creates a #GskRenderNode that will fill the outline generated by stroking
    /// the given @path using the attributes defined in @stroke.
    ///
    /// The area is filled with @child.
    /// ## `child`
    /// The node to stroke the area with
    /// ## `path`
    /// The path describing the area to stroke
    /// ## `stroke`
    /// The stroke attributes to use
    ///
    /// # Returns
    ///
    /// A new #GskRenderNode
    #[doc(alias = "gsk_stroke_node_new")]
    pub fn new(child: impl AsRef<RenderNode>, path: &Path, stroke: &Stroke) -> StrokeNode {
        skip_assert_initialized!();
        unsafe {
            from_glib_none(ffi::gsk_stroke_node_new(
                child.as_ref().to_glib_none().0,
                path.to_glib_none().0,
                stroke.to_glib_none().0,
            ))
        }
    }

    /// Gets the child node that is getting drawn by the given @self.
    ///
    /// # Returns
    ///
    /// The child that is getting drawn
    #[doc(alias = "gsk_stroke_node_get_child")]
    #[doc(alias = "get_child")]
    pub fn child(&self) -> RenderNode {
        unsafe { from_glib_none(ffi::gsk_stroke_node_get_child(self.to_glib_none().0)) }
    }

    /// Retrieves the path that will be stroked with the contents of
    /// the @self.
    ///
    /// # Returns
    ///
    /// a #GskPath
    #[doc(alias = "gsk_stroke_node_get_path")]
    #[doc(alias = "get_path")]
    pub fn path(&self) -> Path {
        unsafe { from_glib_none(ffi::gsk_stroke_node_get_path(self.to_glib_none().0)) }
    }

    /// Retrieves the stroke attributes used in this @self.
    ///
    /// # Returns
    ///
    /// a #GskStroke
    #[doc(alias = "gsk_stroke_node_get_stroke")]
    #[doc(alias = "get_stroke")]
    pub fn stroke(&self) -> Stroke {
        unsafe { from_glib_none(ffi::gsk_stroke_node_get_stroke(self.to_glib_none().0)) }
    }
}