Trait GtkApplicationExt

Source
pub trait GtkApplicationExt: 'static {
Show 26 methods // Required methods fn add_window<P: IsA<Window>>(&self, window: &P); fn get_accels_for_action(&self, detailed_action_name: &str) -> Vec<GString>; fn get_actions_for_accel(&self, accel: &str) -> Vec<GString>; fn get_active_window(&self) -> Option<Window>; fn get_app_menu(&self) -> Option<MenuModel>; fn get_menu_by_id(&self, id: &str) -> Option<Menu>; fn get_menubar(&self) -> Option<MenuModel>; fn get_window_by_id(&self, id: u32) -> Option<Window>; fn get_windows(&self) -> Vec<Window>; fn inhibit<P: IsA<Window>>( &self, window: Option<&P>, flags: ApplicationInhibitFlags, reason: Option<&str>, ) -> u32; fn is_inhibited(&self, flags: ApplicationInhibitFlags) -> bool; fn list_action_descriptions(&self) -> Vec<GString>; fn prefers_app_menu(&self) -> bool; fn remove_window<P: IsA<Window>>(&self, window: &P); fn set_accels_for_action(&self, detailed_action_name: &str, accels: &[&str]); fn set_app_menu<P: IsA<MenuModel>>(&self, app_menu: Option<&P>); fn set_menubar<P: IsA<MenuModel>>(&self, menubar: Option<&P>); fn uninhibit(&self, cookie: u32); fn get_property_register_session(&self) -> bool; fn set_property_register_session(&self, register_session: bool); fn connect_window_added<F: Fn(&Self, &Window) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_window_removed<F: Fn(&Self, &Window) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_active_window_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_app_menu_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_menubar_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_register_session_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId;
}

Required Methods§

Source

fn add_window<P: IsA<Window>>(&self, window: &P)

Source

fn get_accels_for_action(&self, detailed_action_name: &str) -> Vec<GString>

Source

fn get_actions_for_accel(&self, accel: &str) -> Vec<GString>

Source

fn get_active_window(&self) -> Option<Window>

Source

fn get_app_menu(&self) -> Option<MenuModel>

Source

fn get_menu_by_id(&self, id: &str) -> Option<Menu>

Source

fn get_menubar(&self) -> Option<MenuModel>

Source

fn get_window_by_id(&self, id: u32) -> Option<Window>

Source

fn get_windows(&self) -> Vec<Window>

Source

fn inhibit<P: IsA<Window>>( &self, window: Option<&P>, flags: ApplicationInhibitFlags, reason: Option<&str>, ) -> u32

Source

fn is_inhibited(&self, flags: ApplicationInhibitFlags) -> bool

Source

fn list_action_descriptions(&self) -> Vec<GString>

Source

fn prefers_app_menu(&self) -> bool

Source

fn remove_window<P: IsA<Window>>(&self, window: &P)

Source

fn set_accels_for_action(&self, detailed_action_name: &str, accels: &[&str])

Source

fn set_app_menu<P: IsA<MenuModel>>(&self, app_menu: Option<&P>)

Source

fn set_menubar<P: IsA<MenuModel>>(&self, menubar: Option<&P>)

Source

fn uninhibit(&self, cookie: u32)

Source

fn get_property_register_session(&self) -> bool

Source

fn set_property_register_session(&self, register_session: bool)

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§