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 43
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use crate::ffi;
use glib::translate::*;
glib::wrapper! {
/// The [`Color`][crate::Color] structure is used to
/// represent a color in an uncalibrated RGB color-space.
pub struct Color(BoxedInline<ffi::PangoColor>);
match fn {
copy => |ptr| ffi::pango_color_copy(ptr),
free => |ptr| ffi::pango_color_free(ptr),
type_ => || ffi::pango_color_get_type(),
}
}
impl Color {
/// Returns a textual specification of @self.
///
/// The string is in the hexadecimal form `#rrrrggggbbbb`,
/// where `r`, `g` and `b` are hex digits representing the
/// red, green, and blue components respectively.
///
/// # Returns
///
/// a newly-allocated text string that must
/// be freed with g_free().
#[doc(alias = "pango_color_to_string")]
#[doc(alias = "to_string")]
pub fn to_str(&self) -> glib::GString {
unsafe { from_glib_full(ffi::pango_color_to_string(self.to_glib_none().0)) }
}
}
impl std::fmt::Display for Color {
#[inline]
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.write_str(&self.to_str())
}
}