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
use glib::translate::*;
glib::wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct FontMetrics(Shared<ffi::PangoFontMetrics>);
match fn {
ref => |ptr| ffi::pango_font_metrics_ref(ptr),
unref => |ptr| ffi::pango_font_metrics_unref(ptr),
type_ => || ffi::pango_font_metrics_get_type(),
}
}
impl FontMetrics {
#[doc(alias = "pango_font_metrics_get_approximate_char_width")]
#[doc(alias = "get_approximate_char_width")]
pub fn approximate_char_width(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_approximate_char_width(self.to_glib_none().0) }
}
#[doc(alias = "pango_font_metrics_get_approximate_digit_width")]
#[doc(alias = "get_approximate_digit_width")]
pub fn approximate_digit_width(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_approximate_digit_width(self.to_glib_none().0) }
}
#[doc(alias = "pango_font_metrics_get_ascent")]
#[doc(alias = "get_ascent")]
pub fn ascent(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_ascent(self.to_glib_none().0) }
}
#[doc(alias = "pango_font_metrics_get_descent")]
#[doc(alias = "get_descent")]
pub fn descent(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_descent(self.to_glib_none().0) }
}
#[cfg(any(feature = "v1_44", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_44")))]
#[doc(alias = "pango_font_metrics_get_height")]
#[doc(alias = "get_height")]
pub fn height(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_height(self.to_glib_none().0) }
}
#[doc(alias = "pango_font_metrics_get_strikethrough_position")]
#[doc(alias = "get_strikethrough_position")]
pub fn strikethrough_position(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_strikethrough_position(self.to_glib_none().0) }
}
#[doc(alias = "pango_font_metrics_get_strikethrough_thickness")]
#[doc(alias = "get_strikethrough_thickness")]
pub fn strikethrough_thickness(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_strikethrough_thickness(self.to_glib_none().0) }
}
#[doc(alias = "pango_font_metrics_get_underline_position")]
#[doc(alias = "get_underline_position")]
pub fn underline_position(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_underline_position(self.to_glib_none().0) }
}
#[doc(alias = "pango_font_metrics_get_underline_thickness")]
#[doc(alias = "get_underline_thickness")]
pub fn underline_thickness(&self) -> i32 {
unsafe { ffi::pango_font_metrics_get_underline_thickness(self.to_glib_none().0) }
}
}