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