pub trait RadioMenuItemExt: 'static {
    // Required methods
    fn group(&self) -> Vec<RadioMenuItem>;
    fn join_group(&self, group_source: Option<&impl IsA<RadioMenuItem>>);
    fn connect_group_changed<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn group(&self) -> Vec<RadioMenuItem>

source

fn join_group(&self, group_source: Option<&impl IsA<RadioMenuItem>>)

source

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

Implementors§