GSettings: add 'settings-schema' property
[platform/upstream/glib.git] / gio / gsettings.c
1 /*
2  * Copyright © 2009, 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  * Author: Ryan Lortie <desrt@desrt.ca>
20  */
21
22 /* Prelude {{{1 */
23 #include "config.h"
24
25 #include <glib.h>
26 #include <glibintl.h>
27 #include <locale.h>
28
29 #include "gsettings.h"
30
31 #include "gdelayedsettingsbackend.h"
32 #include "gsettingsbackendinternal.h"
33 #include "gsettings-mapping.h"
34 #include "gsettingsschema-internal.h"
35
36 #include "strinfo.c"
37
38 /**
39  * SECTION:gsettings
40  * @short_description: High-level API for application settings
41  *
42  * The #GSettings class provides a convenient API for storing and retrieving
43  * application settings.
44  *
45  * Reads and writes can be considered to be non-blocking.  Reading
46  * settings with #GSettings is typically extremely fast: on
47  * approximately the same order of magnitude (but slower than) a
48  * #GHashTable lookup.  Writing settings is also extremely fast in terms
49  * of time to return to your application, but can be extremely expensive
50  * for other threads and other processes.  Many settings backends
51  * (including dconf) have lazy initialisation which means in the common
52  * case of the user using their computer without modifying any settings
53  * a lot of work can be avoided.  For dconf, the D-Bus service doesn't
54  * even need to be started in this case.  For this reason, you should
55  * only ever modify #GSettings keys in response to explicit user action.
56  * Particular care should be paid to ensure that modifications are not
57  * made during startup -- for example, when setting the initial value
58  * of preferences widgets.  The built-in g_settings_bind() functionality
59  * is careful not to write settings in response to notify signals as a
60  * result of modifications that it makes to widgets.
61  *
62  * When creating a GSettings instance, you have to specify a schema
63  * that describes the keys in your settings and their types and default
64  * values, as well as some other information.
65  *
66  * Normally, a schema has as fixed path that determines where the settings
67  * are stored in the conceptual global tree of settings. However, schemas
68  * can also be 'relocatable', i.e. not equipped with a fixed path. This is
69  * useful e.g. when the schema describes an 'account', and you want to be
70  * able to store a arbitrary number of accounts.
71  *
72  * Unlike other configuration systems (like GConf), GSettings does not
73  * restrict keys to basic types like strings and numbers. GSettings stores
74  * values as #GVariant, and allows any #GVariantType for keys. Key names
75  * are restricted to lowercase characters, numbers and '-'. Furthermore,
76  * the names must begin with a lowercase character, must not end
77  * with a '-', and must not contain consecutive dashes.
78  *
79  * Similar to GConf, the default values in GSettings schemas can be
80  * localized, but the localized values are stored in gettext catalogs
81  * and looked up with the domain that is specified in the
82  * <tag class="attribute">gettext-domain</tag> attribute of the
83  * <tag class="starttag">schemalist</tag> or <tag class="starttag">schema</tag>
84  * elements and the category that is specified in the l10n attribute of the
85  * <tag class="starttag">key</tag> element.
86  *
87  * GSettings uses schemas in a compact binary form that is created
88  * by the <link linkend="glib-compile-schemas">glib-compile-schemas</link>
89  * utility. The input is a schema description in an XML format that can be
90  * described by the following DTD:
91  * |[<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../gio/gschema.dtd"><xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback></xi:include>]|
92  *
93  * glib-compile-schemas expects schema files to have the extension <filename>.gschema.xml</filename>
94  *
95  * At runtime, schemas are identified by their id (as specified
96  * in the <tag class="attribute">id</tag> attribute of the
97  * <tag class="starttag">schema</tag> element). The
98  * convention for schema ids is to use a dotted name, similar in
99  * style to a D-Bus bus name, e.g. "org.gnome.SessionManager". In particular,
100  * if the settings are for a specific service that owns a D-Bus bus name,
101  * the D-Bus bus name and schema id should match. For schemas which deal
102  * with settings not associated with one named application, the id should
103  * not use StudlyCaps, e.g. "org.gnome.font-rendering".
104  *
105  * In addition to #GVariant types, keys can have types that have enumerated
106  * types. These can be described by a <tag class="starttag">choice</tag>,
107  * <tag class="starttag">enum</tag> or <tag class="starttag">flags</tag> element, see
108  * <xref linkend="schema-enumerated"/>. The underlying type of
109  * such a key is string, but you can use g_settings_get_enum(),
110  * g_settings_set_enum(), g_settings_get_flags(), g_settings_set_flags()
111  * access the numeric values corresponding to the string value of enum
112  * and flags keys.
113  *
114  * <example id="schema-default-values"><title>Default values</title>
115  * <programlisting><![CDATA[
116  * <schemalist>
117  *   <schema id="org.gtk.Test" path="/tests/" gettext-domain="test">
118  *
119  *     <key name="greeting" type="s">
120  *       <default l10n="messages">"Hello, earthlings"</default>
121  *       <summary>A greeting</summary>
122  *       <description>
123  *         Greeting of the invading martians
124  *       </description>
125  *     </key>
126  *
127  *     <key name="box" type="(ii)">
128  *       <default>(20,30)</default>
129  *     </key>
130  *
131  *   </schema>
132  * </schemalist>
133  * ]]></programlisting></example>
134  *
135  * <example id="schema-enumerated"><title>Ranges, choices and enumerated types</title>
136  * <programlisting><![CDATA[
137  * <schemalist>
138  *
139  *   <enum id="org.gtk.Test.myenum">
140  *     <value nick="first" value="1"/>
141  *     <value nick="second" value="2"/>
142  *   </enum>
143  *
144  *   <flags id="org.gtk.Test.myflags">
145  *     <value nick="flag1" value="1"/>
146  *     <value nick="flag2" value="2"/>
147  *     <value nick="flag3" value="4"/>
148  *   </flags>
149  *
150  *   <schema id="org.gtk.Test">
151  *
152  *     <key name="key-with-range" type="i">
153  *       <range min="1" max="100"/>
154  *       <default>10</default>
155  *     </key>
156  *
157  *     <key name="key-with-choices" type="s">
158  *       <choices>
159  *         <choice value='Elisabeth'/>
160  *         <choice value='Annabeth'/>
161  *         <choice value='Joe'/>
162  *       </choices>
163  *       <aliases>
164  *         <alias value='Anna' target='Annabeth'/>
165  *         <alias value='Beth' target='Elisabeth'/>
166  *       </aliases>
167  *       <default>'Joe'</default>
168  *     </key>
169  *
170  *     <key name='enumerated-key' enum='org.gtk.Test.myenum'>
171  *       <default>'first'</default>
172  *     </key>
173  *
174  *     <key name='flags-key' flags='org.gtk.Test.myflags'>
175  *       <default>["flag1",flag2"]</default>
176  *     </key>
177  *   </schema>
178  * </schemalist>
179  * ]]></programlisting></example>
180  *
181  * <refsect2>
182  *   <title>Vendor overrides</title>
183  *   <para>
184  *     Default values are defined in the schemas that get installed by
185  *     an application. Sometimes, it is necessary for a vendor or distributor
186  *     to adjust these defaults. Since patching the XML source for the schema
187  *     is inconvenient and error-prone,
188  *     <link linkend="glib-compile-schemas">glib-compile-schemas</link> reads
189  *     so-called 'vendor override' files. These are keyfiles in the same
190  *     directory as the XML schema sources which can override default values.
191  *     The schema id serves as the group name in the key file, and the values
192  *     are expected in serialized GVariant form, as in the following example:
193  *     <informalexample><programlisting>
194  *     [org.gtk.Example]
195  *     key1='string'
196  *     key2=1.5
197  *     </programlisting></informalexample>
198  *   </para>
199  *   <para>
200  *     glib-compile-schemas expects schema files to have the extension
201  *     <filename>.gschema.override</filename>
202  *   </para>
203  * </refsect2>
204  *
205  * <refsect2>
206  *   <title>Binding</title>
207  *   <para>
208  *     A very convenient feature of GSettings lets you bind #GObject properties
209  *     directly to settings, using g_settings_bind(). Once a GObject property
210  *     has been bound to a setting, changes on either side are automatically
211  *     propagated to the other side. GSettings handles details like
212  *     mapping between GObject and GVariant types, and preventing infinite
213  *     cycles.
214  *   </para>
215  *   <para>
216  *     This makes it very easy to hook up a preferences dialog to the
217  *     underlying settings. To make this even more convenient, GSettings
218  *     looks for a boolean property with the name "sensitivity" and
219  *     automatically binds it to the writability of the bound setting.
220  *     If this 'magic' gets in the way, it can be suppressed with the
221  *     #G_SETTINGS_BIND_NO_SENSITIVITY flag.
222  *   </para>
223  * </refsect2>
224  **/
225
226 struct _GSettingsPrivate
227 {
228   /* where the signals go... */
229   GMainContext *main_context;
230
231   GSettingsBackend *backend;
232   GSettingsSchema *schema;
233   gchar *path;
234
235   GDelayedSettingsBackend *delayed;
236 };
237
238 enum
239 {
240   PROP_0,
241   PROP_SCHEMA,
242   PROP_SCHEMA_ID,
243   PROP_BACKEND,
244   PROP_PATH,
245   PROP_HAS_UNAPPLIED,
246   PROP_DELAY_APPLY
247 };
248
249 enum
250 {
251   SIGNAL_WRITABLE_CHANGE_EVENT,
252   SIGNAL_WRITABLE_CHANGED,
253   SIGNAL_CHANGE_EVENT,
254   SIGNAL_CHANGED,
255   N_SIGNALS
256 };
257
258 static guint g_settings_signals[N_SIGNALS];
259
260 G_DEFINE_TYPE (GSettings, g_settings, G_TYPE_OBJECT)
261
262 /* Signals {{{1 */
263 static gboolean
264 g_settings_real_change_event (GSettings    *settings,
265                               const GQuark *keys,
266                               gint          n_keys)
267 {
268   gint i;
269
270   if (keys == NULL)
271     keys = g_settings_schema_list (settings->priv->schema, &n_keys);
272
273   for (i = 0; i < n_keys; i++)
274     g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGED],
275                    keys[i], g_quark_to_string (keys[i]));
276
277   return FALSE;
278 }
279
280 static gboolean
281 g_settings_real_writable_change_event (GSettings *settings,
282                                        GQuark     key)
283 {
284   const GQuark *keys = &key;
285   gint n_keys = 1;
286   gint i;
287
288   if (key == 0)
289     keys = g_settings_schema_list (settings->priv->schema, &n_keys);
290
291   for (i = 0; i < n_keys; i++)
292     g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGED],
293                    keys[i], g_quark_to_string (keys[i]));
294
295   return FALSE;
296 }
297
298 static void
299 settings_backend_changed (GObject             *target,
300                           GSettingsBackend    *backend,
301                           const gchar         *key,
302                           gpointer             origin_tag)
303 {
304   GSettings *settings = G_SETTINGS (target);
305   gboolean ignore_this;
306   gint i;
307
308   /* We used to assert here:
309    *
310    *   settings->priv->backend == backend
311    *
312    * but it could be the case that a notification is queued for delivery
313    * while someone calls g_settings_delay() (which changes the backend).
314    *
315    * Since the delay backend would just pass that straight through
316    * anyway, it doesn't make sense to try to detect this case.
317    * Therefore, we just accept it.
318    */
319
320   for (i = 0; key[i] == settings->priv->path[i]; i++);
321
322   if (settings->priv->path[i] == '\0' &&
323       g_settings_schema_has_key (settings->priv->schema, key + i))
324     {
325       GQuark quark;
326
327       quark = g_quark_from_string (key + i);
328       g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
329                      0, &quark, 1, &ignore_this);
330     }
331 }
332
333 static void
334 settings_backend_path_changed (GObject          *target,
335                                GSettingsBackend *backend,
336                                const gchar      *path,
337                                gpointer          origin_tag)
338 {
339   GSettings *settings = G_SETTINGS (target);
340   gboolean ignore_this;
341
342   if (g_str_has_prefix (settings->priv->path, path))
343     g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
344                    0, NULL, 0, &ignore_this);
345 }
346
347 static void
348 settings_backend_keys_changed (GObject             *target,
349                                GSettingsBackend    *backend,
350                                const gchar         *path,
351                                const gchar * const *items,
352                                gpointer             origin_tag)
353 {
354   GSettings *settings = G_SETTINGS (target);
355   gboolean ignore_this;
356   gint i;
357
358   for (i = 0; settings->priv->path[i] &&
359               settings->priv->path[i] == path[i]; i++);
360
361   if (path[i] == '\0')
362     {
363       GQuark quarks[256];
364       gint j, l = 0;
365
366       for (j = 0; items[j]; j++)
367          {
368            const gchar *item = items[j];
369            gint k;
370
371            for (k = 0; item[k] == settings->priv->path[i + k]; k++);
372
373            if (settings->priv->path[i + k] == '\0' &&
374                g_settings_schema_has_key (settings->priv->schema, item + k))
375              quarks[l++] = g_quark_from_string (item + k);
376
377            /* "256 quarks ought to be enough for anybody!"
378             * If this bites you, I'm sorry.  Please file a bug.
379             */
380            g_assert (l < 256);
381          }
382
383       if (l > 0)
384         g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
385                        0, quarks, l, &ignore_this);
386     }
387 }
388
389 static void
390 settings_backend_writable_changed (GObject          *target,
391                                    GSettingsBackend *backend,
392                                    const gchar      *key)
393 {
394   GSettings *settings = G_SETTINGS (target);
395   gboolean ignore_this;
396   gint i;
397
398   for (i = 0; key[i] == settings->priv->path[i]; i++);
399
400   if (settings->priv->path[i] == '\0' &&
401       g_settings_schema_has_key (settings->priv->schema, key + i))
402     g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT],
403                    0, g_quark_from_string (key + i), &ignore_this);
404 }
405
406 static void
407 settings_backend_path_writable_changed (GObject          *target,
408                                         GSettingsBackend *backend,
409                                         const gchar      *path)
410 {
411   GSettings *settings = G_SETTINGS (target);
412   gboolean ignore_this;
413
414   if (g_str_has_prefix (settings->priv->path, path))
415     g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT],
416                    0, (GQuark) 0, &ignore_this);
417 }
418
419 /* Properties, Construction, Destruction {{{1 */
420 static void
421 g_settings_set_property (GObject      *object,
422                          guint         prop_id,
423                          const GValue *value,
424                          GParamSpec   *pspec)
425 {
426   GSettings *settings = G_SETTINGS (object);
427
428   switch (prop_id)
429     {
430     case PROP_SCHEMA:
431       {
432         GSettingsSchema *schema;
433
434         schema = g_value_dup_boxed (value);
435
436         /* we receive a set_property() call for "settings-schema" even
437          * if it was not specified (ie: with NULL value).  ->schema
438          * could already be set at this point (ie: via "schema-id").
439          * check for NULL to avoid clobbering the existing value.
440          */
441         if (schema != NULL)
442           {
443             g_assert (settings->priv->schema == NULL);
444             settings->priv->schema = schema;
445           }
446       }
447       break;
448
449     case PROP_SCHEMA_ID:
450       {
451         const gchar *schema_id;
452
453         schema_id = g_value_get_string (value);
454
455         /* we receive a set_property() call for both "schema" and
456          * "schema-id", even if they are not set.  Hopefully only one of
457          * them is non-NULL.
458          */
459         if (schema_id != NULL)
460           {
461             GSettingsSchemaSource *default_source;
462
463             g_assert (settings->priv->schema == NULL);
464             default_source = g_settings_schema_source_get_default ();
465
466             if (default_source == NULL)
467               g_error ("No GSettings schemas are installed on the system");
468
469             settings->priv->schema = g_settings_schema_source_lookup (default_source, schema_id, TRUE);
470
471             if (settings->priv->schema == NULL)
472               g_error ("Settings schema '%s' is not installed\n", schema_id);
473           }
474       }
475       break;
476
477     case PROP_PATH:
478       settings->priv->path = g_value_dup_string (value);
479       break;
480
481     case PROP_BACKEND:
482       settings->priv->backend = g_value_dup_object (value);
483       break;
484
485     default:
486       g_assert_not_reached ();
487     }
488 }
489
490 static void
491 g_settings_get_property (GObject    *object,
492                          guint       prop_id,
493                          GValue     *value,
494                          GParamSpec *pspec)
495 {
496   GSettings *settings = G_SETTINGS (object);
497
498   switch (prop_id)
499     {
500     case PROP_SCHEMA:
501       g_value_set_boxed (value, settings->priv->schema);
502       break;
503
504      case PROP_SCHEMA_ID:
505       g_value_set_string (value, g_settings_schema_get_id (settings->priv->schema));
506       break;
507
508      case PROP_BACKEND:
509       g_value_set_object (value, settings->priv->backend);
510       break;
511
512      case PROP_PATH:
513       g_value_set_string (value, settings->priv->path);
514       break;
515
516      case PROP_HAS_UNAPPLIED:
517       g_value_set_boolean (value, g_settings_get_has_unapplied (settings));
518       break;
519
520      case PROP_DELAY_APPLY:
521       g_value_set_boolean (value, settings->priv->delayed != NULL);
522       break;
523
524      default:
525       g_assert_not_reached ();
526     }
527 }
528
529 static const GSettingsListenerVTable listener_vtable = {
530   settings_backend_changed,
531   settings_backend_path_changed,
532   settings_backend_keys_changed,
533   settings_backend_writable_changed,
534   settings_backend_path_writable_changed
535 };
536
537 static void
538 g_settings_constructed (GObject *object)
539 {
540   GSettings *settings = G_SETTINGS (object);
541   const gchar *schema_path;
542
543   schema_path = g_settings_schema_get_path (settings->priv->schema);
544
545   if (settings->priv->path && schema_path && strcmp (settings->priv->path, schema_path) != 0)
546     g_error ("settings object created with schema '%s' and path '%s', but path '%s' is specified by schema",
547              g_settings_schema_get_id (settings->priv->schema), settings->priv->path, schema_path);
548
549   if (settings->priv->path == NULL)
550     {
551       if (schema_path == NULL)
552         g_error ("attempting to create schema '%s' without a path",
553                  g_settings_schema_get_id (settings->priv->schema));
554
555       settings->priv->path = g_strdup (schema_path);
556     }
557
558   if (settings->priv->backend == NULL)
559     settings->priv->backend = g_settings_backend_get_default ();
560
561   g_settings_backend_watch (settings->priv->backend,
562                             &listener_vtable, G_OBJECT (settings),
563                             settings->priv->main_context);
564   g_settings_backend_subscribe (settings->priv->backend,
565                                 settings->priv->path);
566 }
567
568 static void
569 g_settings_finalize (GObject *object)
570 {
571   GSettings *settings = G_SETTINGS (object);
572
573   g_settings_backend_unsubscribe (settings->priv->backend,
574                                   settings->priv->path);
575   g_main_context_unref (settings->priv->main_context);
576   g_object_unref (settings->priv->backend);
577   g_settings_schema_unref (settings->priv->schema);
578   g_free (settings->priv->path);
579
580   G_OBJECT_CLASS (g_settings_parent_class)->finalize (object);
581 }
582
583 static void
584 g_settings_init (GSettings *settings)
585 {
586   settings->priv = G_TYPE_INSTANCE_GET_PRIVATE (settings,
587                                                 G_TYPE_SETTINGS,
588                                                 GSettingsPrivate);
589
590   settings->priv->main_context = g_main_context_ref_thread_default ();
591 }
592
593 static void
594 g_settings_class_init (GSettingsClass *class)
595 {
596   GObjectClass *object_class = G_OBJECT_CLASS (class);
597
598   class->writable_change_event = g_settings_real_writable_change_event;
599   class->change_event = g_settings_real_change_event;
600
601   object_class->set_property = g_settings_set_property;
602   object_class->get_property = g_settings_get_property;
603   object_class->constructed = g_settings_constructed;
604   object_class->finalize = g_settings_finalize;
605
606   g_type_class_add_private (object_class, sizeof (GSettingsPrivate));
607
608   /**
609    * GSettings::changed:
610    * @settings: the object on which the signal was emitted
611    * @key: the name of the key that changed
612    *
613    * The "changed" signal is emitted when a key has potentially changed.
614    * You should call one of the g_settings_get() calls to check the new
615    * value.
616    *
617    * This signal supports detailed connections.  You can connect to the
618    * detailed signal "changed::x" in order to only receive callbacks
619    * when key "x" changes.
620    */
621   g_settings_signals[SIGNAL_CHANGED] =
622     g_signal_new ("changed", G_TYPE_SETTINGS,
623                   G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
624                   G_STRUCT_OFFSET (GSettingsClass, changed),
625                   NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE,
626                   1, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
627
628   /**
629    * GSettings::change-event:
630    * @settings: the object on which the signal was emitted
631    * @keys: (array length=n_keys) (element-type GQuark) (allow-none):
632    *        an array of #GQuark<!-- -->s for the changed keys, or %NULL
633    * @n_keys: the length of the @keys array, or 0
634    * @returns: %TRUE to stop other handlers from being invoked for the
635    *           event. FALSE to propagate the event further.
636    *
637    * The "change-event" signal is emitted once per change event that
638    * affects this settings object.  You should connect to this signal
639    * only if you are interested in viewing groups of changes before they
640    * are split out into multiple emissions of the "changed" signal.
641    * For most use cases it is more appropriate to use the "changed" signal.
642    *
643    * In the event that the change event applies to one or more specified
644    * keys, @keys will be an array of #GQuark of length @n_keys.  In the
645    * event that the change event applies to the #GSettings object as a
646    * whole (ie: potentially every key has been changed) then @keys will
647    * be %NULL and @n_keys will be 0.
648    *
649    * The default handler for this signal invokes the "changed" signal
650    * for each affected key.  If any other connected handler returns
651    * %TRUE then this default functionality will be suppressed.
652    */
653   g_settings_signals[SIGNAL_CHANGE_EVENT] =
654     g_signal_new ("change-event", G_TYPE_SETTINGS,
655                   G_SIGNAL_RUN_LAST,
656                   G_STRUCT_OFFSET (GSettingsClass, change_event),
657                   g_signal_accumulator_true_handled, NULL,
658                   NULL,
659                   G_TYPE_BOOLEAN, 2, G_TYPE_POINTER, G_TYPE_INT);
660
661   /**
662    * GSettings::writable-changed:
663    * @settings: the object on which the signal was emitted
664    * @key: the key
665    *
666    * The "writable-changed" signal is emitted when the writability of a
667    * key has potentially changed.  You should call
668    * g_settings_is_writable() in order to determine the new status.
669    *
670    * This signal supports detailed connections.  You can connect to the
671    * detailed signal "writable-changed::x" in order to only receive
672    * callbacks when the writability of "x" changes.
673    */
674   g_settings_signals[SIGNAL_WRITABLE_CHANGED] =
675     g_signal_new ("writable-changed", G_TYPE_SETTINGS,
676                   G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
677                   G_STRUCT_OFFSET (GSettingsClass, writable_changed),
678                   NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE,
679                   1, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
680
681   /**
682    * GSettings::writable-change-event:
683    * @settings: the object on which the signal was emitted
684    * @key: the quark of the key, or 0
685    * @returns: %TRUE to stop other handlers from being invoked for the
686    *           event. FALSE to propagate the event further.
687    *
688    * The "writable-change-event" signal is emitted once per writability
689    * change event that affects this settings object.  You should connect
690    * to this signal if you are interested in viewing groups of changes
691    * before they are split out into multiple emissions of the
692    * "writable-changed" signal.  For most use cases it is more
693    * appropriate to use the "writable-changed" signal.
694    *
695    * In the event that the writability change applies only to a single
696    * key, @key will be set to the #GQuark for that key.  In the event
697    * that the writability change affects the entire settings object,
698    * @key will be 0.
699    *
700    * The default handler for this signal invokes the "writable-changed"
701    * and "changed" signals for each affected key.  This is done because
702    * changes in writability might also imply changes in value (if for
703    * example, a new mandatory setting is introduced).  If any other
704    * connected handler returns %TRUE then this default functionality
705    * will be suppressed.
706    */
707   g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT] =
708     g_signal_new ("writable-change-event", G_TYPE_SETTINGS,
709                   G_SIGNAL_RUN_LAST,
710                   G_STRUCT_OFFSET (GSettingsClass, writable_change_event),
711                   g_signal_accumulator_true_handled, NULL,
712                   NULL, G_TYPE_BOOLEAN, 1, G_TYPE_UINT);
713
714   /**
715    * GSettings:context:
716    *
717    * The name of the context that the settings are stored in.
718    */
719   g_object_class_install_property (object_class, PROP_BACKEND,
720     g_param_spec_object ("backend",
721                          P_("GSettingsBackend"),
722                          P_("The GSettingsBackend for this settings object"),
723                          G_TYPE_SETTINGS_BACKEND, G_PARAM_CONSTRUCT_ONLY |
724                          G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
725
726   /**
727    * GSettings:settings-schema:
728    *
729    * The #GSettingsSchema describing the types of keys for this
730    * #GSettings object.
731    *
732    * Ideally, this property would be called 'schema'.  #GSettingsSchema
733    * has only existed since version 2.32, however, and before then the
734    * 'schema' property was used to refer to the ID of the schema rather
735    * than the schema itself.  Take care.
736    */
737   g_object_class_install_property (object_class, PROP_SCHEMA,
738     g_param_spec_boxed ("settings-schema",
739                         P_("schema"),
740                         P_("The GSettingsSchema for this settings object"),
741                         G_TYPE_SETTINGS_SCHEMA,
742                         G_PARAM_CONSTRUCT_ONLY |
743                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
744
745   /**
746    * GSettings:schema:
747    *
748    * The name of the schema that describes the types of keys
749    * for this #GSettings object.
750    *
751    * The type of this property is *not* #GSettingsSchema.
752    * #GSettingsSchema has only existed since version 2.32 and
753    * unfortunately this name was used in previous versions to refer to
754    * the schema ID rather than the schema itself.  Take care to use the
755    * 'settings-schema' property if you wish to pass in a
756    * #GSettingsSchema.
757    *
758    * Deprecated:2.32:Use the 'schema-id' property instead.  In a future
759    * version, this property may instead refer to a #GSettingsSchema.
760    */
761   g_object_class_install_property (object_class, PROP_SCHEMA_ID,
762     g_param_spec_string ("schema",
763                          P_("Schema name"),
764                          P_("The name of the schema for this settings object"),
765                          NULL,
766                          G_PARAM_CONSTRUCT_ONLY |
767                          G_PARAM_DEPRECATED | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
768
769   /**
770    * GSettings:schema-id:
771    *
772    * The name of the schema that describes the types of keys
773    * for this #GSettings object.
774    */
775   g_object_class_install_property (object_class, PROP_SCHEMA_ID,
776     g_param_spec_string ("schema-id",
777                          P_("Schema name"),
778                          P_("The name of the schema for this settings object"),
779                          NULL,
780                          G_PARAM_CONSTRUCT_ONLY |
781                          G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
782
783    /**
784     * GSettings:path:
785     *
786     * The path within the backend where the settings are stored.
787     */
788    g_object_class_install_property (object_class, PROP_PATH,
789      g_param_spec_string ("path",
790                           P_("Base path"),
791                           P_("The path within the backend where the settings are"),
792                           NULL,
793                           G_PARAM_CONSTRUCT_ONLY |
794                           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
795
796    /**
797     * GSettings:has-unapplied:
798     *
799     * If this property is %TRUE, the #GSettings object has outstanding
800     * changes that will be applied when g_settings_apply() is called.
801     */
802    g_object_class_install_property (object_class, PROP_HAS_UNAPPLIED,
803      g_param_spec_boolean ("has-unapplied",
804                            P_("Has unapplied changes"),
805                            P_("TRUE if there are outstanding changes to apply()"),
806                            FALSE,
807                            G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
808
809    /**
810     * GSettings:delay-apply:
811     *
812     * Whether the #GSettings object is in 'delay-apply' mode. See
813     * g_settings_delay() for details.
814     *
815     * Since: 2.28
816     */
817    g_object_class_install_property (object_class, PROP_DELAY_APPLY,
818      g_param_spec_boolean ("delay-apply",
819                            P_("Delay-apply mode"),
820                            P_("Whether this settings object is in 'delay-apply' mode"),
821                            FALSE,
822                            G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
823 }
824
825 /* Construction (new, new_with_path, etc.) {{{1 */
826 /**
827  * g_settings_new:
828  * @schema: the name of the schema
829  * @returns: a new #GSettings object
830  *
831  * Creates a new #GSettings object with a given schema.
832  *
833  * Signals on the newly created #GSettings object will be dispatched
834  * via the thread-default #GMainContext in effect at the time of the
835  * call to g_settings_new().  The new #GSettings will hold a reference
836  * on the context.  See g_main_context_push_thread_default().
837  *
838  * Since: 2.26
839  */
840 GSettings *
841 g_settings_new (const gchar *schema)
842 {
843   g_return_val_if_fail (schema != NULL, NULL);
844
845   return g_object_new (G_TYPE_SETTINGS,
846                        "schema-id", schema,
847                        NULL);
848 }
849
850 /**
851  * g_settings_new_with_path:
852  * @schema: the name of the schema
853  * @path: the path to use
854  * @returns: a new #GSettings object
855  *
856  * Creates a new #GSettings object with a given schema and path.
857  *
858  * You only need to do this if you want to directly create a settings
859  * object with a schema that doesn't have a specified path of its own.
860  * That's quite rare.
861  *
862  * It is a programmer error to call this function for a schema that
863  * has an explicitly specified path.
864  *
865  * Since: 2.26
866  */
867 GSettings *
868 g_settings_new_with_path (const gchar *schema,
869                           const gchar *path)
870 {
871   g_return_val_if_fail (schema != NULL, NULL);
872   g_return_val_if_fail (path != NULL, NULL);
873
874   return g_object_new (G_TYPE_SETTINGS,
875                        "schema-id", schema,
876                        "path", path,
877                        NULL);
878 }
879
880 /**
881  * g_settings_new_with_backend:
882  * @schema: the name of the schema
883  * @backend: the #GSettingsBackend to use
884  * @returns: a new #GSettings object
885  *
886  * Creates a new #GSettings object with a given schema and backend.
887  *
888  * Creating a #GSettings object with a different backend allows accessing
889  * settings from a database other than the usual one. For example, it may make
890  * sense to pass a backend corresponding to the "defaults" settings database on
891  * the system to get a settings object that modifies the system default
892  * settings instead of the settings for this user.
893  *
894  * Since: 2.26
895  */
896 GSettings *
897 g_settings_new_with_backend (const gchar      *schema,
898                              GSettingsBackend *backend)
899 {
900   g_return_val_if_fail (schema != NULL, NULL);
901   g_return_val_if_fail (G_IS_SETTINGS_BACKEND (backend), NULL);
902
903   return g_object_new (G_TYPE_SETTINGS,
904                        "schema-id", schema,
905                        "backend", backend,
906                        NULL);
907 }
908
909 /**
910  * g_settings_new_with_backend_and_path:
911  * @schema: the name of the schema
912  * @backend: the #GSettingsBackend to use
913  * @path: the path to use
914  * @returns: a new #GSettings object
915  *
916  * Creates a new #GSettings object with a given schema, backend and
917  * path.
918  *
919  * This is a mix of g_settings_new_with_backend() and
920  * g_settings_new_with_path().
921  *
922  * Since: 2.26
923  */
924 GSettings *
925 g_settings_new_with_backend_and_path (const gchar      *schema,
926                                       GSettingsBackend *backend,
927                                       const gchar      *path)
928 {
929   g_return_val_if_fail (schema != NULL, NULL);
930   g_return_val_if_fail (G_IS_SETTINGS_BACKEND (backend), NULL);
931   g_return_val_if_fail (path != NULL, NULL);
932
933   return g_object_new (G_TYPE_SETTINGS,
934                        "schema-id", schema,
935                        "backend", backend,
936                        "path", path,
937                        NULL);
938 }
939
940 /* Internal read/write utilities {{{1 */
941 static gboolean
942 g_settings_write_to_backend (GSettings          *settings,
943                              GSettingsSchemaKey *key,
944                              GVariant           *value)
945 {
946   gboolean success;
947   gchar *path;
948
949   path = g_strconcat (settings->priv->path, key->name, NULL);
950   success = g_settings_backend_write (settings->priv->backend, path, value, NULL);
951   g_free (path);
952
953   return success;
954 }
955
956 static GVariant *
957 g_settings_read_from_backend (GSettings          *settings,
958                               GSettingsSchemaKey *key)
959 {
960   GVariant *value;
961   GVariant *fixup;
962   gchar *path;
963
964   path = g_strconcat (settings->priv->path, key->name, NULL);
965   value = g_settings_backend_read (settings->priv->backend, path, key->type, FALSE);
966   g_free (path);
967
968   if (value != NULL)
969     {
970       fixup = g_settings_schema_key_range_fixup (key, value);
971       g_variant_unref (value);
972     }
973   else
974     fixup = NULL;
975
976   return fixup;
977 }
978
979 /* Public Get/Set API {{{1 (get, get_value, set, set_value, get_mapped) */
980 /**
981  * g_settings_get_value:
982  * @settings: a #GSettings object
983  * @key: the key to get the value for
984  * @returns: a new #GVariant
985  *
986  * Gets the value that is stored in @settings for @key.
987  *
988  * It is a programmer error to give a @key that isn't contained in the
989  * schema for @settings.
990  *
991  * Since: 2.26
992  */
993 GVariant *
994 g_settings_get_value (GSettings   *settings,
995                       const gchar *key)
996 {
997   GSettingsSchemaKey skey;
998   GVariant *value;
999
1000   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1001   g_return_val_if_fail (key != NULL, NULL);
1002
1003   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1004   value = g_settings_read_from_backend (settings, &skey);
1005
1006   if (value == NULL)
1007     value = g_settings_schema_key_get_translated_default (&skey);
1008
1009   if (value == NULL)
1010     value = g_variant_ref (skey.default_value);
1011
1012   g_settings_schema_key_clear (&skey);
1013
1014   return value;
1015 }
1016
1017 /**
1018  * g_settings_get_enum:
1019  * @settings: a #GSettings object
1020  * @key: the key to get the value for
1021  * @returns: the enum value
1022  *
1023  * Gets the value that is stored in @settings for @key and converts it
1024  * to the enum value that it represents.
1025  *
1026  * In order to use this function the type of the value must be a string
1027  * and it must be marked in the schema file as an enumerated type.
1028  *
1029  * It is a programmer error to give a @key that isn't contained in the
1030  * schema for @settings or is not marked as an enumerated type.
1031  *
1032  * If the value stored in the configuration database is not a valid
1033  * value for the enumerated type then this function will return the
1034  * default value.
1035  *
1036  * Since: 2.26
1037  **/
1038 gint
1039 g_settings_get_enum (GSettings   *settings,
1040                      const gchar *key)
1041 {
1042   GSettingsSchemaKey skey;
1043   GVariant *value;
1044   gint result;
1045
1046   g_return_val_if_fail (G_IS_SETTINGS (settings), -1);
1047   g_return_val_if_fail (key != NULL, -1);
1048
1049   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1050
1051   if (!skey.is_enum)
1052     {
1053       g_critical ("g_settings_get_enum() called on key `%s' which is not "
1054                   "associated with an enumerated type", skey.name);
1055       g_settings_schema_key_clear (&skey);
1056       return -1;
1057     }
1058
1059   value = g_settings_read_from_backend (settings, &skey);
1060
1061   if (value == NULL)
1062     value = g_settings_schema_key_get_translated_default (&skey);
1063
1064   if (value == NULL)
1065     value = g_variant_ref (skey.default_value);
1066
1067   result = g_settings_schema_key_to_enum (&skey, value);
1068   g_settings_schema_key_clear (&skey);
1069   g_variant_unref (value);
1070
1071   return result;
1072 }
1073
1074 /**
1075  * g_settings_set_enum:
1076  * @settings: a #GSettings object
1077  * @key: a key, within @settings
1078  * @value: an enumerated value
1079  * @returns: %TRUE, if the set succeeds
1080  *
1081  * Looks up the enumerated type nick for @value and writes it to @key,
1082  * within @settings.
1083  *
1084  * It is a programmer error to give a @key that isn't contained in the
1085  * schema for @settings or is not marked as an enumerated type, or for
1086  * @value not to be a valid value for the named type.
1087  *
1088  * After performing the write, accessing @key directly with
1089  * g_settings_get_string() will return the 'nick' associated with
1090  * @value.
1091  **/
1092 gboolean
1093 g_settings_set_enum (GSettings   *settings,
1094                      const gchar *key,
1095                      gint         value)
1096 {
1097   GSettingsSchemaKey skey;
1098   GVariant *variant;
1099   gboolean success;
1100
1101   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1102   g_return_val_if_fail (key != NULL, FALSE);
1103
1104   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1105
1106   if (!skey.is_enum)
1107     {
1108       g_critical ("g_settings_set_enum() called on key `%s' which is not "
1109                   "associated with an enumerated type", skey.name);
1110       return FALSE;
1111     }
1112
1113   if (!(variant = g_settings_schema_key_from_enum (&skey, value)))
1114     {
1115       g_critical ("g_settings_set_enum(): invalid enum value %d for key `%s' "
1116                   "in schema `%s'.  Doing nothing.", value, skey.name,
1117                   g_settings_schema_get_id (skey.schema));
1118       g_settings_schema_key_clear (&skey);
1119       return FALSE;
1120     }
1121
1122   success = g_settings_write_to_backend (settings, &skey, variant);
1123   g_settings_schema_key_clear (&skey);
1124
1125   return success;
1126 }
1127
1128 /**
1129  * g_settings_get_flags:
1130  * @settings: a #GSettings object
1131  * @key: the key to get the value for
1132  * @returns: the flags value
1133  *
1134  * Gets the value that is stored in @settings for @key and converts it
1135  * to the flags value that it represents.
1136  *
1137  * In order to use this function the type of the value must be an array
1138  * of strings and it must be marked in the schema file as an flags type.
1139  *
1140  * It is a programmer error to give a @key that isn't contained in the
1141  * schema for @settings or is not marked as a flags type.
1142  *
1143  * If the value stored in the configuration database is not a valid
1144  * value for the flags type then this function will return the default
1145  * value.
1146  *
1147  * Since: 2.26
1148  **/
1149 guint
1150 g_settings_get_flags (GSettings   *settings,
1151                       const gchar *key)
1152 {
1153   GSettingsSchemaKey skey;
1154   GVariant *value;
1155   guint result;
1156
1157   g_return_val_if_fail (G_IS_SETTINGS (settings), -1);
1158   g_return_val_if_fail (key != NULL, -1);
1159
1160   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1161
1162   if (!skey.is_flags)
1163     {
1164       g_critical ("g_settings_get_flags() called on key `%s' which is not "
1165                   "associated with a flags type", skey.name);
1166       g_settings_schema_key_clear (&skey);
1167       return -1;
1168     }
1169
1170   value = g_settings_read_from_backend (settings, &skey);
1171
1172   if (value == NULL)
1173     value = g_settings_schema_key_get_translated_default (&skey);
1174
1175   if (value == NULL)
1176     value = g_variant_ref (skey.default_value);
1177
1178   result = g_settings_schema_key_to_flags (&skey, value);
1179   g_settings_schema_key_clear (&skey);
1180   g_variant_unref (value);
1181
1182   return result;
1183 }
1184
1185 /**
1186  * g_settings_set_flags:
1187  * @settings: a #GSettings object
1188  * @key: a key, within @settings
1189  * @value: a flags value
1190  * @returns: %TRUE, if the set succeeds
1191  *
1192  * Looks up the flags type nicks for the bits specified by @value, puts
1193  * them in an array of strings and writes the array to @key, within
1194  * @settings.
1195  *
1196  * It is a programmer error to give a @key that isn't contained in the
1197  * schema for @settings or is not marked as a flags type, or for @value
1198  * to contain any bits that are not value for the named type.
1199  *
1200  * After performing the write, accessing @key directly with
1201  * g_settings_get_strv() will return an array of 'nicks'; one for each
1202  * bit in @value.
1203  **/
1204 gboolean
1205 g_settings_set_flags (GSettings   *settings,
1206                       const gchar *key,
1207                       guint        value)
1208 {
1209   GSettingsSchemaKey skey;
1210   GVariant *variant;
1211   gboolean success;
1212
1213   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1214   g_return_val_if_fail (key != NULL, FALSE);
1215
1216   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1217
1218   if (!skey.is_flags)
1219     {
1220       g_critical ("g_settings_set_flags() called on key `%s' which is not "
1221                   "associated with a flags type", skey.name);
1222       return FALSE;
1223     }
1224
1225   if (!(variant = g_settings_schema_key_from_flags (&skey, value)))
1226     {
1227       g_critical ("g_settings_set_flags(): invalid flags value 0x%08x "
1228                   "for key `%s' in schema `%s'.  Doing nothing.",
1229                   value, skey.name, g_settings_schema_get_id (skey.schema));
1230       g_settings_schema_key_clear (&skey);
1231       return FALSE;
1232     }
1233
1234   success = g_settings_write_to_backend (settings, &skey, variant);
1235   g_settings_schema_key_clear (&skey);
1236
1237   return success;
1238 }
1239
1240 /**
1241  * g_settings_set_value:
1242  * @settings: a #GSettings object
1243  * @key: the name of the key to set
1244  * @value: a #GVariant of the correct type
1245  * @returns: %TRUE if setting the key succeeded,
1246  *     %FALSE if the key was not writable
1247  *
1248  * Sets @key in @settings to @value.
1249  *
1250  * It is a programmer error to give a @key that isn't contained in the
1251  * schema for @settings or for @value to have the incorrect type, per
1252  * the schema.
1253  *
1254  * If @value is floating then this function consumes the reference.
1255  *
1256  * Since: 2.26
1257  **/
1258 gboolean
1259 g_settings_set_value (GSettings   *settings,
1260                       const gchar *key,
1261                       GVariant    *value)
1262 {
1263   GSettingsSchemaKey skey;
1264
1265   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1266   g_return_val_if_fail (key != NULL, FALSE);
1267
1268   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1269
1270   if (!g_settings_schema_key_type_check (&skey, value))
1271     {
1272       g_critical ("g_settings_set_value: key '%s' in '%s' expects type '%s', but a GVariant of type '%s' was given",
1273                   key,
1274                   g_settings_schema_get_id (settings->priv->schema),
1275                   g_variant_type_peek_string (skey.type),
1276                   g_variant_get_type_string (value));
1277
1278         return FALSE;
1279       }
1280
1281   if (!g_settings_schema_key_range_check (&skey, value))
1282     {
1283       g_warning ("g_settings_set_value: value for key '%s' in schema '%s' "
1284                  "is outside of valid range",
1285                  key,
1286                  g_settings_schema_get_id (settings->priv->schema));
1287
1288         return FALSE;
1289     }
1290
1291   g_settings_schema_key_clear (&skey);
1292
1293   return g_settings_write_to_backend (settings, &skey, value);
1294 }
1295
1296 /**
1297  * g_settings_get:
1298  * @settings: a #GSettings object
1299  * @key: the key to get the value for
1300  * @format: a #GVariant format string
1301  * @...: arguments as per @format
1302  *
1303  * Gets the value that is stored at @key in @settings.
1304  *
1305  * A convenience function that combines g_settings_get_value() with
1306  * g_variant_get().
1307  *
1308  * It is a programmer error to give a @key that isn't contained in the
1309  * schema for @settings or for the #GVariantType of @format to mismatch
1310  * the type given in the schema.
1311  *
1312  * Since: 2.26
1313  */
1314 void
1315 g_settings_get (GSettings   *settings,
1316                 const gchar *key,
1317                 const gchar *format,
1318                 ...)
1319 {
1320   GVariant *value;
1321   va_list ap;
1322
1323   value = g_settings_get_value (settings, key);
1324
1325   va_start (ap, format);
1326   g_variant_get_va (value, format, NULL, &ap);
1327   va_end (ap);
1328
1329   g_variant_unref (value);
1330 }
1331
1332 /**
1333  * g_settings_set:
1334  * @settings: a #GSettings object
1335  * @key: the name of the key to set
1336  * @format: a #GVariant format string
1337  * @...: arguments as per @format
1338  * @returns: %TRUE if setting the key succeeded,
1339  *     %FALSE if the key was not writable
1340  *
1341  * Sets @key in @settings to @value.
1342  *
1343  * A convenience function that combines g_settings_set_value() with
1344  * g_variant_new().
1345  *
1346  * It is a programmer error to give a @key that isn't contained in the
1347  * schema for @settings or for the #GVariantType of @format to mismatch
1348  * the type given in the schema.
1349  *
1350  * Since: 2.26
1351  */
1352 gboolean
1353 g_settings_set (GSettings   *settings,
1354                 const gchar *key,
1355                 const gchar *format,
1356                 ...)
1357 {
1358   GVariant *value;
1359   va_list ap;
1360
1361   va_start (ap, format);
1362   value = g_variant_new_va (format, NULL, &ap);
1363   va_end (ap);
1364
1365   return g_settings_set_value (settings, key, value);
1366 }
1367
1368 /**
1369  * g_settings_get_mapped:
1370  * @settings: a #GSettings object
1371  * @key: the key to get the value for
1372  * @mapping: (scope call): the function to map the value in the
1373  *           settings database to the value used by the application
1374  * @user_data: user data for @mapping
1375  * @returns: (transfer full): the result, which may be %NULL
1376  *
1377  * Gets the value that is stored at @key in @settings, subject to
1378  * application-level validation/mapping.
1379  *
1380  * You should use this function when the application needs to perform
1381  * some processing on the value of the key (for example, parsing).  The
1382  * @mapping function performs that processing.  If the function
1383  * indicates that the processing was unsuccessful (due to a parse error,
1384  * for example) then the mapping is tried again with another value.
1385
1386  * This allows a robust 'fall back to defaults' behaviour to be
1387  * implemented somewhat automatically.
1388  *
1389  * The first value that is tried is the user's setting for the key.  If
1390  * the mapping function fails to map this value, other values may be
1391  * tried in an unspecified order (system or site defaults, translated
1392  * schema default values, untranslated schema default values, etc).
1393  *
1394  * If the mapping function fails for all possible values, one additional
1395  * attempt is made: the mapping function is called with a %NULL value.
1396  * If the mapping function still indicates failure at this point then
1397  * the application will be aborted.
1398  *
1399  * The result parameter for the @mapping function is pointed to a
1400  * #gpointer which is initially set to %NULL.  The same pointer is given
1401  * to each invocation of @mapping.  The final value of that #gpointer is
1402  * what is returned by this function.  %NULL is valid; it is returned
1403  * just as any other value would be.
1404  **/
1405 gpointer
1406 g_settings_get_mapped (GSettings           *settings,
1407                        const gchar         *key,
1408                        GSettingsGetMapping  mapping,
1409                        gpointer             user_data)
1410 {
1411   gpointer result = NULL;
1412   GSettingsSchemaKey skey;
1413   GVariant *value;
1414   gboolean okay;
1415
1416   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1417   g_return_val_if_fail (key != NULL, NULL);
1418   g_return_val_if_fail (mapping != NULL, NULL);
1419
1420   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1421
1422   if ((value = g_settings_read_from_backend (settings, &skey)))
1423     {
1424       okay = mapping (value, &result, user_data);
1425       g_variant_unref (value);
1426       if (okay) goto okay;
1427     }
1428
1429   if ((value = g_settings_schema_key_get_translated_default (&skey)))
1430     {
1431       okay = mapping (value, &result, user_data);
1432       g_variant_unref (value);
1433       if (okay) goto okay;
1434     }
1435
1436   if (mapping (skey.default_value, &result, user_data))
1437     goto okay;
1438
1439   if (!mapping (NULL, &result, user_data))
1440     g_error ("The mapping function given to g_settings_get_mapped() for key "
1441              "`%s' in schema `%s' returned FALSE when given a NULL value.",
1442              key, g_settings_schema_get_id (settings->priv->schema));
1443
1444  okay:
1445   g_settings_schema_key_clear (&skey);
1446
1447   return result;
1448 }
1449
1450 /* Convenience API (get, set_string, int, double, boolean, strv) {{{1 */
1451 /**
1452  * g_settings_get_string:
1453  * @settings: a #GSettings object
1454  * @key: the key to get the value for
1455  * @returns: a newly-allocated string
1456  *
1457  * Gets the value that is stored at @key in @settings.
1458  *
1459  * A convenience variant of g_settings_get() for strings.
1460  *
1461  * It is a programmer error to give a @key that isn't specified as
1462  * having a string type in the schema for @settings.
1463  *
1464  * Since: 2.26
1465  */
1466 gchar *
1467 g_settings_get_string (GSettings   *settings,
1468                        const gchar *key)
1469 {
1470   GVariant *value;
1471   gchar *result;
1472
1473   value = g_settings_get_value (settings, key);
1474   result = g_variant_dup_string (value, NULL);
1475   g_variant_unref (value);
1476
1477   return result;
1478 }
1479
1480 /**
1481  * g_settings_set_string:
1482  * @settings: a #GSettings object
1483  * @key: the name of the key to set
1484  * @value: the value to set it to
1485  * @returns: %TRUE if setting the key succeeded,
1486  *     %FALSE if the key was not writable
1487  *
1488  * Sets @key in @settings to @value.
1489  *
1490  * A convenience variant of g_settings_set() for strings.
1491  *
1492  * It is a programmer error to give a @key that isn't specified as
1493  * having a string type in the schema for @settings.
1494  *
1495  * Since: 2.26
1496  */
1497 gboolean
1498 g_settings_set_string (GSettings   *settings,
1499                        const gchar *key,
1500                        const gchar *value)
1501 {
1502   return g_settings_set_value (settings, key, g_variant_new_string (value));
1503 }
1504
1505 /**
1506  * g_settings_get_int:
1507  * @settings: a #GSettings object
1508  * @key: the key to get the value for
1509  * @returns: an integer
1510  *
1511  * Gets the value that is stored at @key in @settings.
1512  *
1513  * A convenience variant of g_settings_get() for 32-bit integers.
1514  *
1515  * It is a programmer error to give a @key that isn't specified as
1516  * having a int32 type in the schema for @settings.
1517  *
1518  * Since: 2.26
1519  */
1520 gint
1521 g_settings_get_int (GSettings   *settings,
1522                     const gchar *key)
1523 {
1524   GVariant *value;
1525   gint result;
1526
1527   value = g_settings_get_value (settings, key);
1528   result = g_variant_get_int32 (value);
1529   g_variant_unref (value);
1530
1531   return result;
1532 }
1533
1534 /**
1535  * g_settings_set_int:
1536  * @settings: a #GSettings object
1537  * @key: the name of the key to set
1538  * @value: the value to set it to
1539  * @returns: %TRUE if setting the key succeeded,
1540  *     %FALSE if the key was not writable
1541  *
1542  * Sets @key in @settings to @value.
1543  *
1544  * A convenience variant of g_settings_set() for 32-bit integers.
1545  *
1546  * It is a programmer error to give a @key that isn't specified as
1547  * having a int32 type in the schema for @settings.
1548  *
1549  * Since: 2.26
1550  */
1551 gboolean
1552 g_settings_set_int (GSettings   *settings,
1553                     const gchar *key,
1554                     gint         value)
1555 {
1556   return g_settings_set_value (settings, key, g_variant_new_int32 (value));
1557 }
1558
1559 /**
1560  * g_settings_get_uint:
1561  * @settings: a #GSettings object
1562  * @key: the key to get the value for
1563  * @returns: an unsigned integer
1564  *
1565  * Gets the value that is stored at @key in @settings.
1566  *
1567  * A convenience variant of g_settings_get() for 32-bit unsigned
1568  * integers.
1569  *
1570  * It is a programmer error to give a @key that isn't specified as
1571  * having a uint32 type in the schema for @settings.
1572  *
1573  * Since: 2.30
1574  */
1575 guint
1576 g_settings_get_uint (GSettings   *settings,
1577                      const gchar *key)
1578 {
1579   GVariant *value;
1580   guint result;
1581
1582   value = g_settings_get_value (settings, key);
1583   result = g_variant_get_uint32 (value);
1584   g_variant_unref (value);
1585
1586   return result;
1587 }
1588
1589 /**
1590  * g_settings_set_uint:
1591  * @settings: a #GSettings object
1592  * @key: the name of the key to set
1593  * @value: the value to set it to
1594  * @returns: %TRUE if setting the key succeeded,
1595  *     %FALSE if the key was not writable
1596  *
1597  * Sets @key in @settings to @value.
1598  *
1599  * A convenience variant of g_settings_set() for 32-bit unsigned
1600  * integers.
1601  *
1602  * It is a programmer error to give a @key that isn't specified as
1603  * having a uint32 type in the schema for @settings.
1604  *
1605  * Since: 2.30
1606  */
1607 gboolean
1608 g_settings_set_uint (GSettings   *settings,
1609                      const gchar *key,
1610                      guint        value)
1611 {
1612   return g_settings_set_value (settings, key, g_variant_new_uint32 (value));
1613 }
1614
1615 /**
1616  * g_settings_get_double:
1617  * @settings: a #GSettings object
1618  * @key: the key to get the value for
1619  * @returns: a double
1620  *
1621  * Gets the value that is stored at @key in @settings.
1622  *
1623  * A convenience variant of g_settings_get() for doubles.
1624  *
1625  * It is a programmer error to give a @key that isn't specified as
1626  * having a 'double' type in the schema for @settings.
1627  *
1628  * Since: 2.26
1629  */
1630 gdouble
1631 g_settings_get_double (GSettings   *settings,
1632                        const gchar *key)
1633 {
1634   GVariant *value;
1635   gdouble result;
1636
1637   value = g_settings_get_value (settings, key);
1638   result = g_variant_get_double (value);
1639   g_variant_unref (value);
1640
1641   return result;
1642 }
1643
1644 /**
1645  * g_settings_set_double:
1646  * @settings: a #GSettings object
1647  * @key: the name of the key to set
1648  * @value: the value to set it to
1649  * @returns: %TRUE if setting the key succeeded,
1650  *     %FALSE if the key was not writable
1651  *
1652  * Sets @key in @settings to @value.
1653  *
1654  * A convenience variant of g_settings_set() for doubles.
1655  *
1656  * It is a programmer error to give a @key that isn't specified as
1657  * having a 'double' type in the schema for @settings.
1658  *
1659  * Since: 2.26
1660  */
1661 gboolean
1662 g_settings_set_double (GSettings   *settings,
1663                        const gchar *key,
1664                        gdouble      value)
1665 {
1666   return g_settings_set_value (settings, key, g_variant_new_double (value));
1667 }
1668
1669 /**
1670  * g_settings_get_boolean:
1671  * @settings: a #GSettings object
1672  * @key: the key to get the value for
1673  * @returns: a boolean
1674  *
1675  * Gets the value that is stored at @key in @settings.
1676  *
1677  * A convenience variant of g_settings_get() for booleans.
1678  *
1679  * It is a programmer error to give a @key that isn't specified as
1680  * having a boolean type in the schema for @settings.
1681  *
1682  * Since: 2.26
1683  */
1684 gboolean
1685 g_settings_get_boolean (GSettings  *settings,
1686                        const gchar *key)
1687 {
1688   GVariant *value;
1689   gboolean result;
1690
1691   value = g_settings_get_value (settings, key);
1692   result = g_variant_get_boolean (value);
1693   g_variant_unref (value);
1694
1695   return result;
1696 }
1697
1698 /**
1699  * g_settings_set_boolean:
1700  * @settings: a #GSettings object
1701  * @key: the name of the key to set
1702  * @value: the value to set it to
1703  * @returns: %TRUE if setting the key succeeded,
1704  *     %FALSE if the key was not writable
1705  *
1706  * Sets @key in @settings to @value.
1707  *
1708  * A convenience variant of g_settings_set() for booleans.
1709  *
1710  * It is a programmer error to give a @key that isn't specified as
1711  * having a boolean type in the schema for @settings.
1712  *
1713  * Since: 2.26
1714  */
1715 gboolean
1716 g_settings_set_boolean (GSettings  *settings,
1717                        const gchar *key,
1718                        gboolean     value)
1719 {
1720   return g_settings_set_value (settings, key, g_variant_new_boolean (value));
1721 }
1722
1723 /**
1724  * g_settings_get_strv:
1725  * @settings: a #GSettings object
1726  * @key: the key to get the value for
1727  * @returns: (array zero-terminated=1) (transfer full): a
1728  * newly-allocated, %NULL-terminated array of strings, the value that
1729  * is stored at @key in @settings.
1730  *
1731  * A convenience variant of g_settings_get() for string arrays.
1732  *
1733  * It is a programmer error to give a @key that isn't specified as
1734  * having an array of strings type in the schema for @settings.
1735  *
1736  * Since: 2.26
1737  */
1738 gchar **
1739 g_settings_get_strv (GSettings   *settings,
1740                      const gchar *key)
1741 {
1742   GVariant *value;
1743   gchar **result;
1744
1745   value = g_settings_get_value (settings, key);
1746   result = g_variant_dup_strv (value, NULL);
1747   g_variant_unref (value);
1748
1749   return result;
1750 }
1751
1752 /**
1753  * g_settings_set_strv:
1754  * @settings: a #GSettings object
1755  * @key: the name of the key to set
1756  * @value: (allow-none) (array zero-terminated=1): the value to set it to, or %NULL
1757  * @returns: %TRUE if setting the key succeeded,
1758  *     %FALSE if the key was not writable
1759  *
1760  * Sets @key in @settings to @value.
1761  *
1762  * A convenience variant of g_settings_set() for string arrays.  If
1763  * @value is %NULL, then @key is set to be the empty array.
1764  *
1765  * It is a programmer error to give a @key that isn't specified as
1766  * having an array of strings type in the schema for @settings.
1767  *
1768  * Since: 2.26
1769  */
1770 gboolean
1771 g_settings_set_strv (GSettings           *settings,
1772                      const gchar         *key,
1773                      const gchar * const *value)
1774 {
1775   GVariant *array;
1776
1777   if (value != NULL)
1778     array = g_variant_new_strv (value, -1);
1779   else
1780     array = g_variant_new_strv (NULL, 0);
1781
1782   return g_settings_set_value (settings, key, array);
1783 }
1784
1785 /* Delayed apply (delay, apply, revert, get_has_unapplied) {{{1 */
1786 /**
1787  * g_settings_delay:
1788  * @settings: a #GSettings object
1789  *
1790  * Changes the #GSettings object into 'delay-apply' mode. In this
1791  * mode, changes to @settings are not immediately propagated to the
1792  * backend, but kept locally until g_settings_apply() is called.
1793  *
1794  * Since: 2.26
1795  */
1796 void
1797 g_settings_delay (GSettings *settings)
1798 {
1799   g_return_if_fail (G_IS_SETTINGS (settings));
1800
1801   if (settings->priv->delayed)
1802     return;
1803
1804   settings->priv->delayed =
1805     g_delayed_settings_backend_new (settings->priv->backend,
1806                                     settings,
1807                                     settings->priv->main_context);
1808   g_settings_backend_unwatch (settings->priv->backend, G_OBJECT (settings));
1809   g_object_unref (settings->priv->backend);
1810
1811   settings->priv->backend = G_SETTINGS_BACKEND (settings->priv->delayed);
1812   g_settings_backend_watch (settings->priv->backend,
1813                             &listener_vtable, G_OBJECT (settings),
1814                             settings->priv->main_context);
1815
1816   g_object_notify (G_OBJECT (settings), "delay-apply");
1817 }
1818
1819 /**
1820  * g_settings_apply:
1821  * @settings: a #GSettings instance
1822  *
1823  * Applies any changes that have been made to the settings.  This
1824  * function does nothing unless @settings is in 'delay-apply' mode;
1825  * see g_settings_delay().  In the normal case settings are always
1826  * applied immediately.
1827  **/
1828 void
1829 g_settings_apply (GSettings *settings)
1830 {
1831   if (settings->priv->delayed)
1832     {
1833       GDelayedSettingsBackend *delayed;
1834
1835       delayed = G_DELAYED_SETTINGS_BACKEND (settings->priv->backend);
1836       g_delayed_settings_backend_apply (delayed);
1837     }
1838 }
1839
1840 /**
1841  * g_settings_revert:
1842  * @settings: a #GSettings instance
1843  *
1844  * Reverts all non-applied changes to the settings.  This function
1845  * does nothing unless @settings is in 'delay-apply' mode; see
1846  * g_settings_delay().  In the normal case settings are always applied
1847  * immediately.
1848  *
1849  * Change notifications will be emitted for affected keys.
1850  **/
1851 void
1852 g_settings_revert (GSettings *settings)
1853 {
1854   if (settings->priv->delayed)
1855     {
1856       GDelayedSettingsBackend *delayed;
1857
1858       delayed = G_DELAYED_SETTINGS_BACKEND (settings->priv->backend);
1859       g_delayed_settings_backend_revert (delayed);
1860     }
1861 }
1862
1863 /**
1864  * g_settings_get_has_unapplied:
1865  * @settings: a #GSettings object
1866  * @returns: %TRUE if @settings has unapplied changes
1867  *
1868  * Returns whether the #GSettings object has any unapplied
1869  * changes.  This can only be the case if it is in 'delayed-apply' mode.
1870  *
1871  * Since: 2.26
1872  */
1873 gboolean
1874 g_settings_get_has_unapplied (GSettings *settings)
1875 {
1876   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1877
1878   return settings->priv->delayed &&
1879          g_delayed_settings_backend_get_has_unapplied (
1880            G_DELAYED_SETTINGS_BACKEND (settings->priv->backend));
1881 }
1882
1883 /* Extra API (reset, sync, get_child, is_writable, list_*, ranges) {{{1 */
1884 /**
1885  * g_settings_reset:
1886  * @settings: a #GSettings object
1887  * @key: the name of a key
1888  *
1889  * Resets @key to its default value.
1890  *
1891  * This call resets the key, as much as possible, to its default value.
1892  * That might the value specified in the schema or the one set by the
1893  * administrator.
1894  **/
1895 void
1896 g_settings_reset (GSettings *settings,
1897                   const gchar *key)
1898 {
1899   gchar *path;
1900
1901   path = g_strconcat (settings->priv->path, key, NULL);
1902   g_settings_backend_reset (settings->priv->backend, path, NULL);
1903   g_free (path);
1904 }
1905
1906 /**
1907  * g_settings_sync:
1908  *
1909  * Ensures that all pending operations for the given are complete for
1910  * the default backend.
1911  *
1912  * Writes made to a #GSettings are handled asynchronously.  For this
1913  * reason, it is very unlikely that the changes have it to disk by the
1914  * time g_settings_set() returns.
1915  *
1916  * This call will block until all of the writes have made it to the
1917  * backend.  Since the mainloop is not running, no change notifications
1918  * will be dispatched during this call (but some may be queued by the
1919  * time the call is done).
1920  **/
1921 void
1922 g_settings_sync (void)
1923 {
1924   g_settings_backend_sync_default ();
1925 }
1926
1927 /**
1928  * g_settings_is_writable:
1929  * @settings: a #GSettings object
1930  * @name: the name of a key
1931  * @returns: %TRUE if the key @name is writable
1932  *
1933  * Finds out if a key can be written or not
1934  *
1935  * Since: 2.26
1936  */
1937 gboolean
1938 g_settings_is_writable (GSettings   *settings,
1939                         const gchar *name)
1940 {
1941   gboolean writable;
1942   gchar *path;
1943
1944   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1945
1946   path = g_strconcat (settings->priv->path, name, NULL);
1947   writable = g_settings_backend_get_writable (settings->priv->backend, path);
1948   g_free (path);
1949
1950   return writable;
1951 }
1952
1953 /**
1954  * g_settings_get_child:
1955  * @settings: a #GSettings object
1956  * @name: the name of the 'child' schema
1957  * @returns: (transfer full): a 'child' settings object
1958  *
1959  * Creates a 'child' settings object which has a base path of
1960  * <replaceable>base-path</replaceable>/@name, where
1961  * <replaceable>base-path</replaceable> is the base path of @settings.
1962  *
1963  * The schema for the child settings object must have been declared
1964  * in the schema of @settings using a <tag class="starttag">child</tag> element.
1965  *
1966  * Since: 2.26
1967  */
1968 GSettings *
1969 g_settings_get_child (GSettings   *settings,
1970                       const gchar *name)
1971 {
1972   const gchar *child_schema;
1973   gchar *child_path;
1974   gchar *child_name;
1975   GSettings *child;
1976
1977   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1978
1979   child_name = g_strconcat (name, "/", NULL);
1980   child_schema = g_settings_schema_get_string (settings->priv->schema,
1981                                                child_name);
1982   if (child_schema == NULL)
1983     g_error ("Schema '%s' has no child '%s'",
1984              g_settings_schema_get_id (settings->priv->schema), name);
1985
1986   child_path = g_strconcat (settings->priv->path, child_name, NULL);
1987   child = g_object_new (G_TYPE_SETTINGS,
1988                         "schema-id", child_schema,
1989                         "path", child_path,
1990                         NULL);
1991   g_free (child_path);
1992   g_free (child_name);
1993
1994   return child;
1995 }
1996
1997 /**
1998  * g_settings_list_keys:
1999  * @settings: a #GSettings object
2000  * @returns: (transfer full) (element-type utf8): a list of the keys on @settings
2001  *
2002  * Introspects the list of keys on @settings.
2003  *
2004  * You should probably not be calling this function from "normal" code
2005  * (since you should already know what keys are in your schema).  This
2006  * function is intended for introspection reasons.
2007  *
2008  * You should free the return value with g_strfreev() when you are done
2009  * with it.
2010  */
2011 gchar **
2012 g_settings_list_keys (GSettings *settings)
2013 {
2014   const GQuark *keys;
2015   gchar **strv;
2016   gint n_keys;
2017   gint i, j;
2018
2019   keys = g_settings_schema_list (settings->priv->schema, &n_keys);
2020   strv = g_new (gchar *, n_keys + 1);
2021   for (i = j = 0; i < n_keys; i++)
2022     {
2023       const gchar *key = g_quark_to_string (keys[i]);
2024
2025       if (!g_str_has_suffix (key, "/"))
2026         strv[j++] = g_strdup (key);
2027     }
2028   strv[j] = NULL;
2029
2030   return strv;
2031 }
2032
2033 /**
2034  * g_settings_list_children:
2035  * @settings: a #GSettings object
2036  * @returns: (transfer full) (element-type utf8): a list of the children on @settings
2037  *
2038  * Gets the list of children on @settings.
2039  *
2040  * The list is exactly the list of strings for which it is not an error
2041  * to call g_settings_get_child().
2042  *
2043  * For GSettings objects that are lists, this value can change at any
2044  * time and you should connect to the "children-changed" signal to watch
2045  * for those changes.  Note that there is a race condition here: you may
2046  * request a child after listing it only for it to have been destroyed
2047  * in the meantime.  For this reason, g_settings_get_child() may return
2048  * %NULL even for a child that was listed by this function.
2049  *
2050  * For GSettings objects that are not lists, you should probably not be
2051  * calling this function from "normal" code (since you should already
2052  * know what children are in your schema).  This function may still be
2053  * useful there for introspection reasons, however.
2054  *
2055  * You should free the return value with g_strfreev() when you are done
2056  * with it.
2057  */
2058 gchar **
2059 g_settings_list_children (GSettings *settings)
2060 {
2061   const GQuark *keys;
2062   gchar **strv;
2063   gint n_keys;
2064   gint i, j;
2065
2066   keys = g_settings_schema_list (settings->priv->schema, &n_keys);
2067   strv = g_new (gchar *, n_keys + 1);
2068   for (i = j = 0; i < n_keys; i++)
2069     {
2070       const gchar *key = g_quark_to_string (keys[i]);
2071
2072       if (g_str_has_suffix (key, "/"))
2073         {
2074           gint length = strlen (key);
2075
2076           strv[j] = g_memdup (key, length);
2077           strv[j][length - 1] = '\0';
2078           j++;
2079         }
2080     }
2081   strv[j] = NULL;
2082
2083   return strv;
2084 }
2085
2086 /**
2087  * g_settings_get_range:
2088  * @settings: a #GSettings
2089  * @key: the key to query the range of
2090  * @returns: a #GVariant describing the range
2091  *
2092  * Queries the range of a key.
2093  *
2094  * This function will return a #GVariant that fully describes the range
2095  * of values that are valid for @key.
2096  *
2097  * The type of #GVariant returned is <literal>(sv)</literal>.  The
2098  * string describes the type of range restriction in effect.  The type
2099  * and meaning of the value contained in the variant depends on the
2100  * string.
2101  *
2102  * If the string is <literal>'type'</literal> then the variant contains
2103  * an empty array.  The element type of that empty array is the expected
2104  * type of value and all values of that type are valid.
2105  *
2106  * If the string is <literal>'enum'</literal> then the variant contains
2107  * an array enumerating the possible values.  Each item in the array is
2108  * a possible valid value and no other values are valid.
2109  *
2110  * If the string is <literal>'flags'</literal> then the variant contains
2111  * an array.  Each item in the array is a value that may appear zero or
2112  * one times in an array to be used as the value for this key.  For
2113  * example, if the variant contained the array <literal>['x',
2114  * 'y']</literal> then the valid values for the key would be
2115  * <literal>[]</literal>, <literal>['x']</literal>,
2116  * <literal>['y']</literal>, <literal>['x', 'y']</literal> and
2117  * <literal>['y', 'x']</literal>.
2118  *
2119  * Finally, if the string is <literal>'range'</literal> then the variant
2120  * contains a pair of like-typed values -- the minimum and maximum
2121  * permissible values for this key.
2122  *
2123  * This information should not be used by normal programs.  It is
2124  * considered to be a hint for introspection purposes.  Normal programs
2125  * should already know what is permitted by their own schema.  The
2126  * format may change in any way in the future -- but particularly, new
2127  * forms may be added to the possibilities described above.
2128  *
2129  * It is a programmer error to give a @key that isn't contained in the
2130  * schema for @settings.
2131  *
2132  * You should free the returned value with g_variant_unref() when it is
2133  * no longer needed.
2134  *
2135  * Since: 2.28
2136  **/
2137 GVariant *
2138 g_settings_get_range (GSettings   *settings,
2139                       const gchar *key)
2140 {
2141   GSettingsSchemaKey skey;
2142   const gchar *type;
2143   GVariant *range;
2144
2145   g_settings_schema_key_init (&skey, settings->priv->schema, key);
2146
2147   if (skey.minimum)
2148     {
2149       range = g_variant_new ("(**)", skey.minimum, skey.maximum);
2150       type = "range";
2151     }
2152   else if (skey.strinfo)
2153     {
2154       range = strinfo_enumerate (skey.strinfo, skey.strinfo_length);
2155       type = skey.is_flags ? "flags" : "enum";
2156     }
2157   else
2158     {
2159       range = g_variant_new_array (skey.type, NULL, 0);
2160       type = "type";
2161     }
2162
2163   g_settings_schema_key_clear (&skey);
2164
2165   return g_variant_ref_sink (g_variant_new ("(sv)", type, range));
2166 }
2167
2168 /**
2169  * g_settings_range_check:
2170  * @settings: a #GSettings
2171  * @key: the key to check
2172  * @value: the value to check
2173  * @returns: %TRUE if @value is valid for @key
2174  *
2175  * Checks if the given @value is of the correct type and within the
2176  * permitted range for @key.
2177  *
2178  * This API is not intended to be used by normal programs -- they should
2179  * already know what is permitted by their own schemas.  This API is
2180  * meant to be used by programs such as editors or commandline tools.
2181  *
2182  * It is a programmer error to give a @key that isn't contained in the
2183  * schema for @settings.
2184  *
2185  * Since: 2.28
2186  **/
2187 gboolean
2188 g_settings_range_check (GSettings   *settings,
2189                         const gchar *key,
2190                         GVariant    *value)
2191 {
2192   GSettingsSchemaKey skey;
2193   gboolean good;
2194
2195   g_settings_schema_key_init (&skey, settings->priv->schema, key);
2196   good = g_settings_schema_key_type_check (&skey, value) &&
2197          g_settings_schema_key_range_check (&skey, value);
2198   g_settings_schema_key_clear (&skey);
2199
2200   return good;
2201 }
2202
2203 /* Binding {{{1 */
2204 typedef struct
2205 {
2206   GSettingsSchemaKey key;
2207   GSettings *settings;
2208   GObject *object;
2209
2210   GSettingsBindGetMapping get_mapping;
2211   GSettingsBindSetMapping set_mapping;
2212   gpointer user_data;
2213   GDestroyNotify destroy;
2214
2215   guint writable_handler_id;
2216   guint property_handler_id;
2217   const GParamSpec *property;
2218   guint key_handler_id;
2219
2220   /* prevent recursion */
2221   gboolean running;
2222 } GSettingsBinding;
2223
2224 static void
2225 g_settings_binding_free (gpointer data)
2226 {
2227   GSettingsBinding *binding = data;
2228
2229   g_assert (!binding->running);
2230
2231   if (binding->writable_handler_id)
2232     g_signal_handler_disconnect (binding->settings,
2233                                  binding->writable_handler_id);
2234
2235   if (binding->key_handler_id)
2236     g_signal_handler_disconnect (binding->settings,
2237                                  binding->key_handler_id);
2238
2239   if (g_signal_handler_is_connected (binding->object,
2240                                      binding->property_handler_id))
2241   g_signal_handler_disconnect (binding->object,
2242                                binding->property_handler_id);
2243
2244   g_settings_schema_key_clear (&binding->key);
2245
2246   if (binding->destroy)
2247     binding->destroy (binding->user_data);
2248
2249   g_object_unref (binding->settings);
2250
2251   g_slice_free (GSettingsBinding, binding);
2252 }
2253
2254 static GQuark
2255 g_settings_binding_quark (const char *property)
2256 {
2257   GQuark quark;
2258   gchar *tmp;
2259
2260   tmp = g_strdup_printf ("gsettingsbinding-%s", property);
2261   quark = g_quark_from_string (tmp);
2262   g_free (tmp);
2263
2264   return quark;
2265 }
2266
2267 static void
2268 g_settings_binding_key_changed (GSettings   *settings,
2269                                 const gchar *key,
2270                                 gpointer     user_data)
2271 {
2272   GSettingsBinding *binding = user_data;
2273   GValue value = G_VALUE_INIT;
2274   GVariant *variant;
2275
2276   g_assert (settings == binding->settings);
2277   g_assert (key == binding->key.name);
2278
2279   if (binding->running)
2280     return;
2281
2282   binding->running = TRUE;
2283
2284   g_value_init (&value, binding->property->value_type);
2285
2286   variant = g_settings_read_from_backend (binding->settings, &binding->key);
2287   if (variant && !binding->get_mapping (&value, variant, binding->user_data))
2288     {
2289       /* silently ignore errors in the user's config database */
2290       g_variant_unref (variant);
2291       variant = NULL;
2292     }
2293
2294   if (variant == NULL)
2295     {
2296       variant = g_settings_schema_key_get_translated_default (&binding->key);
2297       if (variant &&
2298           !binding->get_mapping (&value, variant, binding->user_data))
2299         {
2300           /* flag translation errors with a warning */
2301           g_warning ("Translated default `%s' for key `%s' in schema `%s' "
2302                      "was rejected by the binding mapping function",
2303                      binding->key.unparsed, binding->key.name,
2304                      g_settings_schema_get_id (binding->key.schema));
2305           g_variant_unref (variant);
2306           variant = NULL;
2307         }
2308     }
2309
2310   if (variant == NULL)
2311     {
2312       variant = g_variant_ref (binding->key.default_value);
2313       if (!binding->get_mapping (&value, variant, binding->user_data))
2314         g_error ("The schema default value for key `%s' in schema `%s' "
2315                  "was rejected by the binding mapping function.",
2316                  binding->key.name, g_settings_schema_get_id (binding->key.schema));
2317     }
2318
2319   g_object_set_property (binding->object, binding->property->name, &value);
2320   g_variant_unref (variant);
2321   g_value_unset (&value);
2322
2323   binding->running = FALSE;
2324 }
2325
2326 static void
2327 g_settings_binding_property_changed (GObject          *object,
2328                                      const GParamSpec *pspec,
2329                                      gpointer          user_data)
2330 {
2331   GSettingsBinding *binding = user_data;
2332   GValue value = G_VALUE_INIT;
2333   GVariant *variant;
2334
2335   g_assert (object == binding->object);
2336   g_assert (pspec == binding->property);
2337
2338   if (binding->running)
2339     return;
2340
2341   binding->running = TRUE;
2342
2343   g_value_init (&value, pspec->value_type);
2344   g_object_get_property (object, pspec->name, &value);
2345   if ((variant = binding->set_mapping (&value, binding->key.type,
2346                                        binding->user_data)))
2347     {
2348       g_variant_take_ref (variant);
2349
2350       if (!g_settings_schema_key_type_check (&binding->key, variant))
2351         {
2352           g_critical ("binding mapping function for key `%s' returned "
2353                       "GVariant of type `%s' when type `%s' was requested",
2354                       binding->key.name, g_variant_get_type_string (variant),
2355                       g_variant_type_dup_string (binding->key.type));
2356           return;
2357         }
2358
2359       if (!g_settings_schema_key_range_check (&binding->key, variant))
2360         {
2361           g_critical ("GObject property `%s' on a `%s' object is out of "
2362                       "schema-specified range for key `%s' of `%s': %s",
2363                       binding->property->name, g_type_name (binding->property->owner_type),
2364                       binding->key.name, g_settings_schema_get_id (binding->key.schema),
2365                       g_variant_print (variant, TRUE));
2366           return;
2367         }
2368
2369       g_settings_write_to_backend (binding->settings, &binding->key, variant);
2370       g_variant_unref (variant);
2371     }
2372   g_value_unset (&value);
2373
2374   binding->running = FALSE;
2375 }
2376
2377 static gboolean
2378 g_settings_bind_invert_boolean_get_mapping (GValue   *value,
2379                                             GVariant *variant,
2380                                             gpointer  user_data)
2381 {
2382   g_value_set_boolean (value, !g_variant_get_boolean (variant));
2383   return TRUE;
2384 }
2385
2386 static GVariant *
2387 g_settings_bind_invert_boolean_set_mapping (const GValue       *value,
2388                                             const GVariantType *expected_type,
2389                                             gpointer            user_data)
2390 {
2391   return g_variant_new_boolean (!g_value_get_boolean (value));
2392 }
2393
2394 /**
2395  * g_settings_bind:
2396  * @settings: a #GSettings object
2397  * @key: the key to bind
2398  * @object: (type GObject.Object): a #GObject
2399  * @property: the name of the property to bind
2400  * @flags: flags for the binding
2401  *
2402  * Create a binding between the @key in the @settings object
2403  * and the property @property of @object.
2404  *
2405  * The binding uses the default GIO mapping functions to map
2406  * between the settings and property values. These functions
2407  * handle booleans, numeric types and string types in a
2408  * straightforward way. Use g_settings_bind_with_mapping() if
2409  * you need a custom mapping, or map between types that are not
2410  * supported by the default mapping functions.
2411  *
2412  * Unless the @flags include %G_SETTINGS_BIND_NO_SENSITIVITY, this
2413  * function also establishes a binding between the writability of
2414  * @key and the "sensitive" property of @object (if @object has
2415  * a boolean property by that name). See g_settings_bind_writable()
2416  * for more details about writable bindings.
2417  *
2418  * Note that the lifecycle of the binding is tied to the object,
2419  * and that you can have only one binding per object property.
2420  * If you bind the same property twice on the same object, the second
2421  * binding overrides the first one.
2422  *
2423  * Since: 2.26
2424  */
2425 void
2426 g_settings_bind (GSettings          *settings,
2427                  const gchar        *key,
2428                  gpointer            object,
2429                  const gchar        *property,
2430                  GSettingsBindFlags  flags)
2431 {
2432   GSettingsBindGetMapping get_mapping = NULL;
2433   GSettingsBindSetMapping set_mapping = NULL;
2434
2435   if (flags & G_SETTINGS_BIND_INVERT_BOOLEAN)
2436     {
2437       get_mapping = g_settings_bind_invert_boolean_get_mapping;
2438       set_mapping = g_settings_bind_invert_boolean_set_mapping;
2439
2440       /* can't pass this flag to g_settings_bind_with_mapping() */
2441       flags &= ~G_SETTINGS_BIND_INVERT_BOOLEAN;
2442     }
2443
2444   g_settings_bind_with_mapping (settings, key, object, property, flags,
2445                                 get_mapping, set_mapping, NULL, NULL);
2446 }
2447
2448 /**
2449  * g_settings_bind_with_mapping: (skip)
2450  * @settings: a #GSettings object
2451  * @key: the key to bind
2452  * @object: (type GObject.Object): a #GObject
2453  * @property: the name of the property to bind
2454  * @flags: flags for the binding
2455  * @get_mapping: a function that gets called to convert values
2456  *     from @settings to @object, or %NULL to use the default GIO mapping
2457  * @set_mapping: a function that gets called to convert values
2458  *     from @object to @settings, or %NULL to use the default GIO mapping
2459  * @user_data: data that gets passed to @get_mapping and @set_mapping
2460  * @destroy: #GDestroyNotify function for @user_data
2461  *
2462  * Create a binding between the @key in the @settings object
2463  * and the property @property of @object.
2464  *
2465  * The binding uses the provided mapping functions to map between
2466  * settings and property values.
2467  *
2468  * Note that the lifecycle of the binding is tied to the object,
2469  * and that you can have only one binding per object property.
2470  * If you bind the same property twice on the same object, the second
2471  * binding overrides the first one.
2472  *
2473  * Since: 2.26
2474  */
2475 void
2476 g_settings_bind_with_mapping (GSettings               *settings,
2477                               const gchar             *key,
2478                               gpointer                 object,
2479                               const gchar             *property,
2480                               GSettingsBindFlags       flags,
2481                               GSettingsBindGetMapping  get_mapping,
2482                               GSettingsBindSetMapping  set_mapping,
2483                               gpointer                 user_data,
2484                               GDestroyNotify           destroy)
2485 {
2486   GSettingsBinding *binding;
2487   GObjectClass *objectclass;
2488   gchar *detailed_signal;
2489   GQuark binding_quark;
2490
2491   g_return_if_fail (G_IS_SETTINGS (settings));
2492   g_return_if_fail (key != NULL);
2493   g_return_if_fail (G_IS_OBJECT (object));
2494   g_return_if_fail (property != NULL);
2495   g_return_if_fail (~flags & G_SETTINGS_BIND_INVERT_BOOLEAN);
2496
2497   objectclass = G_OBJECT_GET_CLASS (object);
2498
2499   binding = g_slice_new0 (GSettingsBinding);
2500   g_settings_schema_key_init (&binding->key, settings->priv->schema, key);
2501   binding->settings = g_object_ref (settings);
2502   binding->object = object;
2503   binding->property = g_object_class_find_property (objectclass, property);
2504   binding->user_data = user_data;
2505   binding->destroy = destroy;
2506   binding->get_mapping = get_mapping ? get_mapping : g_settings_get_mapping;
2507   binding->set_mapping = set_mapping ? set_mapping : g_settings_set_mapping;
2508
2509   if (!(flags & (G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET)))
2510     flags |= G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET;
2511
2512   if (binding->property == NULL)
2513     {
2514       g_critical ("g_settings_bind: no property '%s' on class '%s'",
2515                   property, G_OBJECT_TYPE_NAME (object));
2516       return;
2517     }
2518
2519   if ((flags & G_SETTINGS_BIND_GET) &&
2520       (binding->property->flags & G_PARAM_WRITABLE) == 0)
2521     {
2522       g_critical ("g_settings_bind: property '%s' on class '%s' is not "
2523                   "writable", property, G_OBJECT_TYPE_NAME (object));
2524       return;
2525     }
2526   if ((flags & G_SETTINGS_BIND_SET) &&
2527       (binding->property->flags & G_PARAM_READABLE) == 0)
2528     {
2529       g_critical ("g_settings_bind: property '%s' on class '%s' is not "
2530                   "readable", property, G_OBJECT_TYPE_NAME (object));
2531       return;
2532     }
2533
2534   if (get_mapping == g_settings_bind_invert_boolean_get_mapping)
2535     {
2536       /* g_settings_bind_invert_boolean_get_mapping() is a private
2537        * function, so if we are here it means that g_settings_bind() was
2538        * called with G_SETTINGS_BIND_INVERT_BOOLEAN.
2539        *
2540        * Ensure that both sides are boolean.
2541        */
2542
2543       if (binding->property->value_type != G_TYPE_BOOLEAN)
2544         {
2545           g_critical ("g_settings_bind: G_SETTINGS_BIND_INVERT_BOOLEAN "
2546                       "was specified, but property `%s' on type `%s' has "
2547                       "type `%s'", property, G_OBJECT_TYPE_NAME (object),
2548                       g_type_name ((binding->property->value_type)));
2549           return;
2550         }
2551
2552       if (!g_variant_type_equal (binding->key.type, G_VARIANT_TYPE_BOOLEAN))
2553         {
2554           g_critical ("g_settings_bind: G_SETTINGS_BIND_INVERT_BOOLEAN "
2555                       "was specified, but key `%s' on schema `%s' has "
2556                       "type `%s'", key, g_settings_schema_get_id (settings->priv->schema),
2557                       g_variant_type_dup_string (binding->key.type));
2558           return;
2559         }
2560
2561     }
2562
2563   else if (((get_mapping == NULL && (flags & G_SETTINGS_BIND_GET)) ||
2564             (set_mapping == NULL && (flags & G_SETTINGS_BIND_SET))) &&
2565            !g_settings_mapping_is_compatible (binding->property->value_type,
2566                                               binding->key.type))
2567     {
2568       g_critical ("g_settings_bind: property '%s' on class '%s' has type "
2569                   "'%s' which is not compatible with type '%s' of key '%s' "
2570                   "on schema '%s'", property, G_OBJECT_TYPE_NAME (object),
2571                   g_type_name (binding->property->value_type),
2572                   g_variant_type_dup_string (binding->key.type), key,
2573                   g_settings_schema_get_id (settings->priv->schema));
2574       return;
2575     }
2576
2577   if ((flags & G_SETTINGS_BIND_SET) &&
2578       (~flags & G_SETTINGS_BIND_NO_SENSITIVITY))
2579     {
2580       GParamSpec *sensitive;
2581
2582       sensitive = g_object_class_find_property (objectclass, "sensitive");
2583
2584       if (sensitive && sensitive->value_type == G_TYPE_BOOLEAN &&
2585           (sensitive->flags & G_PARAM_WRITABLE))
2586         g_settings_bind_writable (settings, binding->key.name, object, "sensitive", FALSE);
2587     }
2588
2589   if (flags & G_SETTINGS_BIND_SET)
2590     {
2591       detailed_signal = g_strdup_printf ("notify::%s", property);
2592       binding->property_handler_id =
2593         g_signal_connect (object, detailed_signal,
2594                           G_CALLBACK (g_settings_binding_property_changed),
2595                           binding);
2596       g_free (detailed_signal);
2597
2598       if (~flags & G_SETTINGS_BIND_GET)
2599         g_settings_binding_property_changed (object,
2600                                              binding->property,
2601                                              binding);
2602     }
2603
2604   if (flags & G_SETTINGS_BIND_GET)
2605     {
2606       if (~flags & G_SETTINGS_BIND_GET_NO_CHANGES)
2607         {
2608           detailed_signal = g_strdup_printf ("changed::%s", key);
2609           binding->key_handler_id =
2610             g_signal_connect (settings, detailed_signal,
2611                               G_CALLBACK (g_settings_binding_key_changed),
2612                               binding);
2613           g_free (detailed_signal);
2614         }
2615
2616       g_settings_binding_key_changed (settings, binding->key.name, binding);
2617     }
2618
2619   binding_quark = g_settings_binding_quark (property);
2620   g_object_set_qdata_full (object, binding_quark,
2621                            binding, g_settings_binding_free);
2622 }
2623
2624 /* Writability binding {{{1 */
2625 typedef struct
2626 {
2627   GSettings *settings;
2628   gpointer object;
2629   const gchar *key;
2630   const gchar *property;
2631   gboolean inverted;
2632   gulong handler_id;
2633 } GSettingsWritableBinding;
2634
2635 static void
2636 g_settings_writable_binding_free (gpointer data)
2637 {
2638   GSettingsWritableBinding *binding = data;
2639
2640   g_signal_handler_disconnect (binding->settings, binding->handler_id);
2641   g_object_unref (binding->settings);
2642   g_slice_free (GSettingsWritableBinding, binding);
2643 }
2644
2645 static void
2646 g_settings_binding_writable_changed (GSettings   *settings,
2647                                      const gchar *key,
2648                                      gpointer     user_data)
2649 {
2650   GSettingsWritableBinding *binding = user_data;
2651   gboolean writable;
2652
2653   g_assert (settings == binding->settings);
2654   g_assert (key == binding->key);
2655
2656   writable = g_settings_is_writable (settings, key);
2657
2658   if (binding->inverted)
2659     writable = !writable;
2660
2661   g_object_set (binding->object, binding->property, writable, NULL);
2662 }
2663
2664 /**
2665  * g_settings_bind_writable:
2666  * @settings: a #GSettings object
2667  * @key: the key to bind
2668  * @object: (type GObject.Object):a #GObject
2669  * @property: the name of a boolean property to bind
2670  * @inverted: whether to 'invert' the value
2671  *
2672  * Create a binding between the writability of @key in the
2673  * @settings object and the property @property of @object.
2674  * The property must be boolean; "sensitive" or "visible"
2675  * properties of widgets are the most likely candidates.
2676  *
2677  * Writable bindings are always uni-directional; changes of the
2678  * writability of the setting will be propagated to the object
2679  * property, not the other way.
2680  *
2681  * When the @inverted argument is %TRUE, the binding inverts the
2682  * value as it passes from the setting to the object, i.e. @property
2683  * will be set to %TRUE if the key is <emphasis>not</emphasis>
2684  * writable.
2685  *
2686  * Note that the lifecycle of the binding is tied to the object,
2687  * and that you can have only one binding per object property.
2688  * If you bind the same property twice on the same object, the second
2689  * binding overrides the first one.
2690  *
2691  * Since: 2.26
2692  */
2693 void
2694 g_settings_bind_writable (GSettings   *settings,
2695                           const gchar *key,
2696                           gpointer     object,
2697                           const gchar *property,
2698                           gboolean     inverted)
2699 {
2700   GSettingsWritableBinding *binding;
2701   gchar *detailed_signal;
2702   GParamSpec *pspec;
2703
2704   g_return_if_fail (G_IS_SETTINGS (settings));
2705
2706   pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object), property);
2707   if (pspec == NULL)
2708     {
2709       g_critical ("g_settings_bind_writable: no property '%s' on class '%s'",
2710                   property, G_OBJECT_TYPE_NAME (object));
2711       return;
2712     }
2713   if ((pspec->flags & G_PARAM_WRITABLE) == 0)
2714     {
2715       g_critical ("g_settings_bind_writable: property '%s' on class '%s' is not writable",
2716                   property, G_OBJECT_TYPE_NAME (object));
2717       return;
2718     }
2719
2720   binding = g_slice_new (GSettingsWritableBinding);
2721   binding->settings = g_object_ref (settings);
2722   binding->object = object;
2723   binding->key = g_intern_string (key);
2724   binding->property = g_intern_string (property);
2725   binding->inverted = inverted;
2726
2727   detailed_signal = g_strdup_printf ("writable-changed::%s", key);
2728   binding->handler_id =
2729     g_signal_connect (settings, detailed_signal,
2730                       G_CALLBACK (g_settings_binding_writable_changed),
2731                       binding);
2732   g_free (detailed_signal);
2733
2734   g_object_set_qdata_full (object, g_settings_binding_quark (property),
2735                            binding, g_settings_writable_binding_free);
2736
2737   g_settings_binding_writable_changed (settings, binding->key, binding);
2738 }
2739
2740 /**
2741  * g_settings_unbind:
2742  * @object: the object
2743  * @property: the property whose binding is removed
2744  *
2745  * Removes an existing binding for @property on @object.
2746  *
2747  * Note that bindings are automatically removed when the
2748  * object is finalized, so it is rarely necessary to call this
2749  * function.
2750  *
2751  * Since: 2.26
2752  */
2753 void
2754 g_settings_unbind (gpointer     object,
2755                    const gchar *property)
2756 {
2757   GQuark binding_quark;
2758
2759   binding_quark = g_settings_binding_quark (property);
2760   g_object_set_qdata (object, binding_quark, NULL);
2761 }
2762
2763 /* Epilogue {{{1 */
2764
2765 /* vim:set foldmethod=marker: */