use Adjustment;
use Object;
use ResizeMode;
use Widget;
use cairo;
use ffi;
use glib;
use glib::object::Downcast;
use glib::object::IsA;
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use std::boxed::Box as Box_;
use std::mem::transmute;
glib_wrapper! {
pub struct Container(Object<ffi::GtkContainer>): Widget;
match fn {
get_type => || ffi::gtk_container_get_type(),
}
}
pub trait ContainerExt {
fn add<T: IsA<Widget>>(&self, widget: &T);
fn check_resize(&self);
fn child_notify<T: IsA<Widget>>(&self, child: &T, child_property: &str);
fn child_type(&self) -> glib::types::Type;
fn get_border_width(&self) -> u32;
fn get_children(&self) -> Vec<Widget>;
fn get_focus_child(&self) -> Option<Widget>;
fn get_focus_hadjustment(&self) -> Option<Adjustment>;
fn get_focus_vadjustment(&self) -> Option<Adjustment>;
fn get_resize_mode(&self) -> ResizeMode;
fn propagate_draw<T: IsA<Widget>>(&self, child: &T, cr: &cairo::Context);
fn remove<T: IsA<Widget>>(&self, widget: &T);
fn resize_children(&self);
fn set_border_width(&self, border_width: u32);
fn set_focus_chain(&self, focusable_widgets: &[Widget]);
fn set_focus_child<T: IsA<Widget>>(&self, child: Option<&T>);
fn set_focus_hadjustment(&self, adjustment: &Adjustment);
fn set_focus_vadjustment(&self, adjustment: &Adjustment);
fn set_reallocate_redraws(&self, needs_redraws: bool);
fn set_resize_mode(&self, resize_mode: ResizeMode);
fn unset_focus_chain(&self);
fn connect_add<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> u64;
fn connect_check_resize<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
fn connect_remove<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> u64;
fn connect_set_focus_child<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> u64;
}
impl<O: IsA<Container> + IsA<Object>> ContainerExt for O {
fn add<T: IsA<Widget>>(&self, widget: &T) {
unsafe {
ffi::gtk_container_add(self.to_glib_none().0, widget.to_glib_none().0);
}
}
fn check_resize(&self) {
unsafe {
ffi::gtk_container_check_resize(self.to_glib_none().0);
}
}
fn child_notify<T: IsA<Widget>>(&self, child: &T, child_property: &str) {
unsafe {
ffi::gtk_container_child_notify(self.to_glib_none().0, child.to_glib_none().0, child_property.to_glib_none().0);
}
}
fn child_type(&self) -> glib::types::Type {
unsafe {
from_glib(ffi::gtk_container_child_type(self.to_glib_none().0))
}
}
fn get_border_width(&self) -> u32 {
unsafe {
ffi::gtk_container_get_border_width(self.to_glib_none().0)
}
}
fn get_children(&self) -> Vec<Widget> {
unsafe {
FromGlibPtrContainer::from_glib_container(ffi::gtk_container_get_children(self.to_glib_none().0))
}
}
fn get_focus_child(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_container_get_focus_child(self.to_glib_none().0))
}
}
fn get_focus_hadjustment(&self) -> Option<Adjustment> {
unsafe {
from_glib_none(ffi::gtk_container_get_focus_hadjustment(self.to_glib_none().0))
}
}
fn get_focus_vadjustment(&self) -> Option<Adjustment> {
unsafe {
from_glib_none(ffi::gtk_container_get_focus_vadjustment(self.to_glib_none().0))
}
}
fn get_resize_mode(&self) -> ResizeMode {
unsafe {
from_glib(ffi::gtk_container_get_resize_mode(self.to_glib_none().0))
}
}
fn propagate_draw<T: IsA<Widget>>(&self, child: &T, cr: &cairo::Context) {
unsafe {
ffi::gtk_container_propagate_draw(self.to_glib_none().0, child.to_glib_none().0, mut_override(cr.to_glib_none().0));
}
}
fn remove<T: IsA<Widget>>(&self, widget: &T) {
unsafe {
ffi::gtk_container_remove(self.to_glib_none().0, widget.to_glib_none().0);
}
}
fn resize_children(&self) {
unsafe {
ffi::gtk_container_resize_children(self.to_glib_none().0);
}
}
fn set_border_width(&self, border_width: u32) {
unsafe {
ffi::gtk_container_set_border_width(self.to_glib_none().0, border_width);
}
}
fn set_focus_chain(&self, focusable_widgets: &[Widget]) {
unsafe {
ffi::gtk_container_set_focus_chain(self.to_glib_none().0, focusable_widgets.to_glib_none().0);
}
}
fn set_focus_child<T: IsA<Widget>>(&self, child: Option<&T>) {
unsafe {
ffi::gtk_container_set_focus_child(self.to_glib_none().0, child.to_glib_none().0);
}
}
fn set_focus_hadjustment(&self, adjustment: &Adjustment) {
unsafe {
ffi::gtk_container_set_focus_hadjustment(self.to_glib_none().0, adjustment.to_glib_none().0);
}
}
fn set_focus_vadjustment(&self, adjustment: &Adjustment) {
unsafe {
ffi::gtk_container_set_focus_vadjustment(self.to_glib_none().0, adjustment.to_glib_none().0);
}
}
fn set_reallocate_redraws(&self, needs_redraws: bool) {
unsafe {
ffi::gtk_container_set_reallocate_redraws(self.to_glib_none().0, needs_redraws.to_glib());
}
}
fn set_resize_mode(&self, resize_mode: ResizeMode) {
unsafe {
ffi::gtk_container_set_resize_mode(self.to_glib_none().0, resize_mode.to_glib());
}
}
fn unset_focus_chain(&self) {
unsafe {
ffi::gtk_container_unset_focus_chain(self.to_glib_none().0);
}
}
fn connect_add<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &Widget) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "add",
transmute(add_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
fn connect_check_resize<F: Fn(&Self) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "check-resize",
transmute(check_resize_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
fn connect_remove<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &Widget) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "remove",
transmute(remove_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
fn connect_set_focus_child<F: Fn(&Self, &Widget) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &Widget) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "set-focus-child",
transmute(set_focus_child_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
}
unsafe extern "C" fn add_trampoline<T>(this: *mut ffi::GtkContainer, object: *mut ffi::GtkWidget, f: glib_ffi::gpointer)
where T: IsA<Container> {
callback_guard!();
let f: &Box_<Fn(&T, &Widget) + 'static> = transmute(f);
f(&Container::from_glib_none(this).downcast_unchecked(), &from_glib_none(object))
}
unsafe extern "C" fn check_resize_trampoline<T>(this: *mut ffi::GtkContainer, f: glib_ffi::gpointer)
where T: IsA<Container> {
callback_guard!();
let f: &Box_<Fn(&T) + 'static> = transmute(f);
f(&Container::from_glib_none(this).downcast_unchecked())
}
unsafe extern "C" fn remove_trampoline<T>(this: *mut ffi::GtkContainer, object: *mut ffi::GtkWidget, f: glib_ffi::gpointer)
where T: IsA<Container> {
callback_guard!();
let f: &Box_<Fn(&T, &Widget) + 'static> = transmute(f);
f(&Container::from_glib_none(this).downcast_unchecked(), &from_glib_none(object))
}
unsafe extern "C" fn set_focus_child_trampoline<T>(this: *mut ffi::GtkContainer, object: *mut ffi::GtkWidget, f: glib_ffi::gpointer)
where T: IsA<Container> {
callback_guard!();
let f: &Box_<Fn(&T, &Widget) + 'static> = transmute(f);
f(&Container::from_glib_none(this).downcast_unchecked(), &from_glib_none(object))
}