pub trait AppChooserExt: 'static {
    fn app_info(&self) -> Option<AppInfo>;
    fn content_type(&self) -> Option<String>;
    fn refresh(&self);
}
Expand description

Required Methods

Returns the currently selected application.

Returns

a gio::AppInfo for the currently selected application, or None if none is selected. Free with g_object_unref()

Returns the current value of the property::AppChooser::content-type property.

Returns

the content type of self. Free with g_free()

Reloads the list of applications.

Implementors