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
use glib::translate::*;
use std::fmt;
use std::hash;
glib::wrapper! {
pub struct RGBA(BoxedInline<ffi::GdkRGBA>);
match fn {
copy => |ptr| ffi::gdk_rgba_copy(ptr),
free => |ptr| ffi::gdk_rgba_free(ptr),
type_ => || ffi::gdk_rgba_get_type(),
}
}
impl RGBA {
#[doc(alias = "gdk_rgba_equal")]
fn equal(&self, p2: &RGBA) -> bool {
unsafe {
from_glib(ffi::gdk_rgba_equal(
ToGlibPtr::<*const ffi::GdkRGBA>::to_glib_none(self).0 as glib::ffi::gconstpointer,
ToGlibPtr::<*const ffi::GdkRGBA>::to_glib_none(p2).0 as glib::ffi::gconstpointer,
))
}
}
#[doc(alias = "gdk_rgba_hash")]
fn hash(&self) -> u32 {
unsafe {
ffi::gdk_rgba_hash(
ToGlibPtr::<*const ffi::GdkRGBA>::to_glib_none(self).0 as glib::ffi::gconstpointer,
)
}
}
#[doc(alias = "gdk_rgba_to_string")]
#[doc(alias = "to_string")]
pub fn to_str(&self) -> glib::GString {
unsafe { from_glib_full(ffi::gdk_rgba_to_string(self.to_glib_none().0)) }
}
}
impl PartialEq for RGBA {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.equal(other)
}
}
impl Eq for RGBA {}
impl fmt::Display for RGBA {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str(&self.to_str())
}
}
impl hash::Hash for RGBA {
#[inline]
fn hash<H>(&self, state: &mut H)
where
H: hash::Hasher,
{
hash::Hash::hash(&self.hash(), state)
}
}