]> Pileus Git - ~andy/gtk/blob - gtk/gtkappchooseronline.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtkappchooseronline.h
1 /*
2  * gtkappchooseronline.h: an extension point for online integration
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 this library. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * Authors: Cosimo Cecchi <ccecchi@redhat.com>
20  */
21
22 #ifndef __GTK_APP_CHOOSER_ONLINE_H__
23 #define __GTK_APP_CHOOSER_ONLINE_H__
24
25 #include <glib.h>
26
27 #include <gtk/gtkwindow.h>
28 #include <gio/gio.h>
29
30 G_BEGIN_DECLS
31
32 #define GTK_TYPE_APP_CHOOSER_ONLINE           (_gtk_app_chooser_online_get_type ())
33 #define GTK_APP_CHOOSER_ONLINE(o)             (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_APP_CHOOSER_ONLINE, GtkAppChooserOnline))
34 #define GTK_IS_APP_CHOOSER_ONLINE(o)          (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_APP_CHOOSER_ONLINE))
35 #define GTK_APP_CHOOSER_ONLINE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_APP_CHOOSER_ONLINE, GtkAppChooserOnlineInterface))
36
37 typedef struct _GtkAppChooserOnline GtkAppChooserOnline;
38 typedef struct _GtkAppChooserOnlineInterface GtkAppChooserOnlineInterface;
39
40 struct _GtkAppChooserOnlineInterface {
41   GTypeInterface g_iface;
42
43   /* Methods */
44   void (*search_for_mimetype_async)      (GtkAppChooserOnline  *self,
45                                           const gchar          *content_type,
46                                           GtkWindow            *parent,
47                                           GCancellable         *cancellable,
48                                           GAsyncReadyCallback   callback,
49                                           gpointer              user_data);
50
51   gboolean (*search_for_mimetype_finish) (GtkAppChooserOnline  *self,
52                                           GAsyncResult         *res,
53                                           GError              **error);
54 };
55
56 GType                 _gtk_app_chooser_online_get_type                   (void) G_GNUC_CONST;
57
58 void                  _gtk_app_chooser_online_get_default_async          (GAsyncReadyCallback   callback,
59                                                                           gpointer              user_data);
60 GtkAppChooserOnline * _gtk_app_chooser_online_get_default_finish         (GObject             *source,
61                                                                           GAsyncResult        *result);
62
63 void                  _gtk_app_chooser_online_search_for_mimetype_async  (GtkAppChooserOnline  *self,
64                                                                           const gchar          *content_type,
65                                                                           GtkWindow            *parent,
66                                                                           GCancellable         *cancellable,
67                                                                           GAsyncReadyCallback   callback,
68                                                                           gpointer              user_data);
69 gboolean              _gtk_app_chooser_online_search_for_mimetype_finish (GtkAppChooserOnline  *self,
70                                                                           GAsyncResult         *res,
71                                                                           GError              **error);
72
73 #endif /* __GTK_APP_CHOOSER_ONLINE_H__ */