logo
pub trait DialogExt: 'static {
Show 18 methods fn title(&self) -> Option<GString>; fn set_title(&self, value: &str); fn subtitle(&self) -> Option<GString>; fn set_subtitle(&self, value: &str); fn info(&self) -> Option<GString>; fn set_info(&self, value: &str); fn icon(&self) -> Option<GString>; fn set_icon(&self, value: &str); fn secondary_button(&self) -> Option<TintButton>; fn set_secondary_button(&self, value: &impl IsA<TintButton>); fn primary_button(&self) -> Option<FillButton>; fn set_primary_button(&self, value: &impl IsA<FillButton>); fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_subtitle_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_info_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_icon_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_secondary_button_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_primary_button_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Trait containing all Dialog methods.

Implementors

Dialog

Required Methods

Implementors