Trait sourceview5::prelude::CellLayoutExt

source ·
pub trait CellLayoutExt: IsA<CellLayout> + Sealed + 'static {
    // Provided methods
    fn add_attribute(
        &self,
        cell: &impl IsA<CellRenderer>,
        attribute: &str,
        column: i32,
    ) { ... }
    fn clear(&self) { ... }
    fn clear_attributes(&self, cell: &impl IsA<CellRenderer>) { ... }
    fn area(&self) -> Option<CellArea> { ... }
    fn cells(&self) -> Vec<CellRenderer> { ... }
    fn pack_end(&self, cell: &impl IsA<CellRenderer>, expand: bool) { ... }
    fn pack_start(&self, cell: &impl IsA<CellRenderer>, expand: bool) { ... }
    fn reorder(&self, cell: &impl IsA<CellRenderer>, position: i32) { ... }
    fn set_cell_data_func<P>(&self, cell: &impl IsA<CellRenderer>, func: P)
       where P: Fn(&CellLayout, &CellRenderer, &TreeModel, &TreeIter) + 'static { ... }
}
👎Deprecated: Since 4.10

Provided Methods§

source

fn add_attribute( &self, cell: &impl IsA<CellRenderer>, attribute: &str, column: i32, )

👎Deprecated: Since 4.10
source

fn clear(&self)

👎Deprecated: Since 4.10
source

fn clear_attributes(&self, cell: &impl IsA<CellRenderer>)

👎Deprecated: Since 4.10
source

fn area(&self) -> Option<CellArea>

👎Deprecated: Since 4.10
source

fn cells(&self) -> Vec<CellRenderer>

👎Deprecated: Since 4.10
source

fn pack_end(&self, cell: &impl IsA<CellRenderer>, expand: bool)

👎Deprecated: Since 4.10
source

fn pack_start(&self, cell: &impl IsA<CellRenderer>, expand: bool)

👎Deprecated: Since 4.10
source

fn reorder(&self, cell: &impl IsA<CellRenderer>, position: i32)

👎Deprecated: Since 4.10
source

fn set_cell_data_func<P>(&self, cell: &impl IsA<CellRenderer>, func: P)
where P: Fn(&CellLayout, &CellRenderer, &TreeModel, &TreeIter) + 'static,

👎Deprecated: Since 4.10

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> CellLayoutExt for O
where O: IsA<CellLayout>,