summaryrefslogtreecommitdiff
path: root/gtk/gtkfilesystem.h
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@gnome.org>2004-03-15 06:54:34 +0000
committerJonathan Blandford <jrb@src.gnome.org>2004-03-15 06:54:34 +0000
commit20808790d2c29e8a45aea62169f2245453bb527d (patch)
tree75fe3aa20e586f41ecf32020c6959226bd6e9d42 /gtk/gtkfilesystem.h
parentf956e3ae0a5611382a54840bb520640c0816d42d (diff)
downloadgtk+-20808790d2c29e8a45aea62169f2245453bb527d.tar.gz
Rewritten to use the GtkEntryCompletion API more correctly. Now pops down
Mon Mar 15 01:50:28 2004 Jonathan Blandford <jrb@gnome.org> * gtkfilechooserentry.c: Rewritten to use the GtkEntryCompletion API more correctly. Now pops down the dropdown well. * gtkfilesystem.c (gtk_file_path_get_type): New boxed type for the FilePath. * test/testfilechooser.c: disable preview widget temporarily. It's not representative of a good preview widget.
Diffstat (limited to 'gtk/gtkfilesystem.h')
-rw-r--r--gtk/gtkfilesystem.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk/gtkfilesystem.h b/gtk/gtkfilesystem.h
index 98c80b8498..1124fc9f52 100644
--- a/gtk/gtkfilesystem.h
+++ b/gtk/gtkfilesystem.h
@@ -317,6 +317,13 @@ GtkFileInfo *gtk_file_folder_get_info (GtkFileFolder *folder,
const GtkFilePath *path,
GError **error);
+
+/* GtkFilePath */
+#define GTK_TYPE_FILE_PATH (gtk_file_path_get_type ())
+#define GTK_FILE_PATH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FILE_PATH, GtkFilePath))
+#define GTK_IS_FILE_PATH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FILE_PATH))
+
+GType gtk_file_path_get_type (void);
#ifdef __GNUC__
#define gtk_file_path_new_dup(str) \
({ const gchar *__s = (str); (GtkFilePath *)g_strdup(__s); })