From b3fed7cc16e2f03970776e0f874e94c112f4b240 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 8 May 2004 20:11:17 +0000 Subject: Add convenience functions for creating a filter with a bunch of mime types 2004-05-08 Christian Persch * lib/ephy-file-chooser.c: (ephy_file_chooser_add_pattern_filter), (ephy_file_chooser_add_mime_filter), (ephy_file_chooser_new): * lib/ephy-file-chooser.h: Add convenience functions for creating a filter with a bunch of mime types or patterns and add it to a file chooser. Those should really be in gtk+; see bug #142142. * embed/mozilla/ContentHandler.cpp: * embed/mozilla/EphyHeaderSniffer.cpp: * embed/mozilla/FilePicker.cpp: * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): * src/bookmarks/ephy-bookmarks-editor.c: (import_dialog_response_cb): * src/prefs-dialog.c: (prefs_download_path_button_clicked_cb): * src/window-commands.c: (window_cmd_file_open): Add some filters to the file chooser dialogues. --- src/bookmarks/ephy-bookmarks-editor.c | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'src/bookmarks') diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index f789922a2..2bf909e8d 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -554,12 +554,33 @@ import_dialog_response_cb (GtkDialog *dialog, gint response, if (filename == NULL) { EphyFileChooser *dialog; + GtkFileFilter *filter; dialog = ephy_file_chooser_new (_("Import bookmarks from file"), GTK_WIDGET (editor), GTK_FILE_CHOOSER_ACTION_OPEN, - NULL); - /* FIXME: set up some filters perhaps ? */ + NULL, EPHY_FILE_FILTER_NONE); + + ephy_file_chooser_add_mime_filter + (dialog, + _("Firefox/Firebird/Mozilla bookmarks"), + "application/x-mozilla-bookmarks", NULL); + + ephy_file_chooser_add_mime_filter + (dialog, _("Galeon/Konqueror bookmarks"), + "application/x-xbel", NULL); + + ephy_file_chooser_add_mime_filter + (dialog, _("Epiphany bookmarks"), + "text/rdf", NULL); + + filter = ephy_file_chooser_add_pattern_filter (dialog, + _("All Files"), + "*", NULL); + + gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (dialog), + filter); + g_signal_connect (dialog, "response", G_CALLBACK (import_from_file_response_cb), editor); -- cgit v1.2.3