9
|
1 /*
|
|
2 * GQview
|
|
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_FILE_LIST_H
|
|
13 #define VIEW_FILE_LIST_H
|
|
14
|
|
15
|
|
16 #include "filelist.h"
|
|
17
|
|
18
|
|
19 ViewFileList *vflist_new(const gchar *path, gint thumbs);
|
|
20
|
|
21 void vflist_set_status_func(ViewFileList *vfl,
|
|
22 void (*func)(ViewFileList *vfl, gpointer data), gpointer data);
|
|
23 void vflist_set_thumb_status_func(ViewFileList *vfl,
|
|
24 void (*func)(ViewFileList *vfl, gdouble val, const gchar *text, gpointer data),
|
|
25 gpointer data);
|
|
26
|
|
27 void vflist_set_layout(ViewFileList *vfl, LayoutWindow *layout);
|
|
28
|
|
29 gint vflist_set_path(ViewFileList *vfl, const gchar *path);
|
|
30 gint vflist_refresh(ViewFileList *vfl);
|
|
31
|
|
32 void vflist_thumb_set(ViewFileList *vfl, gint enable);
|
|
33 void vflist_sort_set(ViewFileList *vfl, SortType type, gint ascend);
|
|
34
|
|
35 FileData *vflist_index_get_data(ViewFileList *vfl, gint row);
|
|
36 gchar *vflist_index_get_path(ViewFileList *vfl, gint row);
|
|
37 gint vflist_index_by_path(ViewFileList *vfl, const gchar *path);
|
|
38 gint vflist_count(ViewFileList *vfl, gint64 *bytes);
|
|
39 GList *vflist_get_list(ViewFileList *vfl);
|
|
40
|
|
41 gint vflist_index_is_selected(ViewFileList *vfl, gint row);
|
|
42 gint vflist_selection_count(ViewFileList *vfl, gint64 *bytes);
|
|
43 GList *vflist_selection_get_list(ViewFileList *vfl);
|
|
44 GList *vflist_selection_get_list_by_index(ViewFileList *vfl);
|
|
45
|
|
46 void vflist_select_all(ViewFileList *vfl);
|
|
47 void vflist_select_none(ViewFileList *vfl);
|
|
48 void vflist_select_by_path(ViewFileList *vfl, const gchar *path);
|
|
49
|
|
50
|
|
51 gint vflist_maint_renamed(ViewFileList *vfl, const gchar *source, const gchar *dest);
|
|
52 gint vflist_maint_removed(ViewFileList *vfl, const gchar *path, GList *ignore_list);
|
|
53 gint vflist_maint_moved(ViewFileList *vfl, const gchar *source, const gchar *dest, GList *ignore_list);
|
|
54
|
|
55
|
|
56 #endif
|