pub trait CheckMenuItemExt: 'static {
    // Required methods
    fn is_active(&self) -> bool;
    fn draws_as_radio(&self) -> bool;
    fn is_inconsistent(&self) -> bool;
    fn set_active(&self, is_active: bool);
    fn set_draw_as_radio(&self, draw_as_radio: bool);
    fn set_inconsistent(&self, setting: bool);
    fn toggled(&self);
    fn connect_toggled<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_active_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_draw_as_radio_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_inconsistent_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn is_active(&self) -> bool

source

fn draws_as_radio(&self) -> bool

source

fn is_inconsistent(&self) -> bool

source

fn set_active(&self, is_active: bool)

source

fn set_draw_as_radio(&self, draw_as_radio: bool)

source

fn set_inconsistent(&self, setting: bool)

source

fn toggled(&self)

source

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

source

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

source

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

source

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

Implementors§