diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-08-17 16:06:39 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-08-17 16:06:39 +0000 |
commit | a3aa10e5a67aaa83643a39c24016dfad0b725bd8 (patch) | |
tree | 4497f255969421c5b1c18fb536019c5193a31bfa /gtk/gtkfilechooserutils.h | |
parent | 36dfdad411fa8bbb8d13670210a3d247b185ae52 (diff) | |
download | gtk+-a3aa10e5a67aaa83643a39c24016dfad0b725bd8.tar.gz |
New widget to go along with GtkFontButton and GtkColorButton for use in
2004-08-17 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserbutton.[hc]: New widget to go along with
GtkFontButton and GtkColorButton for use in preference dialogs.
Replaces GnomeFileEntry. (#148108, James M. Cape)
* gtk/gtk.h: Include gtkfilechooserbutton.h
* gtk/Makefile.am (gtk_public_h_sources): Add gtkfilechooserbutton.h
(gtk_c_sources): Add gtkfilechooserbutton.c
* gtk/gtk.symbols: Add the GtkFileChooserButton symbols.
* gtk/gtkfilechooserutils.[hc]: Make the delegate quark available.
* gtk/gtkfilechooserentry.[hc] (_gtk_file_chooser_entry_new): Allow
to suppress tab-eating using the new eat_tabs argument. Adjust all
callers.
* tests/testfilechooserbutton.c: Test for GtkFileChooserButton.
* tests/Makefile.am (noinst_PROGRAMS): Add testfilechooserbutton
Diffstat (limited to 'gtk/gtkfilechooserutils.h')
-rw-r--r-- | gtk/gtkfilechooserutils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/gtkfilechooserutils.h b/gtk/gtkfilechooserutils.h index 604564ece5..41e3158545 100644 --- a/gtk/gtkfilechooserutils.h +++ b/gtk/gtkfilechooserutils.h @@ -26,6 +26,8 @@ G_BEGIN_DECLS +#define GTK_FILE_CHOOSER_DELEGATE_QUARK (_gtk_file_chooser_delegate_get_quark ()) + typedef enum { GTK_FILE_CHOOSER_PROP_FIRST = 0x1000, GTK_FILE_CHOOSER_PROP_ACTION = GTK_FILE_CHOOSER_PROP_FIRST, @@ -47,6 +49,8 @@ void _gtk_file_chooser_delegate_iface_init (GtkFileChooserIface *iface); void _gtk_file_chooser_set_delegate (GtkFileChooser *receiver, GtkFileChooser *delegate); +GQuark _gtk_file_chooser_delegate_get_quark (void) G_GNUC_CONST; + G_END_DECLS #endif /* __GTK_FILE_CHOOSER_UTILS_H__ */ |