use glib::translate::*;
use pango_sys;
use std::mem;
use AttrList;
use Attribute;
impl AttrList {
pub fn change(&self, attr: Attribute) {
unsafe {
pango_sys::pango_attr_list_change(
self.to_glib_none().0,
attr.to_glib_none().0 as *mut _,
);
mem::forget(attr); }
}
pub fn insert(&self, attr: Attribute) {
unsafe {
pango_sys::pango_attr_list_insert(
self.to_glib_none().0,
attr.to_glib_none().0 as *mut _,
);
mem::forget(attr); }
}
pub fn insert_before(&self, attr: Attribute) {
unsafe {
pango_sys::pango_attr_list_insert_before(
self.to_glib_none().0,
attr.to_glib_none().0 as *mut _,
);
mem::forget(attr); }
}
}