Trait gtk4::subclass::cell_layout::CellLayoutImpl

source ยท
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ยง