pub trait StyleSchemeChooserExt: IsA<StyleSchemeChooser> + Sealed + 'static {
    // Provided methods
    fn style_scheme(&self) -> Option<StyleScheme> { ... }
    fn set_style_scheme(&self, scheme: &impl IsA<StyleScheme>) { ... }
    fn connect_style_scheme_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Provided Methods§

source

fn style_scheme(&self) -> Option<StyleScheme>

Gets the currently-selected scheme.

Returns

the currently-selected scheme.

source

fn set_style_scheme(&self, scheme: &impl IsA<StyleScheme>)

Sets the scheme.

scheme

a StyleScheme

source

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

Object Safety§

This trait is not object safe.

Implementors§