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
use ffi;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;
glib_wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Item(Boxed<ffi::PangoItem>);
match fn {
copy => |ptr| ffi::pango_item_copy(mut_override(ptr)),
free => |ptr| ffi::pango_item_free(ptr),
get_type => || ffi::pango_item_get_type(),
}
}
impl Item {
pub fn new() -> Item {
unsafe {
from_glib_full(ffi::pango_item_new())
}
}
pub fn split(&mut self, split_index: i32, split_offset: i32) -> Option<Item> {
unsafe {
from_glib_full(ffi::pango_item_split(self.to_glib_none_mut().0, split_index, split_offset))
}
}
}
impl Default for Item {
fn default() -> Self {
Self::new()
}
}