Trait gtk::BoxExt [] [src]

pub trait BoxExt {
    fn get_homogeneous(&self) -> bool;
fn get_spacing(&self) -> i32;
fn pack_end<P: IsA<Widget>>(
        &self,
        child: &P,
        expand: bool,
        fill: bool,
        padding: u32
    );
fn pack_start<P: IsA<Widget>>(
        &self,
        child: &P,
        expand: bool,
        fill: bool,
        padding: u32
    );
fn query_child_packing<P: IsA<Widget>>(
        &self,
        child: &P
    ) -> (bool, bool, u32, PackType);
fn reorder_child<P: IsA<Widget>>(&self, child: &P, position: i32);
fn set_child_packing<P: IsA<Widget>>(
        &self,
        child: &P,
        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);
fn connect_property_homogeneous_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors