Imported Upstream version 0.20
[platform/upstream/desktop-file-utils.git] / src / keyfileutils.h
1 /* keyfileutils.h: useful functions for GKeyFile
2  * vim: set ts=2 sw=2 et: */
3
4 /*
5  * Copyright (C) 2007 Vincent Untz <vuntz@gnome.org>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (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
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
20  * USA.
21  */
22
23 #include <glib.h>
24
25 #define GROUP_DESKTOP_ENTRY "Desktop Entry"
26
27 gboolean dfu_key_file_rename_group (GKeyFile   *keyfile,
28                                     const char *oldgroup,
29                                     const char *newgroup);
30
31 void     dfu_key_file_drop_locale_strings (GKeyFile   *keyfile,
32                                            const char *group,
33                                            const char *key);
34
35 gboolean dfu_key_file_copy_key     (GKeyFile   *keyfile,
36                                     const char *fromgroup,
37                                     const char *fromkey,
38                                     const char *togroup,
39                                     const char *tokey);
40
41 void     dfu_key_file_merge_list   (GKeyFile   *keyfile,
42                                     const char *group,
43                                     const char *key,
44                                     const char *to_merge);
45
46 void     dfu_key_file_remove_list  (GKeyFile   *keyfile,
47                                     const char *group,
48                                     const char *key,
49                                     const char *to_remove);
50
51 gboolean dfu_key_file_to_path      (GKeyFile     *keyfile,
52                                     const char   *path,
53                                     GError      **error);