Trait libhelium::prelude::HeApplicationExt

source ·
pub trait HeApplicationExt: IsA<Application> + Sealed + 'static {
Show 20 methods // Provided methods fn default_accent_color(&self) -> Option<RGBColor> { ... } fn is_override_accent_color(&self) -> bool { ... } fn set_override_accent_color(&self, value: bool) { ... } fn is_override_dark_style(&self) -> bool { ... } fn set_override_dark_style(&self, value: bool) { ... } fn is_override_contrast(&self) -> bool { ... } fn set_override_contrast(&self, value: bool) { ... } fn default_contrast(&self) -> f64 { ... } fn set_default_contrast(&self, value: f64) { ... } fn is_content(&self) -> bool { ... } fn set_is_content(&self, value: bool) { ... } fn is_mono(&self) -> bool { ... } fn set_is_mono(&self, value: bool) { ... } fn connect_default_accent_color_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_override_accent_color_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_override_dark_style_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_override_contrast_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_default_contrast_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_is_content_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_is_mono_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all Application methods.

§Implementors

Application

Provided Methods§

source

fn default_accent_color(&self) -> Option<RGBColor>

source

fn is_override_accent_color(&self) -> bool

source

fn set_override_accent_color(&self, value: bool)

source

fn is_override_dark_style(&self) -> bool

source

fn set_override_dark_style(&self, value: bool)

source

fn is_override_contrast(&self) -> bool

source

fn set_override_contrast(&self, value: bool)

source

fn default_contrast(&self) -> f64

source

fn set_default_contrast(&self, value: f64)

source

fn is_content(&self) -> bool

source

fn set_is_content(&self, value: bool)

source

fn is_mono(&self) -> bool

source

fn set_is_mono(&self, value: bool)

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§