annotate libaudacious/rcfile.h @ 2257:af716dc0cdb9 trunk

[svn] - do not create GtkAccelGroup anymore; use ui_manager_get_accel_group to get accelerator groups from ui_manager
author giacomo
date Thu, 04 Jan 2007 03:58:58 -0800
parents f363009b7410
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2255
f363009b7410 [svn] Update libaudacious copyright notices
kiyoshi
parents: 2105
diff changeset
1 /* Audacious - Cross-platform multimedia player
f363009b7410 [svn] Update libaudacious copyright notices
kiyoshi
parents: 2105
diff changeset
2 * Copyright (C) 2005-2007 Audacious development team
f363009b7410 [svn] Update libaudacious copyright notices
kiyoshi
parents: 2105
diff changeset
3 *
f363009b7410 [svn] Update libaudacious copyright notices
kiyoshi
parents: 2105
diff changeset
4 * Based on XMMS:
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8 * it under the terms of the GNU General Public License as published by
2105
f18a5b617c34 [svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents: 2060
diff changeset
9 * the Free Software Foundation; under version 2 of the License.
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11 * This program is distributed in the hope that it will be useful,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14 * GNU General Public License for more details.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
17 * along with this program; if not, write to the Free Software
1459
705d4c089fce [svn] Fix postal code.
chainsaw
parents: 1458
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19 */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
20 #ifndef RCFILE_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
21 #define RCFILE_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
22
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
23 #include <glib.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
24
2060
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
25 /**
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
26 * RcLine:
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
27 * @key: A key for the key->value mapping.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
28 * @value: A value for the key->value mapping.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
29 *
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
30 * RcLine objects contain key->value mappings.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
31 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
32 typedef struct {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
33 gchar *key;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
34 gchar *value;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
35 } RcLine;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
36
2060
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
37 /**
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
38 * RcSection:
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
39 * @name: The name for the #RcSection.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
40 * @lines: A list of key->value mappings for the #RcSection.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
41 *
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
42 * RcSection objects contain collections of key->value mappings.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
43 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
44 typedef struct {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
45 gchar *name;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
46 GList *lines;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
47 } RcSection;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
48
2060
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
49 /**
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
50 * RcFile:
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
51 * @sections: A list of sections.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
52 *
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
53 * An RcFile object contains a collection of key->value mappings organized by section.
53a3d5db6b58 [svn] - finish documenting the libaudacious API
nenolod
parents: 1459
diff changeset
54 **/
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
55 typedef struct {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
56 GList *sections;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
57 } RcFile;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
58
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
59 G_BEGIN_DECLS
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
60
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
61 RcFile *bmp_rcfile_new(void);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
62 void bmp_rcfile_free(RcFile * file);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
63
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
64 RcFile *bmp_rcfile_open(const gchar * filename);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
65 gboolean bmp_rcfile_write(RcFile * file, const gchar * filename);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
66
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
67 gboolean bmp_rcfile_read_string(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
68 const gchar * key, gchar ** value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
69 gboolean bmp_rcfile_read_int(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
70 const gchar * key, gint * value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
71 gboolean bmp_rcfile_read_bool(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
72 const gchar * key, gboolean * value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
73 gboolean bmp_rcfile_read_float(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
74 const gchar * key, gfloat * value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
75 gboolean bmp_rcfile_read_double(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
76 const gchar * key, gdouble * value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
77
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
78 void bmp_rcfile_write_string(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
79 const gchar * key, const gchar * value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
80 void bmp_rcfile_write_int(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
81 const gchar * key, gint value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
82 void bmp_rcfile_write_boolean(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
83 const gchar * key, gboolean value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
84 void bmp_rcfile_write_float(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
85 const gchar * key, gfloat value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
86 void bmp_rcfile_write_double(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
87 const gchar * key, gdouble value);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
88
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
89 void bmp_rcfile_remove_key(RcFile * file, const gchar * section,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
90 const gchar * key);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
91
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
92 G_END_DECLS
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
93
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
94 #endif // RCFILE_H