updated copyright in source files
[geeqie.git] / src / view_file_list.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 The Geeqie Team
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 VIEW_FILE_LIST_H
14 #define VIEW_FILE_LIST_H
15
16
17 #include "filelist.h"
18
19
20 ViewFileList *vflist_new(const gchar *path, gint thumbs);
21
22 void vflist_set_status_func(ViewFileList *vfl,
23                             void (*func)(ViewFileList *vfl, gpointer data), gpointer data);
24 void vflist_set_thumb_status_func(ViewFileList *vfl,
25                                   void (*func)(ViewFileList *vfl, gdouble val, const gchar *text, gpointer data),
26                                   gpointer data);
27
28 void vflist_set_layout(ViewFileList *vfl, LayoutWindow *layout);
29
30 gint vflist_set_path(ViewFileList *vfl, const gchar *path);
31 gint vflist_refresh(ViewFileList *vfl);
32
33 void vflist_thumb_set(ViewFileList *vfl, gint enable);
34 void vflist_marks_set(ViewFileList *vfl, gint enable);
35 void vflist_sort_set(ViewFileList *vfl, SortType type, gint ascend);
36
37 FileData *vflist_index_get_data(ViewFileList *vfl, gint row);
38 gchar *vflist_index_get_path(ViewFileList *vfl, gint row);
39 gint vflist_index_by_path(ViewFileList *vfl, const gchar *path);
40 gint vflist_count(ViewFileList *vfl, gint64 *bytes);
41 GList *vflist_get_list(ViewFileList *vfl);
42
43 gint vflist_index_is_selected(ViewFileList *vfl, gint row);
44 gint vflist_selection_count(ViewFileList *vfl, gint64 *bytes);
45 GList *vflist_selection_get_list(ViewFileList *vfl);
46 GList *vflist_selection_get_list_by_index(ViewFileList *vfl);
47
48 void vflist_select_all(ViewFileList *vfl);
49 void vflist_select_none(ViewFileList *vfl);
50 void vflist_select_by_path(ViewFileList *vfl, const gchar *path);
51 void vflist_select_by_fd(ViewFileList *vfl, FileData *fd);
52
53 void vflist_mark_to_selection(ViewFileList *vfl, gint mark, MarkToSelectionMode mode);
54 void vflist_selection_to_mark(ViewFileList *vfl, gint mark, SelectionToMarkMode mode);
55
56 void vflist_select_marked(ViewFileList *vfl, gint mark);
57 void vflist_mark_selected(ViewFileList *vfl, gint mark, gint value);
58
59 gint vflist_maint_renamed(ViewFileList *vfl, FileData *fd);
60 gint vflist_maint_removed(ViewFileList *vfl, FileData *fd, GList *ignore_list);
61 gint vflist_maint_moved(ViewFileList *vfl, FileData *fd, GList *ignore_list);
62
63
64 #endif