]> Pileus Git - ~andy/gtk/blob - gtk/gtkopenwithdialog.h
open-with: initial implementation of GtkOpenWithDialog
[~andy/gtk] / gtk / gtkopenwithdialog.h
1 /*
2  * gtkopenwithdialog.h: an open-with dialog
3  *
4  * Copyright (C) 2004 Novell, Inc.
5  * Copyright (C) 2007, 2010 Red Hat, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with the Gnome Library; see the file COPYING.LIB.  If not,
19  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  *
22  * Authors: Dave Camp <dave@novell.com>
23  *          Alexander Larsson <alexl@redhat.com>
24  *          Cosimo Cecchi <ccecchi@redhat.com>
25  */
26
27 #ifndef __GTK_OPEN_WITH_DIALOG_H__
28 #define __GTK_OPEN_WITH_DIALOG_H__
29
30 #include <gtk/gtkdialog.h>
31 #include <gio/gio.h>
32
33 #define GTK_TYPE_OPEN_WITH_DIALOG\
34   (gtk_open_with_dialog_get_type ())
35 #define GTK_OPEN_WITH_DIALOG(obj)\
36   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_OPEN_WITH_DIALOG, GtkOpenWithDialog))
37 #define GTK_OPEN_WITH_DIALOG_CLASS(klass)\
38   (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_OPEN_WITH_DIALOG, GtkOpenWithDialogClass))
39 #define GTK_IS_OPEN_WITH_DIALOG(obj)\
40   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_OPEN_WITH_DIALOG))
41
42 typedef struct _GtkOpenWithDialog        GtkOpenWithDialog;
43 typedef struct _GtkOpenWithDialogClass   GtkOpenWithDialogClass;
44 typedef struct _GtkOpenWithDialogPrivate GtkOpenWithDialogPrivate;
45
46 struct _GtkOpenWithDialog {
47   GtkDialog parent;
48
49   /*< private >*/
50   GtkOpenWithDialogPrivate *priv;
51 };
52
53 struct _GtkOpenWithDialogClass {
54   GtkDialogClass parent_class;
55
56   void (*application_selected) (GtkOpenWithDialog *dialog,
57                                 GAppInfo *application);
58
59   /* padding for future class expansion */
60   gpointer padding[16];
61 };
62
63 typedef enum {
64   GTK_OPEN_WITH_DIALOG_MODE_OPEN_FILE = 0,
65   GTK_OPEN_WITH_DIALOG_MODE_SELECT_DEFAULT
66 } GtkOpenWithDialogMode;
67
68 GType      gtk_open_with_dialog_get_type (void);
69
70 GtkWidget * gtk_open_with_dialog_new (GtkWindow *parent,
71                                       GtkDialogFlags flags,
72                                       GtkOpenWithDialogMode mode,
73                                       GFile *file);
74 GtkWidget * gtk_open_with_dialog_new_for_content_type (GtkWindow *parent,
75                                                        GtkDialogFlags flags,
76                                                        const gchar *content_type);
77
78 #endif /* __GTK_OPEN_WITH_DIALOG_H__ */