pub trait CellRendererToggleExt: IsA<CellRendererToggle> + Sealed + 'static {
Show 16 methods // Provided methods fn is_activatable(&self) -> bool { ... } fn is_active(&self) -> bool { ... } fn is_radio(&self) -> bool { ... } fn set_activatable(&self, setting: bool) { ... } fn set_active(&self, setting: bool) { ... } fn set_radio(&self, radio: bool) { ... } fn is_inconsistent(&self) -> bool { ... } fn set_inconsistent(&self, inconsistent: bool) { ... } fn indicator_size(&self) -> i32 { ... } fn set_indicator_size(&self, indicator_size: i32) { ... } fn connect_toggled<F: Fn(&Self, TreePath) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_activatable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_active_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_inconsistent_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_indicator_size_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_radio_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn is_activatable(&self) -> bool

source

fn is_active(&self) -> bool

source

fn is_radio(&self) -> bool

source

fn set_activatable(&self, setting: bool)

source

fn set_active(&self, setting: bool)

source

fn set_radio(&self, radio: bool)

source

fn is_inconsistent(&self) -> bool

source

fn set_inconsistent(&self, inconsistent: bool)

source

fn indicator_size(&self) -> i32

source

fn set_indicator_size(&self, indicator_size: i32)

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§