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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
use gdk::RGBA;
use glib::translate::*;
use std::mem;
use std::ptr;
#[derive(Clone, Copy, Debug)]
#[repr(C)]
#[doc(alias = "GskShadow")]
pub struct Shadow(ffi::GskShadow);
impl Shadow {
pub fn new(color: RGBA, dx: f32, dy: f32, radius: f32) -> Self {
assert_initialized_main_thread!();
Self(ffi::GskShadow {
color: unsafe { *color.to_glib_none().0 },
dx,
dy,
radius,
})
}
pub fn color(&self) -> RGBA {
unsafe { from_glib_none(&self.0.color as *const _) }
}
pub fn dx(&self) -> f32 {
self.0.dx
}
pub fn dy(&self) -> f32 {
self.0.dy
}
pub fn radius(&self) -> f32 {
self.0.radius
}
}
#[doc(hidden)]
impl<'a> ToGlibPtr<'a, *const ffi::GskShadow> for Shadow {
type Storage = &'a Self;
fn to_glib_none(&'a self) -> Stash<*const ffi::GskShadow, Self> {
let ptr: *const Shadow = &*self;
Stash(ptr as *const ffi::GskShadow, self)
}
}
#[doc(hidden)]
impl<'a> ToGlibPtrMut<'a, *mut ffi::GskShadow> for Shadow {
type Storage = &'a mut Self;
#[inline]
fn to_glib_none_mut(&'a mut self) -> StashMut<'a, *mut ffi::GskShadow, Self> {
let ptr: *mut Shadow = &mut *self;
StashMut(ptr as *mut ffi::GskShadow, self)
}
}
#[doc(hidden)]
impl FromGlibPtrNone<*const ffi::GskShadow> for Shadow {
unsafe fn from_glib_none(ptr: *const ffi::GskShadow) -> Self {
*(ptr as *const Shadow)
}
}
#[doc(hidden)]
impl<'a> ToGlibContainerFromSlice<'a, *const ffi::GskShadow> for Shadow {
type Storage = &'a [Self];
fn to_glib_none_from_slice(t: &'a [Self]) -> (*const ffi::GskShadow, &'a [Self]) {
assert_initialized_main_thread!();
(t.as_ptr() as *const _, t)
}
fn to_glib_container_from_slice(t: &'a [Self]) -> (*const ffi::GskShadow, &'a [Self]) {
assert_initialized_main_thread!();
(ToGlibContainerFromSlice::to_glib_full_from_slice(t), t)
}
fn to_glib_full_from_slice(t: &[Self]) -> *const ffi::GskShadow {
assert_initialized_main_thread!();
if t.is_empty() {
return ptr::null_mut();
}
unsafe {
let res = glib::ffi::g_malloc(mem::size_of::<ffi::GskShadow>() * t.len())
as *mut ffi::GskShadow;
ptr::copy_nonoverlapping(t.as_ptr() as *const _, res, t.len());
res
}
}
}
#[doc(hidden)]
impl<'a> ToGlibContainerFromSlice<'a, *mut ffi::GskShadow> for Shadow {
type Storage = &'a [Self];
fn to_glib_none_from_slice(t: &'a [Self]) -> (*mut ffi::GskShadow, &'a [Self]) {
assert_initialized_main_thread!();
(t.as_ptr() as *mut ffi::GskShadow, t)
}
fn to_glib_container_from_slice(t: &'a [Self]) -> (*mut ffi::GskShadow, &'a [Self]) {
assert_initialized_main_thread!();
(ToGlibContainerFromSlice::to_glib_full_from_slice(t), t)
}
fn to_glib_full_from_slice(t: &[Self]) -> *mut ffi::GskShadow {
assert_initialized_main_thread!();
if t.is_empty() {
return ptr::null_mut();
}
unsafe {
let res = glib::ffi::g_malloc(mem::size_of::<ffi::GskShadow>() * t.len())
as *mut ffi::GskShadow;
ptr::copy_nonoverlapping(t.as_ptr() as *const _, res, t.len());
res
}
}
}