Remove commented out code.
[geeqie.git] / src / view_file_list.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 - 2012 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 "filedata.h"
18
19 gboolean vflist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
20 gboolean vflist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
21 gboolean vflist_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
22
23 void vflist_dnd_init(ViewFile *vf);
24
25 void vflist_destroy_cb(GtkWidget *widget, gpointer data);
26 ViewFile *vflist_new(ViewFile *vf, FileData *dir_fd);
27
28 gboolean vflist_set_fd(ViewFile *vf, FileData *dir_fd);
29 gboolean vflist_refresh(ViewFile *vf);
30
31 void vflist_thumb_set(ViewFile *vf, gboolean enable);
32 void vflist_marks_set(ViewFile *vf, gboolean enable);
33 void vflist_sort_set(ViewFile *vf, SortType type, gboolean ascend);
34
35 GList *vflist_selection_get_one(ViewFile *vf, FileData *fd);
36 GList *vflist_pop_menu_file_list(ViewFile *vf);
37 void vflist_pop_menu_view_cb(GtkWidget *widget, gpointer data);
38 void vflist_pop_menu_rename_cb(GtkWidget *widget, gpointer data);
39 void vflist_pop_menu_refresh_cb(GtkWidget *widget, gpointer data);
40 void vflist_popup_destroy_cb(GtkWidget *widget, gpointer data);
41 void vflist_pop_menu_thumbs_cb(GtkWidget *widget, gpointer data);
42
43 FileData *vflist_index_get_data(ViewFile *vf, gint row);
44 gint vflist_index_by_fd(ViewFile *vf, FileData *fd);
45 guint vflist_count(ViewFile *vf, gint64 *bytes);
46 GList *vflist_get_list(ViewFile *vf);
47
48 gboolean vflist_index_is_selected(ViewFile *vf, gint row);
49 guint vflist_selection_count(ViewFile *vf, gint64 *bytes);
50 GList *vflist_selection_get_list(ViewFile *vf);
51 GList *vflist_selection_get_list_by_index(ViewFile *vf);
52
53 void vflist_select_all(ViewFile *vf);
54 void vflist_select_none(ViewFile *vf);
55 void vflist_select_invert(ViewFile *vf);
56 void vflist_select_by_fd(ViewFile *vf, FileData *fd);
57
58 void vflist_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode);
59 void vflist_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode);
60
61 void vflist_color_set(ViewFile *vf, FileData *fd, gboolean color_set);
62
63 void vflist_thumb_progress_count(GList *list, gint *count, gint *done);
64 void vflist_set_thumb_fd(ViewFile *vf, FileData *fd);
65 FileData *vflist_thumb_next_fd(ViewFile *vf);
66 void vflist_thumb_reset_all(ViewFile *vf);
67
68 #endif
69 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */