pub trait ApplicationWindowExt: 'static {
    fn get_help_overlay(&self) -> Option<ShortcutsWindow>;
    fn get_id(&self) -> u32;
    fn get_show_menubar(&self) -> bool;
    fn set_help_overlay<P: IsA<ShortcutsWindow>>(&self, help_overlay: Option<&P>);
    fn set_show_menubar(&self, show_menubar: bool);
    fn connect_property_show_menubar_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors