new public header: gsettingsschema.h
[platform/upstream/glib.git] / gio / gsettingsschema-internal.h
1 /*
2  * Copyright © 2010 Codethink Limited
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the licence, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __G_SETTINGS_SCHEMA_INTERNAL_H__
21 #define __G_SETTINGS_SCHEMA_INTERNAL_H__
22
23 #include "gsettingsschema.h"
24
25 typedef struct
26 {
27   GSettingsSchema *schema;
28   const gchar *name;
29
30   guint is_flags : 1;
31   guint is_enum  : 1;
32
33   const guint32 *strinfo;
34   gsize strinfo_length;
35
36   const gchar *unparsed;
37   gchar lc_char;
38
39   const GVariantType *type;
40   GVariant *minimum, *maximum;
41   GVariant *default_value;
42 } GSettingsSchemaKey;
43
44 G_GNUC_INTERNAL
45 GSettingsSchema *       g_settings_schema_new                           (const gchar      *name);
46 G_GNUC_INTERNAL
47 const gchar *           g_settings_schema_get_gettext_domain            (GSettingsSchema  *schema);
48 G_GNUC_INTERNAL
49 GVariantIter *          g_settings_schema_get_value                     (GSettingsSchema  *schema,
50                                                                          const gchar      *key);
51 G_GNUC_INTERNAL
52 gboolean                g_settings_schema_has_key                       (GSettingsSchema  *schema,
53                                                                          const gchar      *key);
54 G_GNUC_INTERNAL
55 const GQuark *          g_settings_schema_list                          (GSettingsSchema  *schema,
56                                                                          gint             *n_items);
57 G_GNUC_INTERNAL
58 const gchar *           g_settings_schema_get_string                    (GSettingsSchema  *schema,
59                                                                          const gchar      *key);
60
61 G_GNUC_INTERNAL
62 void                    g_settings_schema_key_init                      (GSettingsSchemaKey *key,
63                                                                          GSettingsSchema    *schema,
64                                                                          const gchar        *name);
65 G_GNUC_INTERNAL
66 void                    g_settings_schema_key_clear                     (GSettingsSchemaKey *key);
67 G_GNUC_INTERNAL
68 gboolean                g_settings_schema_key_type_check                (GSettingsSchemaKey *key,
69                                                                          GVariant           *value);
70 G_GNUC_INTERNAL
71 gboolean                g_settings_schema_key_range_check               (GSettingsSchemaKey *key,
72                                                                          GVariant           *value);
73 G_GNUC_INTERNAL
74 GVariant *              g_settings_schema_key_range_fixup               (GSettingsSchemaKey *key,
75                                                                          GVariant           *value);
76 G_GNUC_INTERNAL
77 GVariant *              g_settings_schema_key_get_translated_default    (GSettingsSchemaKey *key);
78
79 G_GNUC_INTERNAL
80 gint                    g_settings_schema_key_to_enum                   (GSettingsSchemaKey *key,
81                                                                          GVariant           *value);
82 G_GNUC_INTERNAL
83 GVariant *              g_settings_schema_key_from_enum                 (GSettingsSchemaKey *key,
84                                                                          gint                value);
85 G_GNUC_INTERNAL
86 guint                   g_settings_schema_key_to_flags                  (GSettingsSchemaKey *key,
87                                                                          GVariant           *value);
88 G_GNUC_INTERNAL
89 GVariant *              g_settings_schema_key_from_flags                (GSettingsSchemaKey *key,
90                                                                          guint               value);
91
92 #endif /* __G_SETTINGS_SCHEMA_INTERNAL_H__ */