2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2003-03-21 20:34:02 +00:00
|
|
|
* gtkfilechooserwidget.h: Embeddable file selector widget
|
|
|
|
* Copyright (C) 2003, Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2003-03-21 20:34:02 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GTK_FILE_CHOOSER_WIDGET_H__
|
|
|
|
#define __GTK_FILE_CHOOSER_WIDGET_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2008-06-13 14:26:44 +00:00
|
|
|
#include <gtk/gtkfilechooser.h>
|
2011-06-07 22:36:22 +00:00
|
|
|
#include <gtk/gtkbox.h>
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_FILE_CHOOSER_WIDGET (gtk_file_chooser_widget_get_type ())
|
|
|
|
#define GTK_FILE_CHOOSER_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FILE_CHOOSER_WIDGET, GtkFileChooserWidget))
|
|
|
|
#define GTK_FILE_CHOOSER_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FILE_CHOOSER_WIDGET, GtkFileChooserWidgetClass))
|
|
|
|
#define GTK_IS_FILE_CHOOSER_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FILE_CHOOSER_WIDGET))
|
|
|
|
#define GTK_IS_FILE_CHOOSER_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FILE_CHOOSER_WIDGET))
|
|
|
|
#define GTK_FILE_CHOOSER_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FILE_CHOOSER_WIDGET, GtkFileChooserWidgetClass))
|
|
|
|
|
2008-05-05 13:40:29 +00:00
|
|
|
typedef struct _GtkFileChooserWidget GtkFileChooserWidget;
|
2003-03-21 20:34:02 +00:00
|
|
|
typedef struct _GtkFileChooserWidgetPrivate GtkFileChooserWidgetPrivate;
|
2008-05-05 13:40:29 +00:00
|
|
|
typedef struct _GtkFileChooserWidgetClass GtkFileChooserWidgetClass;
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
|
|
struct _GtkFileChooserWidget
|
|
|
|
{
|
2017-03-25 19:36:10 +00:00
|
|
|
GtkWidget parent_instance;
|
2003-03-21 20:34:02 +00:00
|
|
|
|
2010-06-04 21:28:22 +00:00
|
|
|
GtkFileChooserWidgetPrivate *priv;
|
2003-03-21 20:34:02 +00:00
|
|
|
};
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/**
|
|
|
|
* GtkFileChooserWidgetClass:
|
|
|
|
* @parent_class: The parent class.
|
|
|
|
*/
|
2008-05-05 13:40:29 +00:00
|
|
|
struct _GtkFileChooserWidgetClass
|
|
|
|
{
|
2017-03-25 19:36:10 +00:00
|
|
|
GtkWidgetClass parent_class;
|
2010-10-19 17:07:36 +00:00
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/*< private >*/
|
|
|
|
|
2010-10-19 17:07:36 +00:00
|
|
|
/* Padding for future expansion */
|
|
|
|
void (*_gtk_reserved1) (void);
|
|
|
|
void (*_gtk_reserved2) (void);
|
|
|
|
void (*_gtk_reserved3) (void);
|
|
|
|
void (*_gtk_reserved4) (void);
|
2008-05-05 13:40:29 +00:00
|
|
|
};
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-11-23 20:02:15 +00:00
|
|
|
GType gtk_file_chooser_widget_get_type (void) G_GNUC_CONST;
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-03-01 21:35:25 +00:00
|
|
|
GtkWidget *gtk_file_chooser_widget_new (GtkFileChooserAction action);
|
2008-08-04 14:43:53 +00:00
|
|
|
|
2003-03-21 20:34:02 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_FILE_CHOOSER_WIDGET_H__ */
|