c85ec49dc20ffe9204d8b063bbf1db8444843204
[geeqie.git] / src / ui_pathsel.h
1 /*
2  * (SLIK) SimpLIstic sKin functions
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
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 UI_PATHSEL_H
13 #define UI_PATHSEL_H
14
15
16 GtkWidget *path_selection_new_with_files(GtkWidget *entry, const gchar *path,
17                                          const gchar *filter, const gchar *filter_desc);
18 GtkWidget *path_selection_new(const gchar *path, GtkWidget *entry);
19
20 void path_selection_sync_to_entry(GtkWidget *entry);
21
22 void path_selection_add_select_func(GtkWidget *entry,
23                                     void (*func)(const gchar *, gpointer), gpointer data);
24 void path_selection_add_filter(GtkWidget *entry, const gchar *filter, const gchar *description, gint set);
25 void path_selection_clear_filter(GtkWidget *entry);
26
27
28 #endif