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