First implementation of marks for all photos.
[geeqie.git] / src / view_file_list.h
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_marks_set(ViewFileList *vfl, gint enable);
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);
50
51
52 gint vflist_maint_renamed(ViewFileList *vfl, const gchar *source, const gchar *dest);
53 gint vflist_maint_removed(ViewFileList *vfl, const gchar *path, GList *ignore_list);
54 gint vflist_maint_moved(ViewFileList *vfl, const gchar *source, const gchar *dest, GList *ignore_list);
55
56
57 #endif