pub trait CellAreaContextImpl: CellAreaContextImplExt + ObjectImpl {
    fn reset(&self, cell_area_context: &Self::Type) { ... }
    fn preferred_height_for_width(
        &self,
        cell_area_context: &Self::Type,
        width: i32
    ) -> (i32, i32) { ... } fn preferred_width_for_height(
        &self,
        cell_area_context: &Self::Type,
        height: i32
    ) -> (i32, i32) { ... } fn allocate(&self, cell_area_context: &Self::Type, width: i32, height: i32) { ... } }

Provided methods

Implementors