comparison src/layout.h @ 138:71e1ebee420e

replaced gchar* path with FileData *fd
author nadvornik
date Tue, 11 Sep 2007 20:06:29 +0000
parents 661cd91e5a7e
children 1a42a2451575
comparison
equal deleted inserted replaced
137:be3328a58875 138:71e1ebee420e
36 void layout_status_update_all(LayoutWindow *lw); 36 void layout_status_update_all(LayoutWindow *lw);
37 37
38 GList *layout_list(LayoutWindow *lw); 38 GList *layout_list(LayoutWindow *lw);
39 gint layout_list_count(LayoutWindow *lw, gint64 *bytes); 39 gint layout_list_count(LayoutWindow *lw, gint64 *bytes);
40 const gchar *layout_list_get_path(LayoutWindow *lw, gint index); 40 const gchar *layout_list_get_path(LayoutWindow *lw, gint index);
41 FileData *layout_list_get_fd(LayoutWindow *lw, gint index);
41 gint layout_list_get_index(LayoutWindow *lw, const gchar *path); 42 gint layout_list_get_index(LayoutWindow *lw, const gchar *path);
42 void layout_list_sync_path(LayoutWindow *lw, const gchar *path); 43 void layout_list_sync_fd(LayoutWindow *lw, FileData *fd);
43 44
44 GList *layout_selection_list(LayoutWindow *lw); 45 GList *layout_selection_list(LayoutWindow *lw);
45 /* return list of pointers to int for selection */ 46 /* return list of pointers to int for selection */
46 GList *layout_selection_list_by_index(LayoutWindow *lw); 47 GList *layout_selection_list_by_index(LayoutWindow *lw);
47 gint layout_selection_count(LayoutWindow *lw, gint64 *bytes); 48 gint layout_selection_count(LayoutWindow *lw, gint64 *bytes);
84 void layout_toolbar_toggle(LayoutWindow *lw); 85 void layout_toolbar_toggle(LayoutWindow *lw);
85 gint layout_toolbar_hidden(LayoutWindow *lw); 86 gint layout_toolbar_hidden(LayoutWindow *lw);
86 87
87 void layout_split_change(LayoutWindow *lw, ImageSplitMode mode); 88 void layout_split_change(LayoutWindow *lw, ImageSplitMode mode);
88 89
89 void layout_maint_renamed(const gchar *source, const gchar *dest); 90 void layout_maint_renamed(FileData *fd);
90 void layout_maint_removed(const gchar *path, GList *ignore_list); 91 void layout_maint_removed(FileData *fd, GList *ignore_list);
91 void layout_maint_moved(const gchar *source, const gchar *dest, GList *ignore_list); 92 void layout_maint_moved(FileData *fd, GList *ignore_list);
92 93
93 94
94 #endif 95 #endif
95 96
96 97