gtk::prelude

Trait CellViewExt

Source
pub trait CellViewExt:
    IsA<CellView>
    + Sealed
    + 'static {
Show 21 methods // Provided methods fn displayed_row(&self) -> Option<TreePath> { ... } fn draws_sensitive(&self) -> bool { ... } fn fits_model(&self) -> bool { ... } fn model(&self) -> Option<TreeModel> { ... } fn set_background_rgba(&self, rgba: &RGBA) { ... } fn set_displayed_row(&self, path: &mut TreePath) { ... } fn set_draw_sensitive(&self, draw_sensitive: bool) { ... } fn set_fit_model(&self, fit_model: bool) { ... } fn set_model(&self, model: Option<&impl IsA<TreeModel>>) { ... } fn set_background(&self, background: Option<&str>) { ... } fn background_rgba(&self) -> Option<RGBA> { ... } fn is_background_set(&self) -> bool { ... } fn set_background_set(&self, background_set: bool) { ... } fn cell_area(&self) -> Option<CellArea> { ... } fn cell_area_context(&self) -> Option<CellAreaContext> { ... } fn connect_background_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_background_rgba_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_background_set_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_draw_sensitive_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_fit_model_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_model_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn displayed_row(&self) -> Option<TreePath>

Source

fn draws_sensitive(&self) -> bool

Source

fn fits_model(&self) -> bool

Source

fn model(&self) -> Option<TreeModel>

Source

fn set_background_rgba(&self, rgba: &RGBA)

Source

fn set_displayed_row(&self, path: &mut TreePath)

Source

fn set_draw_sensitive(&self, draw_sensitive: bool)

Source

fn set_fit_model(&self, fit_model: bool)

Source

fn set_model(&self, model: Option<&impl IsA<TreeModel>>)

Source

fn set_background(&self, background: Option<&str>)

Source

fn background_rgba(&self) -> Option<RGBA>

Source

fn is_background_set(&self) -> bool

Source

fn set_background_set(&self, background_set: bool)

Source

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

Source

fn cell_area_context(&self) -> Option<CellAreaContext>

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§