logo
pub trait HeApplicationExt: 'static {
    fn default_accent_color(&self) -> Option<ColorRGBColor>;
    fn set_accent_color(&self, accent_color: Option<&ColorRGBColor>);
    fn set_foreground(&self, foreground: Option<&ColorRGBColor>);
    fn set_accent_foreground(&self, accent_foreground: Option<&ColorRGBColor>);
    fn connect_default_accent_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_accent_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_foreground_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_accent_foreground_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all Application methods.

Implementors

Application

Required Methods

Implementors