9
|
1 /*
|
|
2 * (SLIK) SimpLIstic sKin functions
|
|
3 * (C) 2004 John Ellis
|
475
|
4 * Copyright (C) 2008 The Geeqie Team
|
9
|
5 *
|
|
6 * Author: John Ellis
|
|
7 *
|
|
8 * This software is released under the GNU General Public License (GNU GPL).
|
|
9 * Please read the included file COPYING for more information.
|
|
10 * This software comes with no warranty of any kind, use at your own risk!
|
|
11 */
|
|
12
|
|
13 #ifndef UI_PATHSEL_H
|
|
14 #define UI_PATHSEL_H
|
|
15
|
|
16
|
|
17 GtkWidget *path_selection_new_with_files(GtkWidget *entry, const gchar *path,
|
|
18 const gchar *filter, const gchar *filter_desc);
|
|
19 GtkWidget *path_selection_new(const gchar *path, GtkWidget *entry);
|
|
20
|
|
21 void path_selection_sync_to_entry(GtkWidget *entry);
|
|
22
|
|
23 void path_selection_add_select_func(GtkWidget *entry,
|
|
24 void (*func)(const gchar *, gpointer), gpointer data);
|
|
25 void path_selection_add_filter(GtkWidget *entry, const gchar *filter, const gchar *description, gint set);
|
|
26 void path_selection_clear_filter(GtkWidget *entry);
|
|
27
|
|
28
|
|
29 #endif
|