comparison src/ui_bookmark.h @ 904:1698baa37871

Move uri_*() functions to separate files: uri_utils.[ch]
author zas_
date Sun, 20 Jul 2008 15:16:05 +0000
parents c414002a1f27
children 1646720364cf
comparison
equal deleted inserted replaced
903:c93823609f15 904:1698baa37871
34 GtkWidget *history_combo_new(GtkWidget **entry, const gchar *text, 34 GtkWidget *history_combo_new(GtkWidget **entry, const gchar *text,
35 const gchar *history_key, gint max_levels); 35 const gchar *history_key, gint max_levels);
36 void history_combo_append_history(GtkWidget *widget, const gchar *text); 36 void history_combo_append_history(GtkWidget *widget, const gchar *text);
37 37
38 38
39 /* dnd data parsers (uris) */
40
41 gchar *uri_text_escape(const gchar *text);
42 void uri_text_decode(gchar *text);
43
44 GList *uri_list_from_text(gchar *data, gint files_only);
45 GList *uri_filelist_from_text(gchar *data, gint files_only);
46 gchar *uri_text_from_list(GList *list, gint *len, gint plain_text);
47 gchar *uri_text_from_filelist(GList *list, gint *len, gint plain_text);
48
49 39
50 #endif 40 #endif