gwin32: Remove old win32 codepage ABI compat code
[glib.git] / glib / gkeyfile.h
blob8e7bfb9ddcbacaca617fb172a7d966f0d8e9a50e
1 /* gkeyfile.h - desktop entry file parser
3 * Copyright 2004 Red Hat, Inc.
5 * Ray Strode <halfline@hawaii.rr.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library 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 GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #ifndef __G_KEY_FILE_H__
22 #define __G_KEY_FILE_H__
24 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
25 #error "Only <glib.h> can be included directly."
26 #endif
28 #include <glib/gbytes.h>
29 #include <glib/gerror.h>
31 G_BEGIN_DECLS
33 typedef enum
35 G_KEY_FILE_ERROR_UNKNOWN_ENCODING,
36 G_KEY_FILE_ERROR_PARSE,
37 G_KEY_FILE_ERROR_NOT_FOUND,
38 G_KEY_FILE_ERROR_KEY_NOT_FOUND,
39 G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
40 G_KEY_FILE_ERROR_INVALID_VALUE
41 } GKeyFileError;
43 #define G_KEY_FILE_ERROR g_key_file_error_quark()
45 GLIB_AVAILABLE_IN_ALL
46 GQuark g_key_file_error_quark (void);
48 typedef struct _GKeyFile GKeyFile;
50 typedef enum
52 G_KEY_FILE_NONE = 0,
53 G_KEY_FILE_KEEP_COMMENTS = 1 << 0,
54 G_KEY_FILE_KEEP_TRANSLATIONS = 1 << 1
55 } GKeyFileFlags;
57 GLIB_AVAILABLE_IN_ALL
58 GKeyFile *g_key_file_new (void);
59 GLIB_AVAILABLE_IN_ALL
60 GKeyFile *g_key_file_ref (GKeyFile *key_file);
61 GLIB_AVAILABLE_IN_ALL
62 void g_key_file_unref (GKeyFile *key_file);
63 GLIB_AVAILABLE_IN_ALL
64 void g_key_file_free (GKeyFile *key_file);
65 GLIB_AVAILABLE_IN_ALL
66 void g_key_file_set_list_separator (GKeyFile *key_file,
67 gchar separator);
68 GLIB_AVAILABLE_IN_ALL
69 gboolean g_key_file_load_from_file (GKeyFile *key_file,
70 const gchar *file,
71 GKeyFileFlags flags,
72 GError **error);
73 GLIB_AVAILABLE_IN_ALL
74 gboolean g_key_file_load_from_data (GKeyFile *key_file,
75 const gchar *data,
76 gsize length,
77 GKeyFileFlags flags,
78 GError **error);
79 GLIB_AVAILABLE_IN_2_50
80 gboolean g_key_file_load_from_bytes (GKeyFile *key_file,
81 GBytes *bytes,
82 GKeyFileFlags flags,
83 GError **error);
84 GLIB_AVAILABLE_IN_ALL
85 gboolean g_key_file_load_from_dirs (GKeyFile *key_file,
86 const gchar *file,
87 const gchar **search_dirs,
88 gchar **full_path,
89 GKeyFileFlags flags,
90 GError **error);
91 GLIB_AVAILABLE_IN_ALL
92 gboolean g_key_file_load_from_data_dirs (GKeyFile *key_file,
93 const gchar *file,
94 gchar **full_path,
95 GKeyFileFlags flags,
96 GError **error);
97 GLIB_AVAILABLE_IN_ALL
98 gchar *g_key_file_to_data (GKeyFile *key_file,
99 gsize *length,
100 GError **error) G_GNUC_MALLOC;
101 GLIB_AVAILABLE_IN_2_40
102 gboolean g_key_file_save_to_file (GKeyFile *key_file,
103 const gchar *filename,
104 GError **error);
105 GLIB_AVAILABLE_IN_ALL
106 gchar *g_key_file_get_start_group (GKeyFile *key_file) G_GNUC_MALLOC;
107 GLIB_AVAILABLE_IN_ALL
108 gchar **g_key_file_get_groups (GKeyFile *key_file,
109 gsize *length) G_GNUC_MALLOC;
110 GLIB_AVAILABLE_IN_ALL
111 gchar **g_key_file_get_keys (GKeyFile *key_file,
112 const gchar *group_name,
113 gsize *length,
114 GError **error) G_GNUC_MALLOC;
115 GLIB_AVAILABLE_IN_ALL
116 gboolean g_key_file_has_group (GKeyFile *key_file,
117 const gchar *group_name);
118 GLIB_AVAILABLE_IN_ALL
119 gboolean g_key_file_has_key (GKeyFile *key_file,
120 const gchar *group_name,
121 const gchar *key,
122 GError **error);
123 GLIB_AVAILABLE_IN_ALL
124 gchar *g_key_file_get_value (GKeyFile *key_file,
125 const gchar *group_name,
126 const gchar *key,
127 GError **error) G_GNUC_MALLOC;
128 GLIB_AVAILABLE_IN_ALL
129 void g_key_file_set_value (GKeyFile *key_file,
130 const gchar *group_name,
131 const gchar *key,
132 const gchar *value);
133 GLIB_AVAILABLE_IN_ALL
134 gchar *g_key_file_get_string (GKeyFile *key_file,
135 const gchar *group_name,
136 const gchar *key,
137 GError **error) G_GNUC_MALLOC;
138 GLIB_AVAILABLE_IN_ALL
139 void g_key_file_set_string (GKeyFile *key_file,
140 const gchar *group_name,
141 const gchar *key,
142 const gchar *string);
143 GLIB_AVAILABLE_IN_ALL
144 gchar *g_key_file_get_locale_string (GKeyFile *key_file,
145 const gchar *group_name,
146 const gchar *key,
147 const gchar *locale,
148 GError **error) G_GNUC_MALLOC;
149 GLIB_AVAILABLE_IN_ALL
150 void g_key_file_set_locale_string (GKeyFile *key_file,
151 const gchar *group_name,
152 const gchar *key,
153 const gchar *locale,
154 const gchar *string);
155 GLIB_AVAILABLE_IN_ALL
156 gboolean g_key_file_get_boolean (GKeyFile *key_file,
157 const gchar *group_name,
158 const gchar *key,
159 GError **error);
160 GLIB_AVAILABLE_IN_ALL
161 void g_key_file_set_boolean (GKeyFile *key_file,
162 const gchar *group_name,
163 const gchar *key,
164 gboolean value);
165 GLIB_AVAILABLE_IN_ALL
166 gint g_key_file_get_integer (GKeyFile *key_file,
167 const gchar *group_name,
168 const gchar *key,
169 GError **error);
170 GLIB_AVAILABLE_IN_ALL
171 void g_key_file_set_integer (GKeyFile *key_file,
172 const gchar *group_name,
173 const gchar *key,
174 gint value);
175 GLIB_AVAILABLE_IN_ALL
176 gint64 g_key_file_get_int64 (GKeyFile *key_file,
177 const gchar *group_name,
178 const gchar *key,
179 GError **error);
180 GLIB_AVAILABLE_IN_ALL
181 void g_key_file_set_int64 (GKeyFile *key_file,
182 const gchar *group_name,
183 const gchar *key,
184 gint64 value);
185 GLIB_AVAILABLE_IN_ALL
186 guint64 g_key_file_get_uint64 (GKeyFile *key_file,
187 const gchar *group_name,
188 const gchar *key,
189 GError **error);
190 GLIB_AVAILABLE_IN_ALL
191 void g_key_file_set_uint64 (GKeyFile *key_file,
192 const gchar *group_name,
193 const gchar *key,
194 guint64 value);
195 GLIB_AVAILABLE_IN_ALL
196 gdouble g_key_file_get_double (GKeyFile *key_file,
197 const gchar *group_name,
198 const gchar *key,
199 GError **error);
200 GLIB_AVAILABLE_IN_ALL
201 void g_key_file_set_double (GKeyFile *key_file,
202 const gchar *group_name,
203 const gchar *key,
204 gdouble value);
205 GLIB_AVAILABLE_IN_ALL
206 gchar **g_key_file_get_string_list (GKeyFile *key_file,
207 const gchar *group_name,
208 const gchar *key,
209 gsize *length,
210 GError **error) G_GNUC_MALLOC;
211 GLIB_AVAILABLE_IN_ALL
212 void g_key_file_set_string_list (GKeyFile *key_file,
213 const gchar *group_name,
214 const gchar *key,
215 const gchar * const list[],
216 gsize length);
217 GLIB_AVAILABLE_IN_ALL
218 gchar **g_key_file_get_locale_string_list (GKeyFile *key_file,
219 const gchar *group_name,
220 const gchar *key,
221 const gchar *locale,
222 gsize *length,
223 GError **error) G_GNUC_MALLOC;
224 GLIB_AVAILABLE_IN_ALL
225 void g_key_file_set_locale_string_list (GKeyFile *key_file,
226 const gchar *group_name,
227 const gchar *key,
228 const gchar *locale,
229 const gchar * const list[],
230 gsize length);
231 GLIB_AVAILABLE_IN_ALL
232 gboolean *g_key_file_get_boolean_list (GKeyFile *key_file,
233 const gchar *group_name,
234 const gchar *key,
235 gsize *length,
236 GError **error) G_GNUC_MALLOC;
237 GLIB_AVAILABLE_IN_ALL
238 void g_key_file_set_boolean_list (GKeyFile *key_file,
239 const gchar *group_name,
240 const gchar *key,
241 gboolean list[],
242 gsize length);
243 GLIB_AVAILABLE_IN_ALL
244 gint *g_key_file_get_integer_list (GKeyFile *key_file,
245 const gchar *group_name,
246 const gchar *key,
247 gsize *length,
248 GError **error) G_GNUC_MALLOC;
249 GLIB_AVAILABLE_IN_ALL
250 void g_key_file_set_double_list (GKeyFile *key_file,
251 const gchar *group_name,
252 const gchar *key,
253 gdouble list[],
254 gsize length);
255 GLIB_AVAILABLE_IN_ALL
256 gdouble *g_key_file_get_double_list (GKeyFile *key_file,
257 const gchar *group_name,
258 const gchar *key,
259 gsize *length,
260 GError **error) G_GNUC_MALLOC;
261 GLIB_AVAILABLE_IN_ALL
262 void g_key_file_set_integer_list (GKeyFile *key_file,
263 const gchar *group_name,
264 const gchar *key,
265 gint list[],
266 gsize length);
267 GLIB_AVAILABLE_IN_ALL
268 gboolean g_key_file_set_comment (GKeyFile *key_file,
269 const gchar *group_name,
270 const gchar *key,
271 const gchar *comment,
272 GError **error);
273 GLIB_AVAILABLE_IN_ALL
274 gchar *g_key_file_get_comment (GKeyFile *key_file,
275 const gchar *group_name,
276 const gchar *key,
277 GError **error) G_GNUC_MALLOC;
279 GLIB_AVAILABLE_IN_ALL
280 gboolean g_key_file_remove_comment (GKeyFile *key_file,
281 const gchar *group_name,
282 const gchar *key,
283 GError **error);
284 GLIB_AVAILABLE_IN_ALL
285 gboolean g_key_file_remove_key (GKeyFile *key_file,
286 const gchar *group_name,
287 const gchar *key,
288 GError **error);
289 GLIB_AVAILABLE_IN_ALL
290 gboolean g_key_file_remove_group (GKeyFile *key_file,
291 const gchar *group_name,
292 GError **error);
294 /* Defines for handling freedesktop.org Desktop files */
295 #define G_KEY_FILE_DESKTOP_GROUP "Desktop Entry"
297 #define G_KEY_FILE_DESKTOP_KEY_TYPE "Type"
298 #define G_KEY_FILE_DESKTOP_KEY_VERSION "Version"
299 #define G_KEY_FILE_DESKTOP_KEY_NAME "Name"
300 #define G_KEY_FILE_DESKTOP_KEY_GENERIC_NAME "GenericName"
301 #define G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY "NoDisplay"
302 #define G_KEY_FILE_DESKTOP_KEY_COMMENT "Comment"
303 #define G_KEY_FILE_DESKTOP_KEY_ICON "Icon"
304 #define G_KEY_FILE_DESKTOP_KEY_HIDDEN "Hidden"
305 #define G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN "OnlyShowIn"
306 #define G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN "NotShowIn"
307 #define G_KEY_FILE_DESKTOP_KEY_TRY_EXEC "TryExec"
308 #define G_KEY_FILE_DESKTOP_KEY_EXEC "Exec"
309 #define G_KEY_FILE_DESKTOP_KEY_PATH "Path"
310 #define G_KEY_FILE_DESKTOP_KEY_TERMINAL "Terminal"
311 #define G_KEY_FILE_DESKTOP_KEY_MIME_TYPE "MimeType"
312 #define G_KEY_FILE_DESKTOP_KEY_CATEGORIES "Categories"
313 #define G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY "StartupNotify"
314 #define G_KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS "StartupWMClass"
315 #define G_KEY_FILE_DESKTOP_KEY_URL "URL"
316 #define G_KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE "DBusActivatable"
317 #define G_KEY_FILE_DESKTOP_KEY_ACTIONS "Actions"
319 #define G_KEY_FILE_DESKTOP_TYPE_APPLICATION "Application"
320 #define G_KEY_FILE_DESKTOP_TYPE_LINK "Link"
321 #define G_KEY_FILE_DESKTOP_TYPE_DIRECTORY "Directory"
323 G_END_DECLS
325 #endif /* __G_KEY_FILE_H__ */