Trait gtk::prelude::AppChooserWidgetExt[][src]

pub trait AppChooserWidgetExt: 'static {
Show 21 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;
}

Required methods

Implementors