pub trait CellLayoutImplExt: ObjectSubclass {
    // Required methods
    fn parent_add_attribute<R>(
        &self,
        cell_layout: &Self::Type,
        cell: &R,
        attribute: &str,
        column: i32
    )
       where R: IsA<CellRenderer>;
    fn parent_clear_attributes<R>(&self, cell_layout: &Self::Type, cell: &R)
       where R: IsA<CellRenderer>;
    fn parent_cells(
        &self,
        cell_layout: &Self::Type
    ) -> Vec<CellRenderer, Global>;
    fn parent_set_cell_data_func<R>(
        &self,
        cell_layout: &Self::Type,
        cell: &R,
        callback: Option<CellLayoutDataCallback>
    )
       where R: IsA<CellRenderer>;
    fn parent_reorder<R>(
        &self,
        cell_layout: &Self::Type,
        cell: &R,
        position: i32
    )
       where R: IsA<CellRenderer>;
    fn parent_clear(&self, cell_layout: &Self::Type);
    fn parent_pack_start<R>(
        &self,
        cell_layout: &Self::Type,
        cell: &R,
        expand: bool
    )
       where R: IsA<CellRenderer>;
    fn parent_pack_end<R>(
        &self,
        cell_layout: &Self::Type,
        cell: &R,
        expand: bool
    )
       where R: IsA<CellRenderer>;
    fn parent_area(&self, cell_layout: &Self::Type) -> Option<CellArea>;
}

Required Methods§

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§