Mercurial > geeqie
annotate src/filedata.h @ 772:f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
changes made by external editors more precisely
author | nadvornik |
---|---|
date | Sat, 31 May 2008 19:44:41 +0000 |
parents | 81f9e8dbb4bf |
children | d6a7fb4b8e7c |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 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 | |
586 | 14 #ifndef FILEDATA_H |
15 #define FILEDATA_H | |
9 | 16 |
17 gchar *text_from_size(gint64 size); | |
18 gchar *text_from_size_abrev(gint64 size); | |
19 const gchar *text_from_time(time_t t); | |
20 | |
21 /* this expects a utf-8 path */ | |
138 | 22 FileData *file_data_new_simple(const gchar *path_utf8); |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
23 |
138 | 24 FileData *file_data_ref(FileData *fd); |
25 void file_data_unref(FileData *fd); | |
9 | 26 |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
27 void file_data_increment_version(FileData *fd); |
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
28 |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
139
diff
changeset
|
29 gboolean file_data_add_change_info(FileData *fd, FileDataChangeType type, const gchar *src, const gchar *dest); |
138 | 30 void file_data_change_info_free(FileDataChangeInfo *fdci, FileData *fd); |
31 | |
32 gint filelist_sort_compare_filedata(FileData *fa, FileData *fb); | |
167 | 33 gint filelist_sort_compare_filedata_full(FileData *fa, FileData *fb, SortType method, gint ascend); |
9 | 34 GList *filelist_sort(GList *list, SortType method, gint ascend); |
35 GList *filelist_insert_sort(GList *list, FileData *fd, SortType method, gint ascend); | |
138 | 36 GList *filelist_sort_full(GList *list, SortType method, gint ascend, GCompareFunc cb); |
37 GList *filelist_insert_sort_full(GList *list, void *data, SortType method, gint ascend, GCompareFunc cb); | |
9 | 38 |
39 gint filelist_read(const gchar *path, GList **files, GList **dirs); | |
138 | 40 gint filelist_read_lstat(const gchar *path, GList **files, GList **dirs); |
9 | 41 void filelist_free(GList *list); |
138 | 42 GList *filelist_copy(GList *list); |
43 GList *filelist_from_path_list(GList *list); | |
44 GList *filelist_to_path_list(GList *list); | |
45 | |
46 GList *filelist_filter(GList *list, gint is_dir_list); | |
47 | |
48 GList *filelist_sort_path(GList *list); | |
49 GList *filelist_recursive(const gchar *path); | |
9 | 50 |
590 | 51 gchar *file_data_sc_list_to_string(FileData *fd); |
52 gboolean file_data_add_ci(FileData *fd, FileDataChangeType type, const gchar *src, const gchar *dest); | |
751 | 53 gboolean file_data_sc_add_ci_copy(FileData *fd, const gchar *dest_path); |
54 gboolean file_data_sc_add_ci_move(FileData *fd, const gchar *dest_path); | |
55 gboolean file_data_sc_add_ci_rename(FileData *fd, const gchar *dest_path); | |
590 | 56 gboolean file_data_sc_add_ci_delete(FileData *fd); |
753 | 57 gboolean file_data_sc_add_ci_unspecified(FileData *fd, const gchar *dest_path); |
751 | 58 |
59 gboolean file_data_sc_add_ci_delete_list(GList *fd_list); | |
60 gboolean file_data_sc_add_ci_copy_list(GList *fd_list, const gchar *dest); | |
61 gboolean file_data_sc_add_ci_move_list(GList *fd_list, const gchar *dest); | |
62 gboolean file_data_sc_add_ci_rename_list(GList *fd_list, const gchar *dest); | |
753 | 63 gboolean file_data_sc_add_ci_unspecified_list(GList *fd_list, const gchar *dest); |
751 | 64 |
65 gboolean file_data_sc_update_ci_copy_list(GList *fd_list, const gchar *dest); | |
66 gboolean file_data_sc_update_ci_move_list(GList *fd_list, const gchar *dest); | |
753 | 67 gboolean file_data_sc_update_ci_unspecified_list(GList *fd_list, const gchar *dest); |
751 | 68 |
69 | |
70 gint file_data_sc_update_ci_copy(FileData *fd, const gchar *dest_path); | |
71 gint file_data_sc_update_ci_move(FileData *fd, const gchar *dest_path); | |
72 gint file_data_sc_update_ci_rename(FileData *fd, const gchar *dest_path); | |
753 | 73 gint file_data_sc_update_ci_unspecified(FileData *fd, const gchar *dest_path); |
590 | 74 gint file_data_sc_check_ci_dest(FileData *fd); |
75 gboolean file_data_sc_perform_ci(FileData *fd); | |
76 gint file_data_sc_apply_ci(FileData *fd); | |
751 | 77 void file_data_sc_free_ci(FileData *fd); |
78 void file_data_sc_free_ci_list(GList *fd_list); | |
590 | 79 |
9 | 80 #endif |