b32328e50acf27fe245330f14c634bb1b4b56f60
[geeqie.git] / src / uri_utils.h
1 /*
2  * Geeqie
3  * Copyright (C) 2008 - 2012 The Geeqie Team
4  *
5  * Author: John Ellis, Vladimir Nadvornik, Laurent Monin
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12 #ifndef URI_UTILS_H
13 #define URI_UTILS_H
14
15 void warning_dialog_dnd_uri_error(GList *uri_error_list);
16 GList *uri_filelist_from_uris(gchar **uris, GList **uri_error_list);
17 gchar **uris_from_pathlist(GList *list);
18 gchar **uris_from_filelist(GList *list);
19 GList *uri_pathlist_from_uris(gchar **uris, GList **uri_error_list);
20 gboolean uri_selection_data_set_uris_from_filelist(GtkSelectionData *selection_data, GList *list);
21 GList *uri_filelist_from_gtk_selection_data(GtkSelectionData *selection_data);
22
23 #endif /* URI_UTILS_H */
24 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */