Trait gtk::AppChooserWidgetExt [] [src]

pub trait AppChooserWidgetExt {
    fn get_default_text(&self) -> Option<String>;
    fn get_show_all(&self) -> bool;
    fn get_show_default(&self) -> bool;
    fn get_show_fallback(&self) -> bool;
    fn get_show_other(&self) -> bool;
    fn get_show_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
    ) -> u64; fn connect_application_selected<F: Fn(&Self, &AppInfo) + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_populate_popup<F: Fn(&Self, &Menu, &AppInfo) + 'static>(
        &self,
        f: F
    ) -> u64; }

Required Methods

Implementors