Simplify vflist_get_formatted()
[geeqie.git] / src / collect-io.h
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef COLLECT_IO_H
23 #define COLLECT_IO_H
24
25 typedef enum {
26         COLLECTION_LOAD_NONE    = 0,
27         COLLECTION_LOAD_APPEND  = 1 << 0,
28         COLLECTION_LOAD_FLUSH   = 1 << 1,
29         COLLECTION_LOAD_GEOMETRY= 1 << 2,
30 } CollectionLoadFlags;
31
32 gboolean collection_load(CollectionData *cd, const gchar *path, CollectionLoadFlags flags);
33
34 gboolean collection_load_begin(CollectionData *cd, const gchar *path, CollectionLoadFlags flags);
35 void collection_load_stop(CollectionData *cd);
36
37 void collection_load_thumb_idle(CollectionData *cd);
38
39 gboolean collection_save(CollectionData *cd, const gchar *path);
40
41 gboolean collection_load_only_geometry(CollectionData *cd, const gchar *path);
42
43
44 /**
45  * @headerfile collect_manager_moved
46  * these are used to update collections contained in user's collection
47  * folder when moving or renaming files.
48  * also handles:
49  *   deletes file when newpath == NULL
50  *   adds file when oldpath == NULL
51  */
52 void collect_manager_moved(FileData *fd);
53
54 /**
55  * @headerfile collect_manager_add
56  * add from a specific collection
57  */
58 void collect_manager_add(FileData *fd, const gchar *collection);
59
60 /**
61  * @headerfile collect_manager_remove
62  * removing from a specific collection
63  */
64 void collect_manager_remove(FileData *fd, const gchar *collection);
65
66 /**
67  * @headerfile collect_manager_flush
68  * commit pending operations to disk
69  */
70 void collect_manager_flush(void);
71
72 void collect_manager_notify_cb(FileData *fd, NotifyType type, gpointer data);
73 void collect_manager_list(GList **names_exc, GList **names_inc, GList **paths);
74
75 #endif
76 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */