summaryrefslogtreecommitdiff
path: root/gtk/gtkappchooseronline.c
blob: 68e50208f39aa8808c592ab3cbd4e6a45f685d8f (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
 * gtkappchooseronline.h: an extension point for online integration
 *
 * Copyright (C) 2010 Red Hat, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with the Gnome Library; see the file COPYING.LIB.  If not,
 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Authors: Cosimo Cecchi <ccecchi@redhat.com>
 */

#include <config.h>

#include "gtkappchooseronline.h"

#include "gtkappchooseronlinedummy.h"
#include "gtkappchoosermodule.h"

#include <gio/gio.h>

G_DEFINE_INTERFACE (GtkAppChooserOnline, gtk_app_chooser_online, G_TYPE_OBJECT);

static void
gtk_app_chooser_online_default_init (GtkAppChooserOnlineInterface *iface)
{
  /* do nothing */
}

GtkAppChooserOnline *
gtk_app_chooser_online_get_default (void)
{
  GIOExtensionPoint *ep;
  GIOExtension *extension;
  GList *extensions;
  GtkAppChooserOnline *retval;

  _gtk_app_chooser_module_ensure ();

  ep = g_io_extension_point_lookup ("gtkappchooser-online");
  extensions = g_io_extension_point_get_extensions (ep);

  if (extensions != NULL)
    {
      /* pick the first */
      extension = extensions->data;
      retval = g_object_new (g_io_extension_get_type (extension),
			     NULL);
    }
  else
    {
      retval = g_object_new (GTK_TYPE_APP_CHOOSER_ONLINE_DUMMY,
			     NULL);
    }

  return retval;
}

void
gtk_app_chooser_online_search_for_mimetype_async (GtkAppChooserOnline *self,
						  const gchar *content_type,
						  GtkWindow *parent,
						  GAsyncReadyCallback callback,
						  gpointer user_data)
{
  GtkAppChooserOnlineInterface *iface;

  g_return_if_fail (GTK_IS_APP_CHOOSER_ONLINE (self));

  iface = GTK_APP_CHOOSER_ONLINE_GET_IFACE (self);

  (* iface->search_for_mimetype_async) (self, content_type, parent, callback, user_data);
}

gboolean
gtk_app_chooser_online_search_for_mimetype_finish (GtkAppChooserOnline *self,
						   GAsyncResult *res,
						   GError **error)
{
  GtkAppChooserOnlineInterface *iface;

  g_return_val_if_fail (GTK_IS_APP_CHOOSER_ONLINE (self), FALSE);

  iface = GTK_APP_CHOOSER_ONLINE_GET_IFACE (self);

  return ((* iface->search_for_mimetype_finish) (self, res, error));
}