annotate src/view_file_list.h @ 559:c0e47b628f76

Drop redundant vflist_thumbs_set() introduced in revision 649, modify and use existing vflist_thumb_set().
author zas_
date Sat, 03 May 2008 12:48:45 +0000
parents cca1c3b1b948
children 2996f1bbc305
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1 /*
196
f6e307c7bad6 rename GQview -> Geeqie over the code
nadvornik
parents: 161
diff changeset
2 * Geeqie
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
3 * (C) 2004 John Ellis
475
48c8e49b571c updated copyright in source files
nadvornik
parents: 196
diff changeset
4 * Copyright (C) 2008 The Geeqie Team
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
5 *
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
6 * Author: John Ellis
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
7 *
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
8 * This software is released under the GNU General Public License (GNU GPL).
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
9 * Please read the included file COPYING for more information.
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
10 * This software comes with no warranty of any kind, use at your own risk!
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
11 */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
12
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
13 #ifndef VIEW_FILE_LIST_H
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
14 #define VIEW_FILE_LIST_H
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
15
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
16
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
17 #include "filelist.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
18
555
cca1c3b1b948 Set thumbs_enabled through new function vflist_thumbs_set() instead
zas_
parents: 475
diff changeset
19 ViewFileList *vflist_new(const gchar *path);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
20
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
21 void vflist_set_status_func(ViewFileList *vfl,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
22 void (*func)(ViewFileList *vfl, gpointer data), gpointer data);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
23 void vflist_set_thumb_status_func(ViewFileList *vfl,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
24 void (*func)(ViewFileList *vfl, gdouble val, const gchar *text, gpointer data),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
25 gpointer data);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
26
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
27 void vflist_set_layout(ViewFileList *vfl, LayoutWindow *layout);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
28
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
29 gint vflist_set_path(ViewFileList *vfl, const gchar *path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
30 gint vflist_refresh(ViewFileList *vfl);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
31
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
32 void vflist_thumb_set(ViewFileList *vfl, gint enable);
132
661cd91e5a7e First implementation of marks for all photos.
bruclik
parents: 9
diff changeset
33 void vflist_marks_set(ViewFileList *vfl, gint enable);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
34 void vflist_sort_set(ViewFileList *vfl, SortType type, gint ascend);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
35
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
36 FileData *vflist_index_get_data(ViewFileList *vfl, gint row);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
37 gchar *vflist_index_get_path(ViewFileList *vfl, gint row);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
38 gint vflist_index_by_path(ViewFileList *vfl, const gchar *path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
39 gint vflist_count(ViewFileList *vfl, gint64 *bytes);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
40 GList *vflist_get_list(ViewFileList *vfl);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
41
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
42 gint vflist_index_is_selected(ViewFileList *vfl, gint row);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
43 gint vflist_selection_count(ViewFileList *vfl, gint64 *bytes);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
44 GList *vflist_selection_get_list(ViewFileList *vfl);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
45 GList *vflist_selection_get_list_by_index(ViewFileList *vfl);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
46
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
47 void vflist_select_all(ViewFileList *vfl);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
48 void vflist_select_none(ViewFileList *vfl);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
49 void vflist_select_by_path(ViewFileList *vfl, const gchar *path);
138
71e1ebee420e replaced gchar* path with FileData *fd
nadvornik
parents: 132
diff changeset
50 void vflist_select_by_fd(ViewFileList *vfl, FileData *fd);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
51
161
08ab6367b4e6 complete set of boolean operation with marks -
nadvornik
parents: 150
diff changeset
52 void vflist_mark_to_selection(ViewFileList *vfl, gint mark, MarkToSelectionMode mode);
08ab6367b4e6 complete set of boolean operation with marks -
nadvornik
parents: 150
diff changeset
53 void vflist_selection_to_mark(ViewFileList *vfl, gint mark, SelectionToMarkMode mode);
08ab6367b4e6 complete set of boolean operation with marks -
nadvornik
parents: 150
diff changeset
54
150
976fba0add7c more operations with file marks
nadvornik
parents: 138
diff changeset
55 void vflist_select_marked(ViewFileList *vfl, gint mark);
976fba0add7c more operations with file marks
nadvornik
parents: 138
diff changeset
56 void vflist_mark_selected(ViewFileList *vfl, gint mark, gint value);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
57
138
71e1ebee420e replaced gchar* path with FileData *fd
nadvornik
parents: 132
diff changeset
58 gint vflist_maint_renamed(ViewFileList *vfl, FileData *fd);
71e1ebee420e replaced gchar* path with FileData *fd
nadvornik
parents: 132
diff changeset
59 gint vflist_maint_removed(ViewFileList *vfl, FileData *fd, GList *ignore_list);
71e1ebee420e replaced gchar* path with FileData *fd
nadvornik
parents: 132
diff changeset
60 gint vflist_maint_moved(ViewFileList *vfl, FileData *fd, GList *ignore_list);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
61
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
62
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
63 #endif