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
use glib::translate::*;
glib::wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct GlyphItemIter(Boxed<ffi::PangoGlyphItemIter>);
match fn {
copy => |ptr| ffi::pango_glyph_item_iter_copy(mut_override(ptr)),
free => |ptr| ffi::pango_glyph_item_iter_free(ptr),
type_ => || ffi::pango_glyph_item_iter_get_type(),
}
}
impl GlyphItemIter {
#[doc(alias = "pango_glyph_item_iter_next_cluster")]
pub fn next_cluster(&mut self) -> bool {
unsafe {
from_glib(ffi::pango_glyph_item_iter_next_cluster(
self.to_glib_none_mut().0,
))
}
}
#[doc(alias = "pango_glyph_item_iter_prev_cluster")]
pub fn prev_cluster(&mut self) -> bool {
unsafe {
from_glib(ffi::pango_glyph_item_iter_prev_cluster(
self.to_glib_none_mut().0,
))
}
}
}