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
use crate::ColorStop;
use crate::RenderNode;
use glib::translate::*;
use glib::StaticType;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GskRepeatingLinearGradientNode")]
pub struct RepeatingLinearGradientNode(Shared<ffi::GskRepeatingLinearGradientNode>);
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 RepeatingLinearGradientNode {
fn static_type() -> glib::Type {
unsafe { from_glib(ffi::gsk_repeating_linear_gradient_node_get_type()) }
}
}
impl RepeatingLinearGradientNode {
#[doc(alias = "gsk_repeating_linear_gradient_node_new")]
pub fn new(
bounds: &graphene::Rect,
start: &graphene::Point,
end: &graphene::Point,
color_stops: &[ColorStop],
) -> RepeatingLinearGradientNode {
assert_initialized_main_thread!();
let n_color_stops = color_stops.len() as _;
unsafe {
from_glib_full(ffi::gsk_repeating_linear_gradient_node_new(
bounds.to_glib_none().0,
start.to_glib_none().0,
end.to_glib_none().0,
color_stops.to_glib_none().0,
n_color_stops,
))
}
}
}
impl fmt::Display for RepeatingLinearGradientNode {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("RepeatingLinearGradientNode")
}
}