logo
pub trait EmptyPageExt: 'static {
    fn title(&self) -> Option<GString>;
    fn set_title(&self, value: &str);
    fn description(&self) -> Option<GString>;
    fn set_description(&self, value: &str);
    fn icon(&self) -> Option<GString>;
    fn set_icon(&self, value: &str);
    fn button(&self) -> Option<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_button_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all EmptyPage methods.

Implementors

EmptyPage

Required Methods

Implementors