GSettings: small internal refactor
[glib.git] / gio / gsettingsschema.h
blob229ed0d48512f77fb3e85e4614b652d53f566759
1 /*
2 * Copyright © 2010 Codethink Limited
3 * Copyright © 2011 Canonical Limited
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the licence, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __G_SETTINGS_SCHEMA_H__
22 #define __G_SETTINGS_SCHEMA_H__
24 #include <glib-object.h>
26 G_BEGIN_DECLS
28 typedef struct _GSettingsSchemaSource GSettingsSchemaSource;
29 typedef struct _GSettingsSchema GSettingsSchema;
30 typedef struct _GSettingsSchemaKey GSettingsSchemaKey;
32 #define G_TYPE_SETTINGS_SCHEMA_SOURCE (g_settings_schema_source_get_type ())
33 GLIB_AVAILABLE_IN_2_32
34 GType g_settings_schema_source_get_type (void) G_GNUC_CONST;
36 GLIB_AVAILABLE_IN_2_32
37 GSettingsSchemaSource * g_settings_schema_source_get_default (void);
38 GLIB_AVAILABLE_IN_2_32
39 GSettingsSchemaSource * g_settings_schema_source_ref (GSettingsSchemaSource *source);
40 GLIB_AVAILABLE_IN_2_32
41 void g_settings_schema_source_unref (GSettingsSchemaSource *source);
43 GLIB_AVAILABLE_IN_2_32
44 GSettingsSchemaSource * g_settings_schema_source_new_from_directory (const gchar *directory,
45 GSettingsSchemaSource *parent,
46 gboolean trusted,
47 GError **error);
49 GLIB_AVAILABLE_IN_2_32
50 GSettingsSchema * g_settings_schema_source_lookup (GSettingsSchemaSource *source,
51 const gchar *schema_id,
52 gboolean recursive);
54 GLIB_AVAILABLE_IN_2_40
55 void g_settings_schema_source_list_schemas (GSettingsSchemaSource *source,
56 gboolean recursive,
57 gchar ***non_recursive_schemas,
58 gchar ***recursive_schemas);
60 #define G_TYPE_SETTINGS_SCHEMA (g_settings_schema_get_type ())
61 GLIB_AVAILABLE_IN_2_32
62 GType g_settings_schema_get_type (void) G_GNUC_CONST;
64 GLIB_AVAILABLE_IN_2_32
65 GSettingsSchema * g_settings_schema_ref (GSettingsSchema *schema);
66 GLIB_AVAILABLE_IN_2_32
67 void g_settings_schema_unref (GSettingsSchema *schema);
69 GLIB_AVAILABLE_IN_2_32
70 const gchar * g_settings_schema_get_id (GSettingsSchema *schema);
71 GLIB_AVAILABLE_IN_2_32
72 const gchar * g_settings_schema_get_path (GSettingsSchema *schema);
73 GLIB_AVAILABLE_IN_2_40
74 GSettingsSchemaKey * g_settings_schema_get_key (GSettingsSchema *schema,
75 const gchar *key);
77 #define G_TYPE_SETTINGS_SCHEMA_KEY (g_settings_schema_key_get_type ())
78 GLIB_AVAILABLE_IN_2_40
79 GType g_settings_schema_key_get_type (void) G_GNUC_CONST;
81 GLIB_AVAILABLE_IN_2_40
82 GSettingsSchemaKey * g_settings_schema_key_ref (GSettingsSchemaKey *key);
83 GLIB_AVAILABLE_IN_2_40
84 void g_settings_schema_key_unref (GSettingsSchemaKey *key);
86 GLIB_AVAILABLE_IN_2_40
87 const gchar * g_settings_schema_key_get_summary (GSettingsSchemaKey *key);
88 GLIB_AVAILABLE_IN_2_40
89 const gchar * g_settings_schema_key_get_description (GSettingsSchemaKey *key);
91 G_END_DECLS
93 #endif /* __G_SETTINGS_SCHEMA_H__ */