use crate::{Buildable, Container, Widget, ffi};
use glib::{prelude::*, translate::*};
glib::wrapper! {
#[doc(alias = "GtkBin")]
pub struct Bin(Object<ffi::GtkBin, ffi::GtkBinClass>) @extends Container, Widget, @implements Buildable;
match fn {
type_ => || ffi::gtk_bin_get_type(),
}
}
impl Bin {
pub const NONE: Option<&'static Bin> = None;
}
pub trait BinExt: IsA<Bin> + 'static {
#[doc(alias = "gtk_bin_get_child")]
#[doc(alias = "get_child")]
fn child(&self) -> Option<Widget> {
unsafe { from_glib_none(ffi::gtk_bin_get_child(self.as_ref().to_glib_none().0)) }
}
}
impl<O: IsA<Bin>> BinExt for O {}