Trait libhelium::prelude::ChipGroupExt

source ·
pub trait ChipGroupExt: IsA<ChipGroup> + Sealed + 'static {
    // Provided methods
    fn selection_model(&self) -> SingleSelection { ... }
    fn set_selection_model(&self, value: &SingleSelection) { ... }
    fn is_single_line(&self) -> bool { ... }
    fn set_single_line(&self, value: bool) { ... }
    fn connect_selection_model_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_single_line_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all ChipGroup methods.

§Implementors

ChipGroup

Provided Methods§

source

fn selection_model(&self) -> SingleSelection

source

fn set_selection_model(&self, value: &SingleSelection)

source

fn is_single_line(&self) -> bool

source

fn set_single_line(&self, value: bool)

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<ChipGroup>> ChipGroupExt for O