]> Pileus Git - ~andy/gtk/blob - gtk/gtkappchooserwidget.h
Merge branch 'master' into broadway
[~andy/gtk] / gtk / gtkappchooserwidget.h
1 /*
2  * gtkappchooserwidget.h: an app-chooser widget
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_WIDGET_H__
32 #define __GTK_APP_CHOOSER_WIDGET_H__
33
34 #include <gtk/gtkbox.h>
35 #include <gtk/gtkmenu.h>
36 #include <gio/gio.h>
37
38 G_BEGIN_DECLS
39
40 #define GTK_TYPE_APP_CHOOSER_WIDGET            (gtk_app_chooser_widget_get_type ())
41 #define GTK_APP_CHOOSER_WIDGET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_APP_CHOOSER_WIDGET, GtkAppChooserWidget))
42 #define GTK_APP_CHOOSER_WIDGET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_APP_CHOOSER_WIDGET, GtkAppChooserWidgetClass))
43 #define GTK_IS_APP_CHOOSER_WIDGET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_APP_CHOOSER_WIDGET))
44 #define GTK_IS_APP_CHOOSER_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_APP_CHOOSER_WIDGET))
45 #define GTK_APP_CHOOSER_WIDGET_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_APP_CHOOSER_WIDGET, GtkAppChooserWidgetClass))
46
47 typedef struct _GtkAppChooserWidget        GtkAppChooserWidget;
48 typedef struct _GtkAppChooserWidgetClass   GtkAppChooserWidgetClass;
49 typedef struct _GtkAppChooserWidgetPrivate GtkAppChooserWidgetPrivate;
50
51 struct _GtkAppChooserWidget {
52   GtkBox parent;
53
54   /*< private >*/
55   GtkAppChooserWidgetPrivate *priv;
56 };
57
58 struct _GtkAppChooserWidgetClass {
59   GtkBoxClass parent_class;
60
61   void (* application_selected)  (GtkAppChooserWidget *self,
62                                   GAppInfo            *app_info);
63
64   void (* application_activated) (GtkAppChooserWidget *self,
65                                   GAppInfo            *app_info);
66
67   void (* populate_popup)        (GtkAppChooserWidget *self,
68                                   GtkMenu             *menu,
69                                   GAppInfo            *app_info);
70
71   /* padding for future class expansion */
72   gpointer padding[16];
73 };
74
75 GType         gtk_app_chooser_widget_get_type             (void) G_GNUC_CONST;
76
77 GtkWidget *   gtk_app_chooser_widget_new                  (const gchar         *content_type);
78
79 void          gtk_app_chooser_widget_set_show_default     (GtkAppChooserWidget *self,
80                                                            gboolean             setting);
81 gboolean      gtk_app_chooser_widget_get_show_default     (GtkAppChooserWidget *self);
82
83 void          gtk_app_chooser_widget_set_show_recommended (GtkAppChooserWidget *self,
84                                                            gboolean             setting);
85 gboolean      gtk_app_chooser_widget_get_show_recommended (GtkAppChooserWidget *self);
86
87 void          gtk_app_chooser_widget_set_show_fallback    (GtkAppChooserWidget *self,
88                                                            gboolean             setting);
89 gboolean      gtk_app_chooser_widget_get_show_fallback    (GtkAppChooserWidget *self);
90
91 void          gtk_app_chooser_widget_set_show_other       (GtkAppChooserWidget *self,
92                                                            gboolean             setting);
93 gboolean      gtk_app_chooser_widget_get_show_other       (GtkAppChooserWidget *self);
94
95 void          gtk_app_chooser_widget_set_show_all         (GtkAppChooserWidget *self,
96                                                            gboolean             setting);
97 gboolean      gtk_app_chooser_widget_get_show_all         (GtkAppChooserWidget *self);
98
99 void          gtk_app_chooser_widget_set_default_text     (GtkAppChooserWidget *self,
100                                                            const gchar         *text);
101 const gchar * gtk_app_chooser_widget_get_default_text     (GtkAppChooserWidget *self);
102
103 G_END_DECLS
104
105 #endif /* __GTK_APP_CHOOSER_WIDGET_H__ */