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_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);
|
132
|
33 void vflist_marks_set(ViewFileList *vfl, gint enable);
|
9
|
34 void vflist_sort_set(ViewFileList *vfl, SortType type, gint ascend);
|
|
35
|
|
36 FileData *vflist_index_get_data(ViewFileList *vfl, gint row);
|
|
37 gchar *vflist_index_get_path(ViewFileList *vfl, gint row);
|
|
38 gint vflist_index_by_path(ViewFileList *vfl, const gchar *path);
|
|
39 gint vflist_count(ViewFileList *vfl, gint64 *bytes);
|
|
40 GList *vflist_get_list(ViewFileList *vfl);
|
|
41
|
|
42 gint vflist_index_is_selected(ViewFileList *vfl, gint row);
|
|
43 gint vflist_selection_count(ViewFileList *vfl, gint64 *bytes);
|
|
44 GList *vflist_selection_get_list(ViewFileList *vfl);
|
|
45 GList *vflist_selection_get_list_by_index(ViewFileList *vfl);
|
|
46
|
|
47 void vflist_select_all(ViewFileList *vfl);
|
|
48 void vflist_select_none(ViewFileList *vfl);
|
|
49 void vflist_select_by_path(ViewFileList *vfl, const gchar *path);
|
138
|
50 void vflist_select_by_fd(ViewFileList *vfl, FileData *fd);
|
9
|
51
|
161
|
52 void vflist_mark_to_selection(ViewFileList *vfl, gint mark, MarkToSelectionMode mode);
|
|
53 void vflist_selection_to_mark(ViewFileList *vfl, gint mark, SelectionToMarkMode mode);
|
|
54
|
150
|
55 void vflist_select_marked(ViewFileList *vfl, gint mark);
|
|
56 void vflist_mark_selected(ViewFileList *vfl, gint mark, gint value);
|
9
|
57
|
138
|
58 gint vflist_maint_renamed(ViewFileList *vfl, FileData *fd);
|
|
59 gint vflist_maint_removed(ViewFileList *vfl, FileData *fd, GList *ignore_list);
|
|
60 gint vflist_maint_moved(ViewFileList *vfl, FileData *fd, GList *ignore_list);
|
9
|
61
|
|
62
|
|
63 #endif
|