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 this library. If not, see <http://www.gnu.org/licenses/>.
19 *
20 * Authors: Dave Camp <dave@novell.com>
21 * Alexander Larsson <alexl@redhat.com>
22 * Cosimo Cecchi <ccecchi@redhat.com>
23 */
24
25#ifndef __GTK_APP_CHOOSER_WIDGET_H__
26#define __GTK_APP_CHOOSER_WIDGET_H__
27
28#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
29#error "Only <gtk/gtk.h> can be included directly."
30#endif
31
32#include <gtk/gtkwidget.h>
33#include <gio/gio.h>
34
35G_BEGIN_DECLS
36
37#define GTK_TYPE_APP_CHOOSER_WIDGET (gtk_app_chooser_widget_get_type ())
38#define GTK_APP_CHOOSER_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_APP_CHOOSER_WIDGET, GtkAppChooserWidget))
39#define GTK_IS_APP_CHOOSER_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_APP_CHOOSER_WIDGET))
40
41typedef struct _GtkAppChooserWidget GtkAppChooserWidget;
42
43GDK_AVAILABLE_IN_ALL
44GType gtk_app_chooser_widget_get_type (void) G_GNUC_CONST;
45
46GDK_AVAILABLE_IN_ALL
47GtkWidget * gtk_app_chooser_widget_new (const char *content_type);
48
49GDK_AVAILABLE_IN_ALL
50void gtk_app_chooser_widget_set_show_default (GtkAppChooserWidget *self,
51 gboolean setting);
52GDK_AVAILABLE_IN_ALL
53gboolean gtk_app_chooser_widget_get_show_default (GtkAppChooserWidget *self);
54
55GDK_AVAILABLE_IN_ALL
56void gtk_app_chooser_widget_set_show_recommended (GtkAppChooserWidget *self,
57 gboolean setting);
58GDK_AVAILABLE_IN_ALL
59gboolean gtk_app_chooser_widget_get_show_recommended (GtkAppChooserWidget *self);
60
61GDK_AVAILABLE_IN_ALL
62void gtk_app_chooser_widget_set_show_fallback (GtkAppChooserWidget *self,
63 gboolean setting);
64GDK_AVAILABLE_IN_ALL
65gboolean gtk_app_chooser_widget_get_show_fallback (GtkAppChooserWidget *self);
66
67GDK_AVAILABLE_IN_ALL
68void gtk_app_chooser_widget_set_show_other (GtkAppChooserWidget *self,
69 gboolean setting);
70GDK_AVAILABLE_IN_ALL
71gboolean gtk_app_chooser_widget_get_show_other (GtkAppChooserWidget *self);
72
73GDK_AVAILABLE_IN_ALL
74void gtk_app_chooser_widget_set_show_all (GtkAppChooserWidget *self,
75 gboolean setting);
76GDK_AVAILABLE_IN_ALL
77gboolean gtk_app_chooser_widget_get_show_all (GtkAppChooserWidget *self);
78
79GDK_AVAILABLE_IN_ALL
80void gtk_app_chooser_widget_set_default_text (GtkAppChooserWidget *self,
81 const char *text);
82GDK_AVAILABLE_IN_ALL
83const char * gtk_app_chooser_widget_get_default_text (GtkAppChooserWidget *self);
84
85G_END_DECLS
86
87#endif /* __GTK_APP_CHOOSER_WIDGET_H__ */
88

source code of gtk/gtk/gtkappchooserwidget.h