9
|
1 /*
|
196
|
2 * Geeqie
|
9
|
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 VIEW_DIR_LIST_H
|
|
13 #define VIEW_DIR_LIST_H
|
|
14
|
|
15
|
|
16 ViewDirList *vdlist_new(const gchar *path);
|
|
17
|
|
18 void vdlist_set_select_func(ViewDirList *vdl,
|
|
19 void (*func)(ViewDirList *vdl, const gchar *path, gpointer data), gpointer data);
|
|
20
|
|
21 void vdlist_set_layout(ViewDirList *vdl, LayoutWindow *layout);
|
|
22
|
|
23 gint vdlist_set_path(ViewDirList *vdl, const gchar *path);
|
|
24 void vdlist_refresh(ViewDirList *vdl);
|
|
25
|
|
26 const gchar *vdlist_row_get_path(ViewDirList *vdl, gint row);
|
|
27
|
|
28
|
|
29 #endif
|
|
30
|
|
31
|