diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-10-23 04:22:32 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-10-23 04:22:32 +0000 |
commit | b3bae3b40ab92ad5a5dab65da3c3440efae975d4 (patch) | |
tree | 9301956750d991c3fe99e7862c44fbc104aa44a8 /gtk/gtkfilesystem.h | |
parent | 3724a591d822c3bc53ce829407a142e19d418acf (diff) | |
download | gtk+-b3bae3b40ab92ad5a5dab65da3c3440efae975d4.tar.gz |
gtk/gtkfilechooserutils.c gtk/gtkfilechooserprivate.[ch]: Basic framework
Wed Oct 22 23:20:04 2003 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilechooser.[ch] gtk/gtkfilefilter.[ch]
gtk/gtkfilechooserwidget.[ch] gtk/gtkfilechooserdialog.[ch]:
gtk/gtkfilechooserutils.c gtk/gtkfilechooserprivate.[ch]:
Basic framework for the new file selector widget.
* gtk/gtkfilechooserdefault.[ch] gtk/gtkcellrenderersep.[ch]
gtk/gtkfilechooserentry.[ch] gtk/gtkfilesystemmodel.[ch]:
Initial implementation of the GtkFileChooser user interface.
* gtk/gtkfilesystemunix.[ch]: GtkFileSystem implementation
for Unix files.
* configure.in gtk/Makefile.am gtk/xdgmime: Build code
for freedesktop.org MIME system on Unix.
* tests/testfilechooser.c: Test program for GtkFileChooser
* tests/prop-editor.c: Add support for properties on interfaces.
Diffstat (limited to 'gtk/gtkfilesystem.h')
-rw-r--r-- | gtk/gtkfilesystem.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gtk/gtkfilesystem.h b/gtk/gtkfilesystem.h index 18ba61ca5d..ee962b2599 100644 --- a/gtk/gtkfilesystem.h +++ b/gtk/gtkfilesystem.h @@ -21,6 +21,14 @@ #ifndef __GTK_FILE_SYSTEM_H__ #define __GTK_FILE_SYSTEM_H__ +/* This is a "semi-private" header; it is meant only for + * alternate GtkFileChooser backend modules; no stability guarantees + * are made at this point + */ +#ifndef GTK_FILE_SYSTEM_ENABLE_UNSUPPORTED +#error "GtkFileSystem is not supported API for general use" +#endif + #include <glib-object.h> #include <gtk/gtkwidget.h> /* For icon handling */ |