]> Pileus Git - ~andy/gtk/blob - gtk/gtkappchooser.c
Coding style fixups
[~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 #include "config.h"
25
26 #include "gtkappchooser.h"
27
28 #include "gtkintl.h"
29 #include "gtkappchooserprivate.h"
30 #include "gtkwidget.h"
31
32 #include <glib.h>
33
34 G_DEFINE_INTERFACE (GtkAppChooser, gtk_app_chooser, GTK_TYPE_WIDGET);
35
36 static void
37 gtk_app_chooser_default_init (GtkAppChooserIface *iface)
38 {
39   GParamSpec *pspec;
40
41   pspec = g_param_spec_string ("content-type",
42                                P_("Content type"),
43                                P_("The content type used by the open with object"),
44                                NULL,
45                                G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
46                                G_PARAM_STATIC_STRINGS);
47   g_object_interface_install_property (iface, pspec);
48 }
49
50 gchar *
51 gtk_app_chooser_get_content_type (GtkAppChooser *self)
52 {
53   gchar *retval = NULL;
54
55   g_return_val_if_fail (GTK_IS_APP_CHOOSER (self), NULL);
56
57   g_object_get (self,
58                 "content-type", &retval,
59                 NULL);
60
61   return retval;
62 }
63
64 /**
65  * gtk_app_chooser_get_app_info:
66  * @self: a #GtkAppChooser
67  *
68  * Returns the currently selected application.
69  *
70  * Returns: (transfer full): a #GAppInfo for the currently selected
71  *     application, or %NULL if none is selected. Free with g_object_unref().
72  *
73  * Since: 3.0
74  */
75 GAppInfo *
76 gtk_app_chooser_get_app_info (GtkAppChooser *self)
77 {
78   return GTK_APP_CHOOSER_GET_IFACE (self)->get_app_info (self);
79 }
80
81 /**
82  * gtk_app_chooser_refresh:
83  * @self: a #GtkAppChooser
84  *
85  * Reload the list of applications.
86  *
87  * Since: 3.0
88  */
89 void
90 gtk_app_chooser_refresh (GtkAppChooser *self)
91 {
92   GTK_APP_CHOOSER_GET_IFACE (self)->refresh (self);
93 }