Trait libhelium::prelude::EmptyPageExt
source · pub trait EmptyPageExt: IsA<EmptyPage> + Sealed + 'static {
Show 14 methods
// Provided methods
fn title(&self) -> GString { ... }
fn set_title(&self, value: &str) { ... }
fn description(&self) -> GString { ... }
fn set_description(&self, value: &str) { ... }
fn icon(&self) -> GString { ... }
fn set_icon(&self, value: &str) { ... }
fn set_resource(&self, value: &str) { ... }
fn button(&self) -> GString { ... }
fn set_button(&self, value: &str) { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_description_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_icon_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_resource_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_button_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
fn title(&self) -> GString
fn set_title(&self, value: &str)
fn description(&self) -> GString
fn set_description(&self, value: &str)
fn icon(&self) -> GString
fn set_icon(&self, value: &str)
fn set_resource(&self, value: &str)
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_description_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_icon_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_resource_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.