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

Provided Methods§

source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

fn clear(&self)

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10

Object Safety§

This trait is not object safe.

Implementors§