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