]> Pileus Git - ~andy/gtk/blob - gtk/gtkappchooserdialog.h
app-chooser: rename GtkOpenWith to GtkAppChooser
[~andy/gtk] / gtk / gtkappchooserdialog.h
1 /*
2  * gtkappchooserdialog.h: an app-chooser 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 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
29 #endif
30
31 #ifndef __GTK_APP_CHOOSER_DIALOG_H__
32 #define __GTK_APP_CHOOSER_DIALOG_H__
33
34 #include <gtk/gtkdialog.h>
35 #include <gio/gio.h>
36
37 #define GTK_TYPE_APP_CHOOSER_DIALOG\
38   (gtk_app_chooser_dialog_get_type ())
39 #define GTK_APP_CHOOSER_DIALOG(obj)\
40   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_APP_CHOOSER_DIALOG, GtkAppChooserDialog))
41 #define GTK_APP_CHOOSER_DIALOG_CLASS(klass)\
42   (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_APP_CHOOSER_DIALOG, GtkAppChooserDialogClass))
43 #define GTK_IS_APP_CHOOSER_DIALOG(obj)\
44   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_APP_CHOOSER_DIALOG))
45 #define GTK_IS_APP_CHOOSER_DIALOG_CLASS(klass)\
46   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_APP_CHOOSER_DIALOG))
47 #define GTK_APP_CHOOSER_DIALOG_GET_CLASS(obj)\
48   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_APP_CHOOSER_DIALOG, GtkAppChooserDialogClass))
49
50 typedef struct _GtkAppChooserDialog        GtkAppChooserDialog;
51 typedef struct _GtkAppChooserDialogClass   GtkAppChooserDialogClass;
52 typedef struct _GtkAppChooserDialogPrivate GtkAppChooserDialogPrivate;
53
54 struct _GtkAppChooserDialog {
55   GtkDialog parent;
56
57   /*< private >*/
58   GtkAppChooserDialogPrivate *priv;
59 };
60
61 struct _GtkAppChooserDialogClass {
62   GtkDialogClass parent_class;
63
64   /* padding for future class expansion */
65   gpointer padding[16];
66 };
67
68 GType      gtk_app_chooser_dialog_get_type (void) G_GNUC_CONST;
69
70 GtkWidget * gtk_app_chooser_dialog_new (GtkWindow *parent,
71                                         GtkDialogFlags flags,
72                                         GFile *file);
73 GtkWidget * gtk_app_chooser_dialog_new_for_content_type (GtkWindow *parent,
74                                                          GtkDialogFlags flags,
75                                                          const gchar *content_type);
76
77 GtkWidget * gtk_app_chooser_dialog_get_widget (GtkAppChooserDialog *self);
78
79 #endif /* __GTK_APP_CHOOSER_DIALOG_H__ */