pub trait CellLayoutImpl: ObjectImpl {
    // Provided methods
    fn add_attribute<R>(
        &self,
        cell_layout: &Self::Type,
        cell: &R,
        attribute: &str,
        column: i32
    )
       where R: IsA<CellRenderer> { ... }
    fn clear_attributes<R>(&self, cell_layout: &Self::Type, cell: &R)
       where R: IsA<CellRenderer> { ... }
    fn cells(&self, cell_layout: &Self::Type) -> Vec<CellRenderer, Global> { ... }
    fn set_cell_data_func<R>(
        &self,
        cell_layout: &Self::Type,
        cell: &R,
        callback: Option<CellLayoutDataCallback>
    )
       where R: IsA<CellRenderer> { ... }
    fn reorder<R>(&self, cell_layout: &Self::Type, cell: &R, position: i32)
       where R: IsA<CellRenderer> { ... }
    fn clear(&self, cell_layout: &Self::Type) { ... }
    fn pack_start<R>(&self, cell_layout: &Self::Type, cell: &R, expand: bool)
       where R: IsA<CellRenderer> { ... }
    fn pack_end<R>(&self, cell_layout: &Self::Type, cell: &R, expand: bool)
       where R: IsA<CellRenderer> { ... }
    fn area(&self, cell_layout: &Self::Type) -> Option<CellArea> { ... }
}

Provided Methods§

source

fn add_attribute<R>( &self, cell_layout: &Self::Type, cell: &R, attribute: &str, column: i32 )where R: IsA<CellRenderer>,

source

fn clear_attributes<R>(&self, cell_layout: &Self::Type, cell: &R)where R: IsA<CellRenderer>,

source

fn cells(&self, cell_layout: &Self::Type) -> Vec<CellRenderer, Global>

source

fn set_cell_data_func<R>( &self, cell_layout: &Self::Type, cell: &R, callback: Option<CellLayoutDataCallback> )where R: IsA<CellRenderer>,

source

fn reorder<R>(&self, cell_layout: &Self::Type, cell: &R, position: i32)where R: IsA<CellRenderer>,

source

fn clear(&self, cell_layout: &Self::Type)

source

fn pack_start<R>(&self, cell_layout: &Self::Type, cell: &R, expand: bool)where R: IsA<CellRenderer>,

source

fn pack_end<R>(&self, cell_layout: &Self::Type, cell: &R, expand: bool)where R: IsA<CellRenderer>,

source

fn area(&self, cell_layout: &Self::Type) -> Option<CellArea>

Implementors§