use ffi;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::fmt;
use std::mem;
use std::ptr;
glib_wrapper! {
pub struct Color(Boxed<ffi::PangoColor>);
match fn {
copy => |ptr| ffi::pango_color_copy(mut_override(ptr)),
free => |ptr| ffi::pango_color_free(ptr),
get_type => || ffi::pango_color_get_type(),
}
}
impl Color {
pub fn parse(&mut self, spec: &str) -> bool {
unsafe {
from_glib(ffi::pango_color_parse(self.to_glib_none_mut().0, spec.to_glib_none().0))
}
}
fn to_string(&self) -> String {
unsafe {
from_glib_full(ffi::pango_color_to_string(self.to_glib_none().0))
}
}
}
impl fmt::Display for Color {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.to_string())
}
}