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
use crate::Font;
use crate::FontMetrics;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "PangoFontset")]
pub struct Fontset(Object<ffi::PangoFontset, ffi::PangoFontsetClass>);
match fn {
type_ => || ffi::pango_fontset_get_type(),
}
}
pub const NONE_FONTSET: Option<&Fontset> = None;
pub trait FontsetExt: 'static {
#[doc(alias = "pango_fontset_foreach")]
fn foreach<P: FnMut(&Fontset, &Font) -> bool>(&self, func: P);
#[doc(alias = "pango_fontset_get_font")]
#[doc(alias = "get_font")]
fn font(&self, wc: u32) -> Option<Font>;
#[doc(alias = "pango_fontset_get_metrics")]
#[doc(alias = "get_metrics")]
fn metrics(&self) -> Option<FontMetrics>;
}
impl<O: IsA<Fontset>> FontsetExt for O {
fn foreach<P: FnMut(&Fontset, &Font) -> bool>(&self, func: P) {
let func_data: P = func;
unsafe extern "C" fn func_func<P: FnMut(&Fontset, &Font) -> bool>(
fontset: *mut ffi::PangoFontset,
font: *mut ffi::PangoFont,
user_data: glib::ffi::gpointer,
) -> glib::ffi::gboolean {
let fontset = from_glib_borrow(fontset);
let font = from_glib_borrow(font);
let callback: *mut P = user_data as *const _ as usize as *mut P;
let res = (*callback)(&fontset, &font);
res.into_glib()
}
let func = Some(func_func::<P> as _);
let super_callback0: &P = &func_data;
unsafe {
ffi::pango_fontset_foreach(
self.as_ref().to_glib_none().0,
func,
super_callback0 as *const _ as usize as *mut _,
);
}
}
fn font(&self, wc: u32) -> Option<Font> {
unsafe {
from_glib_full(ffi::pango_fontset_get_font(
self.as_ref().to_glib_none().0,
wc,
))
}
}
fn metrics(&self) -> Option<FontMetrics> {
unsafe {
from_glib_full(ffi::pango_fontset_get_metrics(
self.as_ref().to_glib_none().0,
))
}
}
}
impl fmt::Display for Fontset {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Fontset")
}
}