logo
pub trait WelcomeScreenExt: 'static {
    fn appname(&self) -> Option<GString>;
    fn set_appname(&self, value: &str);
    fn description(&self) -> Option<GString>;
    fn set_description(&self, value: &str);
    fn connect_appname_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all WelcomeScreen methods.

Implementors

WelcomeScreen

Required Methods

Implementors