annotate src/view_file_list.h @ 1802:956aab097ea7

added 2010 to copyright text
author nadvornik
date Tue, 16 Feb 2010 21:18:03 +0000
parents caf0e4b8319d
children
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
1802
956aab097ea7 added 2010 to copyright text
nadvornik
parents: 1761
diff changeset
4 * Copyright (C) 2008 - 2010 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
586
905688aa2317 split filelist.c to filefilter.c and filedata.c
nadvornik
parents: 578
diff changeset
17 #include "filedata.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
18
1453
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
19 gboolean vflist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
20 gboolean vflist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
21 gboolean vflist_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
22
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
23 void vflist_dnd_init(ViewFile *vf);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
24
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
25 void vflist_destroy_cb(GtkWidget *widget, gpointer data);
783
d6a7fb4b8e7c replaced directory path with FileData* dir_fd
nadvornik
parents: 736
diff changeset
26 ViewFile *vflist_new(ViewFile *vf, FileData *dir_fd);
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
27
1453
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
28 gboolean vflist_set_fd(ViewFile *vf, FileData *dir_fd);
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
29 gboolean vflist_refresh(ViewFile *vf);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
30
1453
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
31 void vflist_thumb_set(ViewFile *vf, gboolean enable);
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
32 void vflist_marks_set(ViewFile *vf, gboolean enable);
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
33 void vflist_sort_set(ViewFile *vf, SortType type, gboolean ascend);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
34
1761
caf0e4b8319d consider sidecars in layout_image popup menu
nadvornik
parents: 1608
diff changeset
35 GList *vflist_selection_get_one(ViewFile *vf, FileData *fd);
634
92208e71673b Introduce vf_pop_menu_file_list() as a wrapper to
zas_
parents: 632
diff changeset
36 GList *vflist_pop_menu_file_list(ViewFile *vf);
637
8a1202efa51e Add some wrapper functions for not yet common code.
zas_
parents: 634
diff changeset
37 void vflist_pop_menu_view_cb(GtkWidget *widget, gpointer data);
8a1202efa51e Add some wrapper functions for not yet common code.
zas_
parents: 634
diff changeset
38 void vflist_pop_menu_rename_cb(GtkWidget *widget, gpointer data);
8a1202efa51e Add some wrapper functions for not yet common code.
zas_
parents: 634
diff changeset
39 void vflist_pop_menu_refresh_cb(GtkWidget *widget, gpointer data);
8a1202efa51e Add some wrapper functions for not yet common code.
zas_
parents: 634
diff changeset
40 void vflist_popup_destroy_cb(GtkWidget *widget, gpointer data);
659
542bb47fef04 Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents: 637
diff changeset
41 void vflist_pop_menu_thumbs_cb(GtkWidget *widget, gpointer data);
634
92208e71673b Introduce vf_pop_menu_file_list() as a wrapper to
zas_
parents: 632
diff changeset
42
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
43 FileData *vflist_index_get_data(ViewFile *vf, gint row);
1503
331e2d60d447 improved next/prev operation on sidecar files
nadvornik
parents: 1453
diff changeset
44 gint vflist_index_by_fd(ViewFile *vf, FileData *fd);
736
a7289f9e8d29 Fix signed vs unsigned warnings.
zas_
parents: 659
diff changeset
45 guint vflist_count(ViewFile *vf, gint64 *bytes);
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
46 GList *vflist_get_list(ViewFile *vf);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
47
1453
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
48 gboolean vflist_index_is_selected(ViewFile *vf, gint row);
736
a7289f9e8d29 Fix signed vs unsigned warnings.
zas_
parents: 659
diff changeset
49 guint vflist_selection_count(ViewFile *vf, gint64 *bytes);
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
50 GList *vflist_selection_get_list(ViewFile *vf);
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
51 GList *vflist_selection_get_list_by_index(ViewFile *vf);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
52
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
53 void vflist_select_all(ViewFile *vf);
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
54 void vflist_select_none(ViewFile *vf);
601
93c6dc4c537b Add a way to invert the current selection.
zas_
parents: 586
diff changeset
55 void vflist_select_invert(ViewFile *vf);
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
56 void vflist_select_by_fd(ViewFile *vf, FileData *fd);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
57
573
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
58 void vflist_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode);
2996f1bbc305 Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents: 559
diff changeset
59 void vflist_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode);
161
08ab6367b4e6 complete set of boolean operation with marks -
nadvornik
parents: 150
diff changeset
60
1453
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
61 void vflist_color_set(ViewFile *vf, FileData *fd, gboolean color_set);
1608
fe9ac4a5c969 Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents: 1506
diff changeset
62
fe9ac4a5c969 Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents: 1506
diff changeset
63 void vflist_thumb_progress_count(GList *list, gint *count, gint *done);
fe9ac4a5c969 Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents: 1506
diff changeset
64 void vflist_set_thumb_fd(ViewFile *vf, FileData *fd);
fe9ac4a5c969 Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents: 1506
diff changeset
65 FileData *vflist_thumb_next_fd(ViewFile *vf);
fe9ac4a5c969 Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents: 1506
diff changeset
66 void vflist_thumb_reset_all(ViewFile *vf);
659
542bb47fef04 Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents: 637
diff changeset
67
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
68 #endif
1055
1646720364cf Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents: 787
diff changeset
69 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */