Trait gtk::BoxExt [] [src]

pub trait BoxExt {
    fn get_homogeneous(&self) -> bool;
    fn get_spacing(&self) -> i32;
    fn pack_end<T: IsA<Widget>>(&self,
                                child: &T,
                                expand: bool,
                                fill: bool,
                                padding: u32); fn pack_start<T: IsA<Widget>>(&self,
                                  child: &T,
                                  expand: bool,
                                  fill: bool,
                                  padding: u32); fn query_child_packing<T: IsA<Widget>>(&self,
                                           child: &T)
                                           -> (bool, bool, u32, PackType); fn reorder_child<T: IsA<Widget>>(&self, child: &T, position: i32); fn set_child_packing<T: IsA<Widget>>(&self,
                                         child: &T,
                                         expand: bool,
                                         fill: bool,
                                         padding: u32,
                                         pack_type: PackType); fn set_homogeneous(&self, homogeneous: bool); fn set_spacing(&self, spacing: i32); fn get_child_position<T: IsA<Widget>>(&self, item: &T) -> i32; fn set_child_position<T: IsA<Widget>>(&self, item: &T, position: i32); }

Required Methods

Implementors