logo
pub trait ApplicationWindowExt: 'static {
    fn is_modal(&self) -> bool;
    fn set_modal(&self, value: bool);
    fn has_title(&self) -> bool;
    fn set_has_title(&self, value: bool);
    fn has_back_button(&self) -> bool;
    fn set_has_back_button(&self, value: bool);
    fn connect_modal_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_has_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_has_back_button_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all ApplicationWindow methods.

Implementors

ApplicationWindow

Required Methods

Implementors