Fix missing translation
[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 #include "typedefs.h"
26
27 struct CollectionData;
28 struct FileData;
29
30 enum CollectionLoadFlags {
31         COLLECTION_LOAD_NONE    = 0,
32         COLLECTION_LOAD_APPEND  = 1 << 0,
33         COLLECTION_LOAD_FLUSH   = 1 << 1,
34         COLLECTION_LOAD_GEOMETRY= 1 << 2,
35 };
36
37 gboolean collection_load(CollectionData *cd, const gchar *path, CollectionLoadFlags flags);
38
39 gboolean collection_load_begin(CollectionData *cd, const gchar *path, CollectionLoadFlags flags);
40 void collection_load_stop(CollectionData *cd);
41
42 void collection_load_thumb_idle(CollectionData *cd);
43
44 gboolean collection_save(CollectionData *cd, const gchar *path);
45
46 gboolean collection_load_only_geometry(CollectionData *cd, const gchar *path);
47
48
49 /**
50  * @headerfile collect_manager_moved
51  * these are used to update collections contained in user's collection
52  * folder when moving or renaming files.
53  * also handles:
54  *   deletes file when newpath == NULL
55  *   adds file when oldpath == NULL
56  */
57 void collect_manager_moved(FileData *fd);
58
59 /**
60  * @headerfile collect_manager_add
61  * add from a specific collection
62  */
63 void collect_manager_add(FileData *fd, const gchar *collection);
64
65 /**
66  * @headerfile collect_manager_remove
67  * removing from a specific collection
68  */
69 void collect_manager_remove(FileData *fd, const gchar *collection);
70
71 /**
72  * @headerfile collect_manager_flush
73  * commit pending operations to disk
74  */
75 void collect_manager_flush();
76
77 void collect_manager_notify_cb(FileData *fd, NotifyType type, gpointer data);
78 void collect_manager_list(GList **names_exc, GList **names_inc, GList **paths);
79
80 #endif
81 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */