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
use ffi;
use glib::translate::*;
glib_wrapper! {
pub struct AttrList(Shared<ffi::PangoAttrList>);
match fn {
ref => |ptr| ffi::pango_attr_list_ref(ptr),
unref => |ptr| ffi::pango_attr_list_unref(ptr),
}
}
impl AttrList {
pub fn new() -> AttrList {
unsafe {
from_glib_full(ffi::pango_attr_list_new())
}
}
pub fn copy(&self) -> Option<AttrList> {
unsafe {
from_glib_full(ffi::pango_attr_list_copy(self.to_glib_none().0))
}
}
pub fn splice(&self, other: &AttrList, pos: i32, len: i32) {
unsafe {
ffi::pango_attr_list_splice(self.to_glib_none().0, other.to_glib_none().0, pos, len);
}
}
}