pub trait FlowBoxChildExt: 'static {
    fn changed(&self);
    fn child(&self) -> Option<Widget>;
    fn index(&self) -> i32;
    fn is_selected(&self) -> bool;
    fn set_child(&self, child: Option<&impl IsA<Widget>>);
    fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn emit_activate(&self);
    fn connect_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

Implementors