]> Pileus Git - ~andy/gtk/blob - gtk/gtkappchooser.c
Merge branch 'bgo593793-filechooser-recent-folders-master'
[~andy/gtk] / gtk / gtkappchooser.c
1 /*
2  * gtkappchooser.c: app-chooser interface
3  *
4  * Copyright (C) 2010 Red Hat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with the Gnome Library; see the file COPYING.LIB.  If not,
18  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Authors: Cosimo Cecchi <ccecchi@redhat.com>
22  */
23
24 /**
25  * SECTION:gtkappchooser
26  * @Title: GtkAppChooser
27  * @Short_description: Interface implemented by widgets for choosing an application
28  * @See_also: #GAppInfo
29  *
30  * #GtkAppChooser is an interface that can be implemented by widgets which
31  * allow the user to choose an application (typically for the purpose of
32  * opening a file). The main objects that implement this interface are
33  * #GtkAppChooserWidget, #GtkAppChooserDialog and #GtkAppChooserButton.
34  *
35  * Applications are represented by GIO #GAppInfo objects here.
36  * GIO has a concept of recommended and fallback applications for a
37  * given content type. Recommended applications are those that claim
38  * to handle the content type itself, while fallback also includes
39  * applications that handle a more generic content type. GIO also
40  * knows the default and last-used application for a given content
41  * type. The #GtkAppChooserWidget provides detailed control over
42  * whether the shown list of applications should include default,
43  * recommended or fallback applications.
44  *
45  * To obtain the application that has been selected in a #GtkAppChooser,
46  * use gtk_app_chooser_get_app_info().
47  */
48
49 #include "config.h"
50
51 #include "gtkappchooser.h"
52
53 #include "gtkintl.h"
54 #include "gtkappchooserprivate.h"
55 #include "gtkwidget.h"
56
57 #include <glib.h>
58
59 G_DEFINE_INTERFACE (GtkAppChooser, gtk_app_chooser, GTK_TYPE_WIDGET);
60
61 static void
62 gtk_app_chooser_default_init (GtkAppChooserIface *iface)
63 {
64   GParamSpec *pspec;
65
66   /**
67    * GtkAppChooser:content-type:
68    *
69    * The content type of the #GtkAppChooser object.
70    *
71    * See <link linkend="gio-GContentType"><type>GContentType</type></link>
72    * for more information about content types.
73    */
74   pspec = g_param_spec_string ("content-type",
75                                P_("Content type"),
76                                P_("The content type used by the open with object"),
77                                NULL,
78                                G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
79                                G_PARAM_STATIC_STRINGS);
80   g_object_interface_install_property (iface, pspec);
81 }
82
83
84 /**
85  * gtk_app_chooser_get_content_type:
86  * @self: a #GtkAppChooser
87  *
88  * Returns the current value of the #GtkAppChooser:content-type property.
89  *
90  * Returns: the content type of @self. Free with g_free()
91  *
92  * Since: 3.0
93  */
94 gchar *
95 gtk_app_chooser_get_content_type (GtkAppChooser *self)
96 {
97   gchar *retval = NULL;
98
99   g_return_val_if_fail (GTK_IS_APP_CHOOSER (self), NULL);
100
101   g_object_get (self,
102                 "content-type", &retval,
103                 NULL);
104
105   return retval;
106 }
107
108 /**
109  * gtk_app_chooser_get_app_info:
110  * @self: a #GtkAppChooser
111  *
112  * Returns the currently selected application.
113  *
114  * Returns: (transfer full): a #GAppInfo for the currently selected
115  *     application, or %NULL if none is selected. Free with g_object_unref()
116  *
117  * Since: 3.0
118  */
119 GAppInfo *
120 gtk_app_chooser_get_app_info (GtkAppChooser *self)
121 {
122   return GTK_APP_CHOOSER_GET_IFACE (self)->get_app_info (self);
123 }
124
125 /**
126  * gtk_app_chooser_refresh:
127  * @self: a #GtkAppChooser
128  *
129  * Reloads the list of applications.
130  *
131  * Since: 3.0
132  */
133 void
134 gtk_app_chooser_refresh (GtkAppChooser *self)
135 {
136   GTK_APP_CHOOSER_GET_IFACE (self)->refresh (self);
137 }