Trait gtk::prelude::ButtonBoxExt[][src]

pub trait ButtonBoxExt: 'static {
    fn child_is_non_homogeneous<P: IsA<Widget>>(&self, child: &P) -> bool;
fn child_is_secondary<P: IsA<Widget>>(&self, child: &P) -> bool;
fn layout(&self) -> ButtonBoxStyle;
fn set_child_non_homogeneous<P: IsA<Widget>>(
        &self,
        child: &P,
        non_homogeneous: bool
    );
fn set_child_secondary<P: IsA<Widget>>(&self, child: &P, is_secondary: bool);
fn set_layout(&self, layout_style: ButtonBoxStyle);
fn layout_style(&self) -> ButtonBoxStyle;
fn set_layout_style(&self, layout_style: ButtonBoxStyle);
fn connect_layout_style_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

Implementors