Trait gtk::prelude::CellRendererToggleExt[][src]

pub trait CellRendererToggleExt: 'static {
Show 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;
}

Required methods

Implementors