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
use ffi;
use glib::translate::*;
glib_wrapper! {
pub struct FontMetrics(Shared<ffi::PangoFontMetrics>);
match fn {
ref => |ptr| ffi::pango_font_metrics_ref(ptr),
unref => |ptr| ffi::pango_font_metrics_unref(ptr),
}
}
impl FontMetrics {
pub fn new() -> FontMetrics {
unsafe {
from_glib_full(ffi::pango_font_metrics_new())
}
}
pub fn get_approximate_char_width(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_approximate_char_width(self.to_glib_none().0)
}
}
pub fn get_approximate_digit_width(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_approximate_digit_width(self.to_glib_none().0)
}
}
pub fn get_ascent(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_ascent(self.to_glib_none().0)
}
}
pub fn get_descent(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_descent(self.to_glib_none().0)
}
}
pub fn get_strikethrough_position(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_strikethrough_position(self.to_glib_none().0)
}
}
pub fn get_strikethrough_thickness(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_strikethrough_thickness(self.to_glib_none().0)
}
}
pub fn get_underline_position(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_underline_position(self.to_glib_none().0)
}
}
pub fn get_underline_thickness(&self) -> i32 {
unsafe {
ffi::pango_font_metrics_get_underline_thickness(self.to_glib_none().0)
}
}
}