comparison src/view_file_list.h @ 1453:bc3f5c0432f6

gint -> gboolean where applicable. The end (ouf!).
author zas_
date Mon, 16 Mar 2009 20:39:09 +0000
parents 8b89e3ff286b
children 331e2d60d447
comparison
equal deleted inserted replaced
1452:67b40740122e 1453:bc3f5c0432f6
14 #define VIEW_FILE_LIST_H 14 #define VIEW_FILE_LIST_H
15 15
16 16
17 #include "filedata.h" 17 #include "filedata.h"
18 18
19 gint vflist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data); 19 gboolean vflist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
20 gint vflist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data); 20 gboolean vflist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
21 gint vflist_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data); 21 gboolean vflist_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
22 22
23 void vflist_dnd_init(ViewFile *vf); 23 void vflist_dnd_init(ViewFile *vf);
24 24
25 void vflist_destroy_cb(GtkWidget *widget, gpointer data); 25 void vflist_destroy_cb(GtkWidget *widget, gpointer data);
26 ViewFile *vflist_new(ViewFile *vf, FileData *dir_fd); 26 ViewFile *vflist_new(ViewFile *vf, FileData *dir_fd);
27 27
28 gint vflist_set_fd(ViewFile *vf, FileData *dir_fd); 28 gboolean vflist_set_fd(ViewFile *vf, FileData *dir_fd);
29 gint vflist_refresh(ViewFile *vf); 29 gboolean vflist_refresh(ViewFile *vf);
30 30
31 void vflist_thumb_set(ViewFile *vf, gint enable); 31 void vflist_thumb_set(ViewFile *vf, gboolean enable);
32 void vflist_marks_set(ViewFile *vf, gint enable); 32 void vflist_marks_set(ViewFile *vf, gboolean enable);
33 void vflist_sort_set(ViewFile *vf, SortType type, gint ascend); 33 void vflist_sort_set(ViewFile *vf, SortType type, gboolean ascend);
34 34
35 GList *vflist_pop_menu_file_list(ViewFile *vf); 35 GList *vflist_pop_menu_file_list(ViewFile *vf);
36 void vflist_pop_menu_view_cb(GtkWidget *widget, gpointer data); 36 void vflist_pop_menu_view_cb(GtkWidget *widget, gpointer data);
37 void vflist_pop_menu_rename_cb(GtkWidget *widget, gpointer data); 37 void vflist_pop_menu_rename_cb(GtkWidget *widget, gpointer data);
38 void vflist_pop_menu_refresh_cb(GtkWidget *widget, gpointer data); 38 void vflist_pop_menu_refresh_cb(GtkWidget *widget, gpointer data);
42 FileData *vflist_index_get_data(ViewFile *vf, gint row); 42 FileData *vflist_index_get_data(ViewFile *vf, gint row);
43 gint vflist_index_by_path(ViewFile *vf, const gchar *path); 43 gint vflist_index_by_path(ViewFile *vf, const gchar *path);
44 guint vflist_count(ViewFile *vf, gint64 *bytes); 44 guint vflist_count(ViewFile *vf, gint64 *bytes);
45 GList *vflist_get_list(ViewFile *vf); 45 GList *vflist_get_list(ViewFile *vf);
46 46
47 gint vflist_index_is_selected(ViewFile *vf, gint row); 47 gboolean vflist_index_is_selected(ViewFile *vf, gint row);
48 guint vflist_selection_count(ViewFile *vf, gint64 *bytes); 48 guint vflist_selection_count(ViewFile *vf, gint64 *bytes);
49 GList *vflist_selection_get_list(ViewFile *vf); 49 GList *vflist_selection_get_list(ViewFile *vf);
50 GList *vflist_selection_get_list_by_index(ViewFile *vf); 50 GList *vflist_selection_get_list_by_index(ViewFile *vf);
51 51
52 void vflist_select_all(ViewFile *vf); 52 void vflist_select_all(ViewFile *vf);
55 void vflist_select_by_fd(ViewFile *vf, FileData *fd); 55 void vflist_select_by_fd(ViewFile *vf, FileData *fd);
56 56
57 void vflist_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode); 57 void vflist_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode);
58 void vflist_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode); 58 void vflist_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode);
59 59
60 void vflist_select_marked(ViewFile *vf, gint mark); 60 void vflist_color_set(ViewFile *vf, FileData *fd, gboolean color_set);
61 void vflist_mark_selected(ViewFile *vf, gint mark, gint value);
62
63 void vflist_color_set(ViewFile *vf, FileData *fd, gint color_set);
64 61
65 #endif 62 #endif
66 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ 63 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */