pub trait CellAreaBoxExt: IsA<CellAreaBox> + Sealed + 'static {
    // Provided methods
    fn spacing(&self) -> i32 { ... }
    fn pack_end(
        &self,
        renderer: &impl IsA<CellRenderer>,
        expand: bool,
        align: bool,
        fixed: bool
    ) { ... }
    fn pack_start(
        &self,
        renderer: &impl IsA<CellRenderer>,
        expand: bool,
        align: bool,
        fixed: bool
    ) { ... }
    fn set_spacing(&self, spacing: i32) { ... }
    fn connect_spacing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn spacing(&self) -> i32

source

fn pack_end( &self, renderer: &impl IsA<CellRenderer>, expand: bool, align: bool, fixed: bool )

source

fn pack_start( &self, renderer: &impl IsA<CellRenderer>, expand: bool, align: bool, fixed: bool )

source

fn set_spacing(&self, spacing: i32)

source

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

Implementors§