Trait gtk4::prelude::CellAreaContextExt

source ·
pub trait CellAreaContextExt: IsA<CellAreaContext> + Sealed + 'static {
Show 18 methods // Provided methods fn allocate(&self, width: i32, height: i32) { ... } fn allocation(&self) -> (i32, i32) { ... } fn area(&self) -> CellArea { ... } fn preferred_height(&self) -> (i32, i32) { ... } fn preferred_height_for_width(&self, width: i32) -> (i32, i32) { ... } fn preferred_width(&self) -> (i32, i32) { ... } fn preferred_width_for_height(&self, height: i32) -> (i32, i32) { ... } fn push_preferred_height(&self, minimum_height: i32, natural_height: i32) { ... } fn push_preferred_width(&self, minimum_width: i32, natural_width: i32) { ... } fn reset(&self) { ... } fn minimum_height(&self) -> i32 { ... } fn minimum_width(&self) -> i32 { ... } fn natural_height(&self) -> i32 { ... } fn natural_width(&self) -> i32 { ... } fn connect_minimum_height_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_minimum_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_natural_height_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_natural_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}
👎Deprecated: Since 4.10

Provided Methods§

source

fn allocate(&self, width: i32, height: i32)

👎Deprecated: Since 4.10
source

fn allocation(&self) -> (i32, i32)

👎Deprecated: Since 4.10
source

fn area(&self) -> CellArea

👎Deprecated: Since 4.10
source

fn preferred_height(&self) -> (i32, i32)

👎Deprecated: Since 4.10
source

fn preferred_height_for_width(&self, width: i32) -> (i32, i32)

👎Deprecated: Since 4.10
source

fn preferred_width(&self) -> (i32, i32)

👎Deprecated: Since 4.10
source

fn preferred_width_for_height(&self, height: i32) -> (i32, i32)

👎Deprecated: Since 4.10
source

fn push_preferred_height(&self, minimum_height: i32, natural_height: i32)

👎Deprecated: Since 4.10
source

fn push_preferred_width(&self, minimum_width: i32, natural_width: i32)

👎Deprecated: Since 4.10
source

fn reset(&self)

👎Deprecated: Since 4.10
source

fn minimum_height(&self) -> i32

👎Deprecated: Since 4.10
source

fn minimum_width(&self) -> i32

👎Deprecated: Since 4.10
source

fn natural_height(&self) -> i32

👎Deprecated: Since 4.10
source

fn natural_width(&self) -> i32

👎Deprecated: Since 4.10
source

fn connect_minimum_height_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

👎Deprecated: Since 4.10
source

fn connect_minimum_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

👎Deprecated: Since 4.10
source

fn connect_natural_height_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

👎Deprecated: Since 4.10
source

fn connect_natural_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

👎Deprecated: Since 4.10

Object Safety§

This trait is not object safe.

Implementors§