1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright 2013-2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>

use gio::AppInfo;
use glib::object::IsA;
use glib::translate::*;
use gtk_sys;
use Widget;

glib_wrapper! {
    /// `AppChooser` is an interface that can be implemented by widgets which
    /// allow the user to choose an application (typically for the purpose of
    /// opening a file). The main objects that implement this interface are
    /// `AppChooserWidget`, `AppChooserDialog` and `AppChooserButton`.
    ///
    /// Applications are represented by GIO `gio::AppInfo` objects here.
    /// GIO has a concept of recommended and fallback applications for a
    /// given content type. Recommended applications are those that claim
    /// to handle the content type itself, while fallback also includes
    /// applications that handle a more generic content type. GIO also
    /// knows the default and last-used application for a given content
    /// type. The `AppChooserWidget` provides detailed control over
    /// whether the shown list of applications should include default,
    /// recommended or fallback applications.
    ///
    /// To obtain the application that has been selected in a `AppChooser`,
    /// use `AppChooser::get_app_info`.
    ///
    /// # Implements
    ///
    /// [`AppChooserExt`](trait.AppChooserExt.html), [`WidgetExt`](trait.WidgetExt.html), [`glib::object::ObjectExt`](../glib/object/trait.ObjectExt.html), [`BuildableExt`](trait.BuildableExt.html), [`WidgetExtManual`](prelude/trait.WidgetExtManual.html), [`BuildableExtManual`](prelude/trait.BuildableExtManual.html)
    pub struct AppChooser(Interface<gtk_sys::GtkAppChooser>) @requires Widget;

    match fn {
        get_type => || gtk_sys::gtk_app_chooser_get_type(),
    }
}

/// Trait containing all `AppChooser` methods.
///
/// # Implementors
///
/// [`AppChooserButton`](struct.AppChooserButton.html), [`AppChooserDialog`](struct.AppChooserDialog.html), [`AppChooserWidget`](struct.AppChooserWidget.html), [`AppChooser`](struct.AppChooser.html)
pub trait AppChooserExt: 'static {
    /// Returns the currently selected application.
    ///
    /// # Returns
    ///
    /// a `gio::AppInfo` for the currently selected
    ///  application, or `None` if none is selected. Free with `gobject::ObjectExt::unref`
    fn get_app_info(&self) -> Option<AppInfo>;
    /// Returns the current value of the `AppChooser:content-type` property.
    ///
    /// # Returns
    ///
    /// the content type of `self`. Free with `g_free`
    fn get_content_type(&self) -> Option<String>;
    /// Reloads the list of applications.
    fn refresh(&self);
}

impl<O: IsA<AppChooser>> AppChooserExt for O {
    fn get_app_info(&self) -> Option<AppInfo> {
        unsafe {
            from_glib_full(gtk_sys::gtk_app_chooser_get_app_info(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_content_type(&self) -> Option<String> {
        unsafe {
            from_glib_full(gtk_sys::gtk_app_chooser_get_content_type(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn refresh(&self) {
        unsafe { gtk_sys::gtk_app_chooser_refresh(self.as_ref().to_glib_none().0) }
    }
}