use Builder;
use ffi;
use glib;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib_wrapper! {
pub struct Buildable(Interface<ffi::GtkBuildable>);
match fn {
get_type => || ffi::gtk_buildable_get_type(),
}
}
pub const NONE_BUILDABLE: Option<&Buildable> = None;
pub trait BuildableExt: 'static {
fn add_child<'a, P: IsA<Builder>, Q: IsA<glib::Object>, R: Into<Option<&'a str>>>(&self, builder: &P, child: &Q, type_: R);
fn construct_child<P: IsA<Builder>>(&self, builder: &P, name: &str) -> Option<glib::Object>;
fn get_internal_child<P: IsA<Builder>>(&self, builder: &P, childname: &str) -> Option<glib::Object>;
fn parser_finished<P: IsA<Builder>>(&self, builder: &P);
fn set_buildable_property<P: IsA<Builder>>(&self, builder: &P, name: &str, value: &glib::Value);
}
impl<O: IsA<Buildable>> BuildableExt for O {
fn add_child<'a, P: IsA<Builder>, Q: IsA<glib::Object>, R: Into<Option<&'a str>>>(&self, builder: &P, child: &Q, type_: R) {
let type_ = type_.into();
unsafe {
ffi::gtk_buildable_add_child(self.as_ref().to_glib_none().0, builder.as_ref().to_glib_none().0, child.as_ref().to_glib_none().0, type_.to_glib_none().0);
}
}
fn construct_child<P: IsA<Builder>>(&self, builder: &P, name: &str) -> Option<glib::Object> {
unsafe {
from_glib_full(ffi::gtk_buildable_construct_child(self.as_ref().to_glib_none().0, builder.as_ref().to_glib_none().0, name.to_glib_none().0))
}
}
fn get_internal_child<P: IsA<Builder>>(&self, builder: &P, childname: &str) -> Option<glib::Object> {
unsafe {
from_glib_none(ffi::gtk_buildable_get_internal_child(self.as_ref().to_glib_none().0, builder.as_ref().to_glib_none().0, childname.to_glib_none().0))
}
}
fn parser_finished<P: IsA<Builder>>(&self, builder: &P) {
unsafe {
ffi::gtk_buildable_parser_finished(self.as_ref().to_glib_none().0, builder.as_ref().to_glib_none().0);
}
}
fn set_buildable_property<P: IsA<Builder>>(&self, builder: &P, name: &str, value: &glib::Value) {
unsafe {
ffi::gtk_buildable_set_buildable_property(self.as_ref().to_glib_none().0, builder.as_ref().to_glib_none().0, name.to_glib_none().0, value.to_glib_none().0);
}
}
}
impl fmt::Display for Buildable {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Buildable")
}
}