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 { ... }
}
Expand description

Trait containing all EmptyPage methods.

§Implementors

EmptyPage

Provided Methods§

source

fn title(&self) -> GString

source

fn set_title(&self, value: &str)

source

fn description(&self) -> GString

source

fn set_description(&self, value: &str)

source

fn icon(&self) -> GString

source

fn set_icon(&self, value: &str)

source

fn set_resource(&self, value: &str)

source

fn button(&self) -> GString

source

fn set_button(&self, value: &str)

source

fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_description_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_icon_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_resource_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_button_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<EmptyPage>> EmptyPageExt for O