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
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
Object Safety§
This trait is not object safe.