pub trait FlowBoxChildExt: IsA<FlowBoxChild> + Sealed + 'static {
    // Provided methods
    fn changed(&self) { ... }
    fn index(&self) -> i32 { ... }
    fn is_selected(&self) -> bool { ... }
    fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
    fn emit_activate(&self) { ... }
}

Provided Methods§

source

fn changed(&self)

source

fn index(&self) -> i32

source

fn is_selected(&self) -> bool

source

fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn emit_activate(&self)

Implementors§