pub trait AppChooserWidgetExt: IsA<AppChooserWidget> + Sealed + 'static {
Show 21 methods // Provided methods fn default_text(&self) -> Option<GString> { ... } fn shows_all(&self) -> bool { ... } fn shows_default(&self) -> bool { ... } fn shows_fallback(&self) -> bool { ... } fn shows_other(&self) -> bool { ... } fn shows_recommended(&self) -> bool { ... } fn set_default_text(&self, text: &str) { ... } fn set_show_all(&self, setting: bool) { ... } fn set_show_default(&self, setting: bool) { ... } fn set_show_fallback(&self, setting: bool) { ... } fn set_show_other(&self, setting: bool) { ... } fn set_show_recommended(&self, setting: bool) { ... } fn connect_application_activated<F: Fn(&Self, &AppInfo) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_application_selected<F: Fn(&Self, &AppInfo) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_populate_popup<F: Fn(&Self, &Menu, &AppInfo) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_default_text_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_show_all_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_show_default_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_show_fallback_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_show_other_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_show_recommended_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn default_text(&self) -> Option<GString>

source

fn shows_all(&self) -> bool

source

fn shows_default(&self) -> bool

source

fn shows_fallback(&self) -> bool

source

fn shows_other(&self) -> bool

source

fn set_default_text(&self, text: &str)

source

fn set_show_all(&self, setting: bool)

source

fn set_show_default(&self, setting: bool)

source

fn set_show_fallback(&self, setting: bool)

source

fn set_show_other(&self, setting: bool)

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§