Trait libhelium::prelude::WelcomeScreenExt
source · pub trait WelcomeScreenExt: IsA<WelcomeScreen> + Sealed + 'static {
// Provided methods
fn add_child(
&self,
builder: &Builder,
child: &impl IsA<Object>,
type_: Option<&str>,
) { ... }
fn appname(&self) -> GString { ... }
fn set_appname(&self, value: &str) { ... }
fn description(&self) -> 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
Provided Methods§
sourcefn add_child(
&self,
builder: &Builder,
child: &impl IsA<Object>,
type_: Option<&str>,
)
fn add_child( &self, builder: &Builder, child: &impl IsA<Object>, type_: Option<&str>, )
fn appname(&self) -> GString
fn set_appname(&self, value: &str)
fn description(&self) -> 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
Object Safety§
This trait is not object safe.