Trait sourceview5::prelude::FlowBoxChildExt

source ·
pub trait FlowBoxChildExt: IsA<FlowBoxChild> + Sealed + 'static {
    // Provided methods
    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>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn emit_activate(&self) { ... }
    fn connect_child_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn changed(&self)

source

fn child(&self) -> Option<Widget>

source

fn index(&self) -> i32

source

fn is_selected(&self) -> bool

source

fn set_child(&self, child: Option<&impl IsA<Widget>>)

source

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

source

fn emit_activate(&self)

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> FlowBoxChildExt for O
where O: IsA<FlowBoxChild>,