pub trait RadioMenuItemExt: IsA<RadioMenuItem> + Sealed + 'static {
    // Provided 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 { ... }
}

Provided 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§