2 * Copyright © 2009, 2010 Codethink Limited
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.
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.
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.
19 * Author: Ryan Lortie <desrt@desrt.ca>
28 #include "gsettings.h"
30 #include "gdelayedsettingsbackend.h"
31 #include "gsettingsbackendinternal.h"
32 #include "gsettings-mapping.h"
33 #include "gsettingsschema-internal.h"
40 * @short_description: High-level API for application settings
42 * The #GSettings class provides a convenient API for storing and retrieving
43 * application settings.
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.
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.
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.
72 * Paths must start with and end with a forward slash character ('/')
73 * and must not contain two sequential slash characters. Paths should
74 * be chosen based on a domain name associated with the program or
75 * library to which the settings belong. Examples of paths are
76 * "/org/gtk/settings/file-chooser/" and "/ca/desrt/dconf-editor/".
77 * Paths should not start with "/apps/", "/desktop/" or "/system/" as
78 * they often did in GConf.
80 * Unlike other configuration systems (like GConf), GSettings does not
81 * restrict keys to basic types like strings and numbers. GSettings stores
82 * values as #GVariant, and allows any #GVariantType for keys. Key names
83 * are restricted to lowercase characters, numbers and '-'. Furthermore,
84 * the names must begin with a lowercase character, must not end
85 * with a '-', and must not contain consecutive dashes.
87 * Similar to GConf, the default values in GSettings schemas can be
88 * localized, but the localized values are stored in gettext catalogs
89 * and looked up with the domain that is specified in the
90 * <tag class="attribute">gettext-domain</tag> attribute of the
91 * <tag class="starttag">schemalist</tag> or <tag class="starttag">schema</tag>
92 * elements and the category that is specified in the l10n attribute of the
93 * <tag class="starttag">key</tag> element.
95 * GSettings uses schemas in a compact binary form that is created
96 * by the <link linkend="glib-compile-schemas">glib-compile-schemas</link>
97 * utility. The input is a schema description in an XML format that can be
98 * described by the following DTD:
99 * |[<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>]|
101 * glib-compile-schemas expects schema files to have the extension <filename>.gschema.xml</filename>
103 * At runtime, schemas are identified by their id (as specified
104 * in the <tag class="attribute">id</tag> attribute of the
105 * <tag class="starttag">schema</tag> element). The
106 * convention for schema ids is to use a dotted name, similar in
107 * style to a D-Bus bus name, e.g. "org.gnome.SessionManager". In particular,
108 * if the settings are for a specific service that owns a D-Bus bus name,
109 * the D-Bus bus name and schema id should match. For schemas which deal
110 * with settings not associated with one named application, the id should
111 * not use StudlyCaps, e.g. "org.gnome.font-rendering".
113 * In addition to #GVariant types, keys can have types that have enumerated
114 * types. These can be described by a <tag class="starttag">choice</tag>,
115 * <tag class="starttag">enum</tag> or <tag class="starttag">flags</tag> element, see
116 * <xref linkend="schema-enumerated"/>. The underlying type of
117 * such a key is string, but you can use g_settings_get_enum(),
118 * g_settings_set_enum(), g_settings_get_flags(), g_settings_set_flags()
119 * access the numeric values corresponding to the string value of enum
122 * <example id="schema-default-values"><title>Default values</title>
123 * <programlisting><![CDATA[
125 * <schema id="org.gtk.Test" path="/org/gtk/Test/" gettext-domain="test">
127 * <key name="greeting" type="s">
128 * <default l10n="messages">"Hello, earthlings"</default>
129 * <summary>A greeting</summary>
131 * Greeting of the invading martians
135 * <key name="box" type="(ii)">
136 * <default>(20,30)</default>
141 * ]]></programlisting></example>
143 * <example id="schema-enumerated"><title>Ranges, choices and enumerated types</title>
144 * <programlisting><![CDATA[
147 * <enum id="org.gtk.Test.myenum">
148 * <value nick="first" value="1"/>
149 * <value nick="second" value="2"/>
152 * <flags id="org.gtk.Test.myflags">
153 * <value nick="flag1" value="1"/>
154 * <value nick="flag2" value="2"/>
155 * <value nick="flag3" value="4"/>
158 * <schema id="org.gtk.Test">
160 * <key name="key-with-range" type="i">
161 * <range min="1" max="100"/>
162 * <default>10</default>
165 * <key name="key-with-choices" type="s">
167 * <choice value='Elisabeth'/>
168 * <choice value='Annabeth'/>
169 * <choice value='Joe'/>
172 * <alias value='Anna' target='Annabeth'/>
173 * <alias value='Beth' target='Elisabeth'/>
175 * <default>'Joe'</default>
178 * <key name='enumerated-key' enum='org.gtk.Test.myenum'>
179 * <default>'first'</default>
182 * <key name='flags-key' flags='org.gtk.Test.myflags'>
183 * <default>["flag1",flag2"]</default>
187 * ]]></programlisting></example>
190 * <title>Vendor overrides</title>
192 * Default values are defined in the schemas that get installed by
193 * an application. Sometimes, it is necessary for a vendor or distributor
194 * to adjust these defaults. Since patching the XML source for the schema
195 * is inconvenient and error-prone,
196 * <link linkend="glib-compile-schemas">glib-compile-schemas</link> reads
197 * so-called 'vendor override' files. These are keyfiles in the same
198 * directory as the XML schema sources which can override default values.
199 * The schema id serves as the group name in the key file, and the values
200 * are expected in serialized GVariant form, as in the following example:
201 * <informalexample><programlisting>
205 * </programlisting></informalexample>
208 * glib-compile-schemas expects schema files to have the extension
209 * <filename>.gschema.override</filename>
214 * <title>Binding</title>
216 * A very convenient feature of GSettings lets you bind #GObject properties
217 * directly to settings, using g_settings_bind(). Once a GObject property
218 * has been bound to a setting, changes on either side are automatically
219 * propagated to the other side. GSettings handles details like
220 * mapping between GObject and GVariant types, and preventing infinite
224 * This makes it very easy to hook up a preferences dialog to the
225 * underlying settings. To make this even more convenient, GSettings
226 * looks for a boolean property with the name "sensitivity" and
227 * automatically binds it to the writability of the bound setting.
228 * If this 'magic' gets in the way, it can be suppressed with the
229 * #G_SETTINGS_BIND_NO_SENSITIVITY flag.
234 struct _GSettingsPrivate
236 /* where the signals go... */
237 GMainContext *main_context;
239 GSettingsBackend *backend;
240 GSettingsSchema *schema;
243 GDelayedSettingsBackend *delayed;
259 SIGNAL_WRITABLE_CHANGE_EVENT,
260 SIGNAL_WRITABLE_CHANGED,
266 static guint g_settings_signals[N_SIGNALS];
268 G_DEFINE_TYPE_WITH_PRIVATE (GSettings, g_settings, G_TYPE_OBJECT)
272 g_settings_real_change_event (GSettings *settings,
279 keys = g_settings_schema_list (settings->priv->schema, &n_keys);
281 for (i = 0; i < n_keys; i++)
283 const gchar *key = g_quark_to_string (keys[i]);
285 if (g_str_has_suffix (key, "/"))
288 g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGED], keys[i], key);
295 g_settings_real_writable_change_event (GSettings *settings,
298 const GQuark *keys = &key;
303 keys = g_settings_schema_list (settings->priv->schema, &n_keys);
305 for (i = 0; i < n_keys; i++)
307 const gchar *key = g_quark_to_string (keys[i]);
309 if (g_str_has_suffix (key, "/"))
312 g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGED], keys[i], key);
319 settings_backend_changed (GObject *target,
320 GSettingsBackend *backend,
324 GSettings *settings = G_SETTINGS (target);
325 gboolean ignore_this;
328 /* We used to assert here:
330 * settings->priv->backend == backend
332 * but it could be the case that a notification is queued for delivery
333 * while someone calls g_settings_delay() (which changes the backend).
335 * Since the delay backend would just pass that straight through
336 * anyway, it doesn't make sense to try to detect this case.
337 * Therefore, we just accept it.
340 for (i = 0; key[i] == settings->priv->path[i]; i++);
342 if (settings->priv->path[i] == '\0' &&
343 g_settings_schema_has_key (settings->priv->schema, key + i))
347 quark = g_quark_from_string (key + i);
348 g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
349 0, &quark, 1, &ignore_this);
354 settings_backend_path_changed (GObject *target,
355 GSettingsBackend *backend,
359 GSettings *settings = G_SETTINGS (target);
360 gboolean ignore_this;
362 if (g_str_has_prefix (settings->priv->path, path))
363 g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
364 0, NULL, 0, &ignore_this);
368 settings_backend_keys_changed (GObject *target,
369 GSettingsBackend *backend,
371 const gchar * const *items,
374 GSettings *settings = G_SETTINGS (target);
375 gboolean ignore_this;
378 for (i = 0; settings->priv->path[i] &&
379 settings->priv->path[i] == path[i]; i++);
386 for (j = 0; items[j]; j++)
388 const gchar *item = items[j];
391 for (k = 0; item[k] == settings->priv->path[i + k]; k++);
393 if (settings->priv->path[i + k] == '\0' &&
394 g_settings_schema_has_key (settings->priv->schema, item + k))
395 quarks[l++] = g_quark_from_string (item + k);
397 /* "256 quarks ought to be enough for anybody!"
398 * If this bites you, I'm sorry. Please file a bug.
404 g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
405 0, quarks, l, &ignore_this);
410 settings_backend_writable_changed (GObject *target,
411 GSettingsBackend *backend,
414 GSettings *settings = G_SETTINGS (target);
415 gboolean ignore_this;
418 for (i = 0; key[i] == settings->priv->path[i]; i++);
420 if (settings->priv->path[i] == '\0' &&
421 g_settings_schema_has_key (settings->priv->schema, key + i))
422 g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT],
423 0, g_quark_from_string (key + i), &ignore_this);
427 settings_backend_path_writable_changed (GObject *target,
428 GSettingsBackend *backend,
431 GSettings *settings = G_SETTINGS (target);
432 gboolean ignore_this;
434 if (g_str_has_prefix (settings->priv->path, path))
435 g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT],
436 0, (GQuark) 0, &ignore_this);
439 /* Properties, Construction, Destruction {{{1 */
441 g_settings_set_property (GObject *object,
446 GSettings *settings = G_SETTINGS (object);
452 GSettingsSchema *schema;
454 schema = g_value_dup_boxed (value);
456 /* we receive a set_property() call for "settings-schema" even
457 * if it was not specified (ie: with NULL value). ->schema
458 * could already be set at this point (ie: via "schema-id").
459 * check for NULL to avoid clobbering the existing value.
463 g_assert (settings->priv->schema == NULL);
464 settings->priv->schema = schema;
471 const gchar *schema_id;
473 schema_id = g_value_get_string (value);
475 /* we receive a set_property() call for both "schema" and
476 * "schema-id", even if they are not set. Hopefully only one of
479 if (schema_id != NULL)
481 GSettingsSchemaSource *default_source;
483 g_assert (settings->priv->schema == NULL);
484 default_source = g_settings_schema_source_get_default ();
486 if (default_source == NULL)
487 g_error ("No GSettings schemas are installed on the system");
489 settings->priv->schema = g_settings_schema_source_lookup (default_source, schema_id, TRUE);
491 if (settings->priv->schema == NULL)
492 g_error ("Settings schema '%s' is not installed\n", schema_id);
498 settings->priv->path = g_value_dup_string (value);
502 settings->priv->backend = g_value_dup_object (value);
506 g_assert_not_reached ();
511 g_settings_get_property (GObject *object,
516 GSettings *settings = G_SETTINGS (object);
521 g_value_set_boxed (value, settings->priv->schema);
525 g_value_set_string (value, g_settings_schema_get_id (settings->priv->schema));
529 g_value_set_object (value, settings->priv->backend);
533 g_value_set_string (value, settings->priv->path);
536 case PROP_HAS_UNAPPLIED:
537 g_value_set_boolean (value, g_settings_get_has_unapplied (settings));
540 case PROP_DELAY_APPLY:
541 g_value_set_boolean (value, settings->priv->delayed != NULL);
545 g_assert_not_reached ();
549 static const GSettingsListenerVTable listener_vtable = {
550 settings_backend_changed,
551 settings_backend_path_changed,
552 settings_backend_keys_changed,
553 settings_backend_writable_changed,
554 settings_backend_path_writable_changed
558 g_settings_constructed (GObject *object)
560 GSettings *settings = G_SETTINGS (object);
561 const gchar *schema_path;
563 schema_path = g_settings_schema_get_path (settings->priv->schema);
565 if (settings->priv->path && schema_path && strcmp (settings->priv->path, schema_path) != 0)
566 g_error ("settings object created with schema '%s' and path '%s', but path '%s' is specified by schema",
567 g_settings_schema_get_id (settings->priv->schema), settings->priv->path, schema_path);
569 if (settings->priv->path == NULL)
571 if (schema_path == NULL)
572 g_error ("attempting to create schema '%s' without a path",
573 g_settings_schema_get_id (settings->priv->schema));
575 settings->priv->path = g_strdup (schema_path);
578 if (settings->priv->backend == NULL)
579 settings->priv->backend = g_settings_backend_get_default ();
581 g_settings_backend_watch (settings->priv->backend,
582 &listener_vtable, G_OBJECT (settings),
583 settings->priv->main_context);
584 g_settings_backend_subscribe (settings->priv->backend,
585 settings->priv->path);
589 g_settings_finalize (GObject *object)
591 GSettings *settings = G_SETTINGS (object);
593 g_settings_backend_unsubscribe (settings->priv->backend,
594 settings->priv->path);
595 g_main_context_unref (settings->priv->main_context);
596 g_object_unref (settings->priv->backend);
597 g_settings_schema_unref (settings->priv->schema);
598 g_free (settings->priv->path);
600 G_OBJECT_CLASS (g_settings_parent_class)->finalize (object);
604 g_settings_init (GSettings *settings)
606 settings->priv = g_settings_get_instance_private (settings);
607 settings->priv->main_context = g_main_context_ref_thread_default ();
611 g_settings_class_init (GSettingsClass *class)
613 GObjectClass *object_class = G_OBJECT_CLASS (class);
615 class->writable_change_event = g_settings_real_writable_change_event;
616 class->change_event = g_settings_real_change_event;
618 object_class->set_property = g_settings_set_property;
619 object_class->get_property = g_settings_get_property;
620 object_class->constructed = g_settings_constructed;
621 object_class->finalize = g_settings_finalize;
624 * GSettings::changed:
625 * @settings: the object on which the signal was emitted
626 * @key: the name of the key that changed
628 * The "changed" signal is emitted when a key has potentially changed.
629 * You should call one of the g_settings_get() calls to check the new
632 * This signal supports detailed connections. You can connect to the
633 * detailed signal "changed::x" in order to only receive callbacks
634 * when key "x" changes.
636 g_settings_signals[SIGNAL_CHANGED] =
637 g_signal_new ("changed", G_TYPE_SETTINGS,
638 G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
639 G_STRUCT_OFFSET (GSettingsClass, changed),
640 NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE,
641 1, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
644 * GSettings::change-event:
645 * @settings: the object on which the signal was emitted
646 * @keys: (array length=n_keys) (element-type GQuark) (allow-none):
647 * an array of #GQuark<!-- -->s for the changed keys, or %NULL
648 * @n_keys: the length of the @keys array, or 0
650 * The "change-event" signal is emitted once per change event that
651 * affects this settings object. You should connect to this signal
652 * only if you are interested in viewing groups of changes before they
653 * are split out into multiple emissions of the "changed" signal.
654 * For most use cases it is more appropriate to use the "changed" signal.
656 * In the event that the change event applies to one or more specified
657 * keys, @keys will be an array of #GQuark of length @n_keys. In the
658 * event that the change event applies to the #GSettings object as a
659 * whole (ie: potentially every key has been changed) then @keys will
660 * be %NULL and @n_keys will be 0.
662 * The default handler for this signal invokes the "changed" signal
663 * for each affected key. If any other connected handler returns
664 * %TRUE then this default functionality will be suppressed.
666 * Returns: %TRUE to stop other handlers from being invoked for the
667 * event. FALSE to propagate the event further.
669 g_settings_signals[SIGNAL_CHANGE_EVENT] =
670 g_signal_new ("change-event", G_TYPE_SETTINGS,
672 G_STRUCT_OFFSET (GSettingsClass, change_event),
673 g_signal_accumulator_true_handled, NULL,
675 G_TYPE_BOOLEAN, 2, G_TYPE_POINTER, G_TYPE_INT);
678 * GSettings::writable-changed:
679 * @settings: the object on which the signal was emitted
682 * The "writable-changed" signal is emitted when the writability of a
683 * key has potentially changed. You should call
684 * g_settings_is_writable() in order to determine the new status.
686 * This signal supports detailed connections. You can connect to the
687 * detailed signal "writable-changed::x" in order to only receive
688 * callbacks when the writability of "x" changes.
690 g_settings_signals[SIGNAL_WRITABLE_CHANGED] =
691 g_signal_new ("writable-changed", G_TYPE_SETTINGS,
692 G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
693 G_STRUCT_OFFSET (GSettingsClass, writable_changed),
694 NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE,
695 1, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
698 * GSettings::writable-change-event:
699 * @settings: the object on which the signal was emitted
700 * @key: the quark of the key, or 0
702 * The "writable-change-event" signal is emitted once per writability
703 * change event that affects this settings object. You should connect
704 * to this signal if you are interested in viewing groups of changes
705 * before they are split out into multiple emissions of the
706 * "writable-changed" signal. For most use cases it is more
707 * appropriate to use the "writable-changed" signal.
709 * In the event that the writability change applies only to a single
710 * key, @key will be set to the #GQuark for that key. In the event
711 * that the writability change affects the entire settings object,
714 * The default handler for this signal invokes the "writable-changed"
715 * and "changed" signals for each affected key. This is done because
716 * changes in writability might also imply changes in value (if for
717 * example, a new mandatory setting is introduced). If any other
718 * connected handler returns %TRUE then this default functionality
719 * will be suppressed.
721 * Returns: %TRUE to stop other handlers from being invoked for the
722 * event. FALSE to propagate the event further.
724 g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT] =
725 g_signal_new ("writable-change-event", G_TYPE_SETTINGS,
727 G_STRUCT_OFFSET (GSettingsClass, writable_change_event),
728 g_signal_accumulator_true_handled, NULL,
729 NULL, G_TYPE_BOOLEAN, 1, G_TYPE_UINT);
734 * The name of the context that the settings are stored in.
736 g_object_class_install_property (object_class, PROP_BACKEND,
737 g_param_spec_object ("backend",
738 P_("GSettingsBackend"),
739 P_("The GSettingsBackend for this settings object"),
740 G_TYPE_SETTINGS_BACKEND, G_PARAM_CONSTRUCT_ONLY |
741 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
744 * GSettings:settings-schema:
746 * The #GSettingsSchema describing the types of keys for this
749 * Ideally, this property would be called 'schema'. #GSettingsSchema
750 * has only existed since version 2.32, however, and before then the
751 * 'schema' property was used to refer to the ID of the schema rather
752 * than the schema itself. Take care.
754 g_object_class_install_property (object_class, PROP_SCHEMA,
755 g_param_spec_boxed ("settings-schema",
757 P_("The GSettingsSchema for this settings object"),
758 G_TYPE_SETTINGS_SCHEMA,
759 G_PARAM_CONSTRUCT_ONLY |
760 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
765 * The name of the schema that describes the types of keys
766 * for this #GSettings object.
768 * The type of this property is *not* #GSettingsSchema.
769 * #GSettingsSchema has only existed since version 2.32 and
770 * unfortunately this name was used in previous versions to refer to
771 * the schema ID rather than the schema itself. Take care to use the
772 * 'settings-schema' property if you wish to pass in a
775 * Deprecated:2.32:Use the 'schema-id' property instead. In a future
776 * version, this property may instead refer to a #GSettingsSchema.
778 g_object_class_install_property (object_class, PROP_SCHEMA_ID,
779 g_param_spec_string ("schema",
781 P_("The name of the schema for this settings object"),
783 G_PARAM_CONSTRUCT_ONLY |
784 G_PARAM_DEPRECATED | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
787 * GSettings:schema-id:
789 * The name of the schema that describes the types of keys
790 * for this #GSettings object.
792 g_object_class_install_property (object_class, PROP_SCHEMA_ID,
793 g_param_spec_string ("schema-id",
795 P_("The name of the schema for this settings object"),
797 G_PARAM_CONSTRUCT_ONLY |
798 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
803 * The path within the backend where the settings are stored.
805 g_object_class_install_property (object_class, PROP_PATH,
806 g_param_spec_string ("path",
808 P_("The path within the backend where the settings are"),
810 G_PARAM_CONSTRUCT_ONLY |
811 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
814 * GSettings:has-unapplied:
816 * If this property is %TRUE, the #GSettings object has outstanding
817 * changes that will be applied when g_settings_apply() is called.
819 g_object_class_install_property (object_class, PROP_HAS_UNAPPLIED,
820 g_param_spec_boolean ("has-unapplied",
821 P_("Has unapplied changes"),
822 P_("TRUE if there are outstanding changes to apply()"),
824 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
827 * GSettings:delay-apply:
829 * Whether the #GSettings object is in 'delay-apply' mode. See
830 * g_settings_delay() for details.
834 g_object_class_install_property (object_class, PROP_DELAY_APPLY,
835 g_param_spec_boolean ("delay-apply",
836 P_("Delay-apply mode"),
837 P_("Whether this settings object is in 'delay-apply' mode"),
839 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
842 /* Construction (new, new_with_path, etc.) {{{1 */
845 * @schema_id: the id of the schema
847 * Creates a new #GSettings object with the schema specified by
850 * Signals on the newly created #GSettings object will be dispatched
851 * via the thread-default #GMainContext in effect at the time of the
852 * call to g_settings_new(). The new #GSettings will hold a reference
853 * on the context. See g_main_context_push_thread_default().
855 * Returns: a new #GSettings object
860 g_settings_new (const gchar *schema_id)
862 g_return_val_if_fail (schema_id != NULL, NULL);
864 return g_object_new (G_TYPE_SETTINGS,
865 "schema-id", schema_id,
870 path_is_valid (const gchar *path)
878 if (!g_str_has_suffix (path, "/"))
881 return strstr (path, "//") == NULL;
885 * g_settings_new_with_path:
886 * @schema_id: the id of the schema
887 * @path: the path to use
889 * Creates a new #GSettings object with the relocatable schema specified
890 * by @schema_id and a given path.
892 * You only need to do this if you want to directly create a settings
893 * object with a schema that doesn't have a specified path of its own.
896 * It is a programmer error to call this function for a schema that
897 * has an explicitly specified path.
899 * It is a programmer error if @path is not a valid path. A valid path
900 * begins and ends with '/' and does not contain two consecutive '/'
903 * Returns: a new #GSettings object
908 g_settings_new_with_path (const gchar *schema_id,
911 g_return_val_if_fail (schema_id != NULL, NULL);
912 g_return_val_if_fail (path_is_valid (path), NULL);
914 return g_object_new (G_TYPE_SETTINGS,
915 "schema-id", schema_id,
921 * g_settings_new_with_backend:
922 * @schema_id: the id of the schema
923 * @backend: the #GSettingsBackend to use
925 * Creates a new #GSettings object with the schema specified by
926 * @schema_id and a given #GSettingsBackend.
928 * Creating a #GSettings object with a different backend allows accessing
929 * settings from a database other than the usual one. For example, it may make
930 * sense to pass a backend corresponding to the "defaults" settings database on
931 * the system to get a settings object that modifies the system default
932 * settings instead of the settings for this user.
934 * Returns: a new #GSettings object
939 g_settings_new_with_backend (const gchar *schema_id,
940 GSettingsBackend *backend)
942 g_return_val_if_fail (schema_id != NULL, NULL);
943 g_return_val_if_fail (G_IS_SETTINGS_BACKEND (backend), NULL);
945 return g_object_new (G_TYPE_SETTINGS,
946 "schema-id", schema_id,
952 * g_settings_new_with_backend_and_path:
953 * @schema_id: the id of the schema
954 * @backend: the #GSettingsBackend to use
955 * @path: the path to use
957 * Creates a new #GSettings object with the schema specified by
958 * @schema_id and a given #GSettingsBackend and path.
960 * This is a mix of g_settings_new_with_backend() and
961 * g_settings_new_with_path().
963 * Returns: a new #GSettings object
968 g_settings_new_with_backend_and_path (const gchar *schema_id,
969 GSettingsBackend *backend,
972 g_return_val_if_fail (schema_id != NULL, NULL);
973 g_return_val_if_fail (G_IS_SETTINGS_BACKEND (backend), NULL);
974 g_return_val_if_fail (path_is_valid (path), NULL);
976 return g_object_new (G_TYPE_SETTINGS,
977 "schema-id", schema_id,
984 * g_settings_new_full:
985 * @schema: a #GSettingsSchema
986 * @backend: (allow-none): a #GSettingsBackend
987 * @path: (allow-none): the path to use
989 * Creates a new #GSettings object with a given schema, backend and
992 * It should be extremely rare that you ever want to use this function.
993 * It is made available for advanced use-cases (such as plugin systems
994 * that want to provide access to schemas loaded from custom locations,
997 * At the most basic level, a #GSettings object is a pure composition of
998 * 4 things: a #GSettingsSchema, a #GSettingsBackend, a path within that
999 * backend, and a #GMainContext to which signals are dispatched.
1001 * This constructor therefore gives you full control over constructing
1002 * #GSettings instances. The first 4 parameters are given directly as
1003 * @schema, @backend and @path, and the main context is taken from the
1004 * thread-default (as per g_settings_new()).
1006 * If @backend is %NULL then the default backend is used.
1008 * If @path is %NULL then the path from the schema is used. It is an
1009 * error f @path is %NULL and the schema has no path of its own or if
1010 * @path is non-%NULL and not equal to the path that the schema does
1013 * Returns: a new #GSettings object
1018 g_settings_new_full (GSettingsSchema *schema,
1019 GSettingsBackend *backend,
1022 g_return_val_if_fail (schema != NULL, NULL);
1023 g_return_val_if_fail (backend == NULL || G_IS_SETTINGS_BACKEND (backend), NULL);
1024 g_return_val_if_fail (path == NULL || path_is_valid (path), NULL);
1026 return g_object_new (G_TYPE_SETTINGS,
1027 "settings-schema", schema,
1033 /* Internal read/write utilities {{{1 */
1035 g_settings_write_to_backend (GSettings *settings,
1036 GSettingsSchemaKey *key,
1042 path = g_strconcat (settings->priv->path, key->name, NULL);
1043 success = g_settings_backend_write (settings->priv->backend, path, value, NULL);
1050 g_settings_read_from_backend (GSettings *settings,
1051 GSettingsSchemaKey *key,
1052 gboolean user_value_only,
1053 gboolean default_value)
1059 path = g_strconcat (settings->priv->path, key->name, NULL);
1060 if (user_value_only)
1061 value = g_settings_backend_read_user_value (settings->priv->backend, path, key->type);
1063 value = g_settings_backend_read (settings->priv->backend, path, key->type, default_value);
1068 fixup = g_settings_schema_key_range_fixup (key, value);
1069 g_variant_unref (value);
1077 /* Public Get/Set API {{{1 (get, get_value, set, set_value, get_mapped) */
1079 * g_settings_get_value:
1080 * @settings: a #GSettings object
1081 * @key: the key to get the value for
1083 * Gets the value that is stored in @settings for @key.
1085 * It is a programmer error to give a @key that isn't contained in the
1086 * schema for @settings.
1088 * Returns: a new #GVariant
1093 g_settings_get_value (GSettings *settings,
1096 GSettingsSchemaKey skey;
1099 g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1100 g_return_val_if_fail (key != NULL, NULL);
1102 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1103 value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE);
1106 value = g_settings_schema_key_get_translated_default (&skey);
1109 value = g_variant_ref (skey.default_value);
1111 g_settings_schema_key_clear (&skey);
1117 * g_settings_get_user_value:
1118 * @settings: a #GSettings object
1119 * @key: the key to get the user value for
1121 * Checks the "user value" of a key, if there is one.
1123 * The user value of a key is the last value that was set by the user.
1125 * After calling g_settings_reset() this function should always return
1126 * %NULL (assuming something is not wrong with the system
1129 * It is possible that g_settings_get_value() will return a different
1130 * value than this function. This can happen in the case that the user
1131 * set a value for a key that was subsequently locked down by the system
1132 * administrator -- this function will return the user's old value.
1134 * This function may be useful for adding a "reset" option to a UI or
1135 * for providing indication that a particular value has been changed.
1137 * It is a programmer error to give a @key that isn't contained in the
1138 * schema for @settings.
1140 * Returns: (allow none) (transfer full): the user's value, if set
1145 g_settings_get_user_value (GSettings *settings,
1148 GSettingsSchemaKey skey;
1151 g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1152 g_return_val_if_fail (key != NULL, NULL);
1154 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1155 value = g_settings_read_from_backend (settings, &skey, TRUE, FALSE);
1156 g_settings_schema_key_clear (&skey);
1162 * g_settings_get_default_value:
1163 * @settings: a #GSettings object
1164 * @key: the key to get the default value for
1166 * Gets the "default value" of a key.
1168 * This is the value that would be read if g_settings_reset() were to be
1169 * called on the key.
1171 * Note that this may be a different value than returned by
1172 * g_settings_schema_key_get_default_value() if the system administrator
1173 * has provided a default value.
1175 * Comparing the return values of g_settings_get_default_value() and
1176 * g_settings_get_value() is not sufficient for determining if a value
1177 * has been set because the user may have explicitly set the value to
1178 * something that happens to be equal to the default. The difference
1179 * here is that if the default changes in the future, the user's key
1180 * will still be set.
1182 * This function may be useful for adding an indication to a UI of what
1183 * the default value was before the user set it.
1185 * It is a programmer error to give a @key that isn't contained in the
1186 * schema for @settings.
1188 * Returns: (allow none) (transfer full): the default value
1193 g_settings_get_default_value (GSettings *settings,
1196 GSettingsSchemaKey skey;
1199 g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1200 g_return_val_if_fail (key != NULL, NULL);
1202 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1203 value = g_settings_read_from_backend (settings, &skey, FALSE, TRUE);
1206 value = g_settings_schema_key_get_translated_default (&skey);
1209 value = g_variant_ref (skey.default_value);
1211 g_settings_schema_key_clear (&skey);
1217 * g_settings_get_enum:
1218 * @settings: a #GSettings object
1219 * @key: the key to get the value for
1221 * Gets the value that is stored in @settings for @key and converts it
1222 * to the enum value that it represents.
1224 * In order to use this function the type of the value must be a string
1225 * and it must be marked in the schema file as an enumerated type.
1227 * It is a programmer error to give a @key that isn't contained in the
1228 * schema for @settings or is not marked as an enumerated type.
1230 * If the value stored in the configuration database is not a valid
1231 * value for the enumerated type then this function will return the
1234 * Returns: the enum value
1239 g_settings_get_enum (GSettings *settings,
1242 GSettingsSchemaKey skey;
1246 g_return_val_if_fail (G_IS_SETTINGS (settings), -1);
1247 g_return_val_if_fail (key != NULL, -1);
1249 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1253 g_critical ("g_settings_get_enum() called on key '%s' which is not "
1254 "associated with an enumerated type", skey.name);
1255 g_settings_schema_key_clear (&skey);
1259 value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE);
1262 value = g_settings_schema_key_get_translated_default (&skey);
1265 value = g_variant_ref (skey.default_value);
1267 result = g_settings_schema_key_to_enum (&skey, value);
1268 g_settings_schema_key_clear (&skey);
1269 g_variant_unref (value);
1275 * g_settings_set_enum:
1276 * @settings: a #GSettings object
1277 * @key: a key, within @settings
1278 * @value: an enumerated value
1280 * Looks up the enumerated type nick for @value and writes it to @key,
1283 * It is a programmer error to give a @key that isn't contained in the
1284 * schema for @settings or is not marked as an enumerated type, or for
1285 * @value not to be a valid value for the named type.
1287 * After performing the write, accessing @key directly with
1288 * g_settings_get_string() will return the 'nick' associated with
1291 * Returns: %TRUE, if the set succeeds
1294 g_settings_set_enum (GSettings *settings,
1298 GSettingsSchemaKey skey;
1302 g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1303 g_return_val_if_fail (key != NULL, FALSE);
1305 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1309 g_critical ("g_settings_set_enum() called on key '%s' which is not "
1310 "associated with an enumerated type", skey.name);
1314 if (!(variant = g_settings_schema_key_from_enum (&skey, value)))
1316 g_critical ("g_settings_set_enum(): invalid enum value %d for key '%s' "
1317 "in schema '%s'. Doing nothing.", value, skey.name,
1318 g_settings_schema_get_id (skey.schema));
1319 g_settings_schema_key_clear (&skey);
1323 success = g_settings_write_to_backend (settings, &skey, variant);
1324 g_settings_schema_key_clear (&skey);
1330 * g_settings_get_flags:
1331 * @settings: a #GSettings object
1332 * @key: the key to get the value for
1334 * Gets the value that is stored in @settings for @key and converts it
1335 * to the flags value that it represents.
1337 * In order to use this function the type of the value must be an array
1338 * of strings and it must be marked in the schema file as an flags type.
1340 * It is a programmer error to give a @key that isn't contained in the
1341 * schema for @settings or is not marked as a flags type.
1343 * If the value stored in the configuration database is not a valid
1344 * value for the flags type then this function will return the default
1347 * Returns: the flags value
1352 g_settings_get_flags (GSettings *settings,
1355 GSettingsSchemaKey skey;
1359 g_return_val_if_fail (G_IS_SETTINGS (settings), -1);
1360 g_return_val_if_fail (key != NULL, -1);
1362 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1366 g_critical ("g_settings_get_flags() called on key '%s' which is not "
1367 "associated with a flags type", skey.name);
1368 g_settings_schema_key_clear (&skey);
1372 value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE);
1375 value = g_settings_schema_key_get_translated_default (&skey);
1378 value = g_variant_ref (skey.default_value);
1380 result = g_settings_schema_key_to_flags (&skey, value);
1381 g_settings_schema_key_clear (&skey);
1382 g_variant_unref (value);
1388 * g_settings_set_flags:
1389 * @settings: a #GSettings object
1390 * @key: a key, within @settings
1391 * @value: a flags value
1393 * Looks up the flags type nicks for the bits specified by @value, puts
1394 * them in an array of strings and writes the array to @key, within
1397 * It is a programmer error to give a @key that isn't contained in the
1398 * schema for @settings or is not marked as a flags type, or for @value
1399 * to contain any bits that are not value for the named type.
1401 * After performing the write, accessing @key directly with
1402 * g_settings_get_strv() will return an array of 'nicks'; one for each
1405 * Returns: %TRUE, if the set succeeds
1408 g_settings_set_flags (GSettings *settings,
1412 GSettingsSchemaKey skey;
1416 g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1417 g_return_val_if_fail (key != NULL, FALSE);
1419 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1423 g_critical ("g_settings_set_flags() called on key '%s' which is not "
1424 "associated with a flags type", skey.name);
1428 if (!(variant = g_settings_schema_key_from_flags (&skey, value)))
1430 g_critical ("g_settings_set_flags(): invalid flags value 0x%08x "
1431 "for key '%s' in schema '%s'. Doing nothing.",
1432 value, skey.name, g_settings_schema_get_id (skey.schema));
1433 g_settings_schema_key_clear (&skey);
1437 success = g_settings_write_to_backend (settings, &skey, variant);
1438 g_settings_schema_key_clear (&skey);
1444 * g_settings_set_value:
1445 * @settings: a #GSettings object
1446 * @key: the name of the key to set
1447 * @value: a #GVariant of the correct type
1449 * Sets @key in @settings to @value.
1451 * It is a programmer error to give a @key that isn't contained in the
1452 * schema for @settings or for @value to have the incorrect type, per
1455 * If @value is floating then this function consumes the reference.
1457 * Returns: %TRUE if setting the key succeeded,
1458 * %FALSE if the key was not writable
1463 g_settings_set_value (GSettings *settings,
1467 GSettingsSchemaKey skey;
1470 g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1471 g_return_val_if_fail (key != NULL, FALSE);
1473 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1475 if (!g_settings_schema_key_type_check (&skey, value))
1477 g_critical ("g_settings_set_value: key '%s' in '%s' expects type '%s', but a GVariant of type '%s' was given",
1479 g_settings_schema_get_id (settings->priv->schema),
1480 g_variant_type_peek_string (skey.type),
1481 g_variant_get_type_string (value));
1486 if (!g_settings_schema_key_range_check (&skey, value))
1488 g_warning ("g_settings_set_value: value for key '%s' in schema '%s' "
1489 "is outside of valid range",
1491 g_settings_schema_get_id (settings->priv->schema));
1496 success = g_settings_write_to_backend (settings, &skey, value);
1497 g_settings_schema_key_clear (&skey);
1504 * @settings: a #GSettings object
1505 * @key: the key to get the value for
1506 * @format: a #GVariant format string
1507 * @...: arguments as per @format
1509 * Gets the value that is stored at @key in @settings.
1511 * A convenience function that combines g_settings_get_value() with
1514 * It is a programmer error to give a @key that isn't contained in the
1515 * schema for @settings or for the #GVariantType of @format to mismatch
1516 * the type given in the schema.
1521 g_settings_get (GSettings *settings,
1523 const gchar *format,
1529 value = g_settings_get_value (settings, key);
1531 if (strchr (format, '&'))
1533 g_critical ("%s: the format string may not contain '&' (key '%s' from schema '%s'). "
1534 "This call will probably stop working with a future version of glib.",
1535 G_STRFUNC, key, g_settings_schema_get_id (settings->priv->schema));
1538 va_start (ap, format);
1539 g_variant_get_va (value, format, NULL, &ap);
1542 g_variant_unref (value);
1547 * @settings: a #GSettings object
1548 * @key: the name of the key to set
1549 * @format: a #GVariant format string
1550 * @...: arguments as per @format
1552 * Sets @key in @settings to @value.
1554 * A convenience function that combines g_settings_set_value() with
1557 * It is a programmer error to give a @key that isn't contained in the
1558 * schema for @settings or for the #GVariantType of @format to mismatch
1559 * the type given in the schema.
1561 * Returns: %TRUE if setting the key succeeded,
1562 * %FALSE if the key was not writable
1567 g_settings_set (GSettings *settings,
1569 const gchar *format,
1575 va_start (ap, format);
1576 value = g_variant_new_va (format, NULL, &ap);
1579 return g_settings_set_value (settings, key, value);
1583 * g_settings_get_mapped:
1584 * @settings: a #GSettings object
1585 * @key: the key to get the value for
1586 * @mapping: (scope call): the function to map the value in the
1587 * settings database to the value used by the application
1588 * @user_data: user data for @mapping
1590 * Gets the value that is stored at @key in @settings, subject to
1591 * application-level validation/mapping.
1593 * You should use this function when the application needs to perform
1594 * some processing on the value of the key (for example, parsing). The
1595 * @mapping function performs that processing. If the function
1596 * indicates that the processing was unsuccessful (due to a parse error,
1597 * for example) then the mapping is tried again with another value.
1599 * This allows a robust 'fall back to defaults' behaviour to be
1600 * implemented somewhat automatically.
1602 * The first value that is tried is the user's setting for the key. If
1603 * the mapping function fails to map this value, other values may be
1604 * tried in an unspecified order (system or site defaults, translated
1605 * schema default values, untranslated schema default values, etc).
1607 * If the mapping function fails for all possible values, one additional
1608 * attempt is made: the mapping function is called with a %NULL value.
1609 * If the mapping function still indicates failure at this point then
1610 * the application will be aborted.
1612 * The result parameter for the @mapping function is pointed to a
1613 * #gpointer which is initially set to %NULL. The same pointer is given
1614 * to each invocation of @mapping. The final value of that #gpointer is
1615 * what is returned by this function. %NULL is valid; it is returned
1616 * just as any other value would be.
1618 * Returns: (transfer full): the result, which may be %NULL
1621 g_settings_get_mapped (GSettings *settings,
1623 GSettingsGetMapping mapping,
1626 gpointer result = NULL;
1627 GSettingsSchemaKey skey;
1631 g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1632 g_return_val_if_fail (key != NULL, NULL);
1633 g_return_val_if_fail (mapping != NULL, NULL);
1635 g_settings_schema_key_init (&skey, settings->priv->schema, key);
1637 if ((value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE)))
1639 okay = mapping (value, &result, user_data);
1640 g_variant_unref (value);
1641 if (okay) goto okay;
1644 if ((value = g_settings_schema_key_get_translated_default (&skey)))
1646 okay = mapping (value, &result, user_data);
1647 g_variant_unref (value);
1648 if (okay) goto okay;
1651 if (mapping (skey.default_value, &result, user_data))
1654 if (!mapping (NULL, &result, user_data))
1655 g_error ("The mapping function given to g_settings_get_mapped() for key "
1656 "'%s' in schema '%s' returned FALSE when given a NULL value.",
1657 key, g_settings_schema_get_id (settings->priv->schema));
1660 g_settings_schema_key_clear (&skey);
1665 /* Convenience API (get, set_string, int, double, boolean, strv) {{{1 */
1667 * g_settings_get_string:
1668 * @settings: a #GSettings object
1669 * @key: the key to get the value for
1671 * Gets the value that is stored at @key in @settings.
1673 * A convenience variant of g_settings_get() for strings.
1675 * It is a programmer error to give a @key that isn't specified as
1676 * having a string type in the schema for @settings.
1678 * Returns: a newly-allocated string
1683 g_settings_get_string (GSettings *settings,
1689 value = g_settings_get_value (settings, key);
1690 result = g_variant_dup_string (value, NULL);
1691 g_variant_unref (value);
1697 * g_settings_set_string:
1698 * @settings: a #GSettings object
1699 * @key: the name of the key to set
1700 * @value: the value to set it to
1702 * Sets @key in @settings to @value.
1704 * A convenience variant of g_settings_set() for strings.
1706 * It is a programmer error to give a @key that isn't specified as
1707 * having a string type in the schema for @settings.
1709 * Returns: %TRUE if setting the key succeeded,
1710 * %FALSE if the key was not writable
1715 g_settings_set_string (GSettings *settings,
1719 return g_settings_set_value (settings, key, g_variant_new_string (value));
1723 * g_settings_get_int:
1724 * @settings: a #GSettings object
1725 * @key: the key to get the value for
1727 * Gets the value that is stored at @key in @settings.
1729 * A convenience variant of g_settings_get() for 32-bit integers.
1731 * It is a programmer error to give a @key that isn't specified as
1732 * having a int32 type in the schema for @settings.
1734 * Returns: an integer
1739 g_settings_get_int (GSettings *settings,
1745 value = g_settings_get_value (settings, key);
1746 result = g_variant_get_int32 (value);
1747 g_variant_unref (value);
1753 * g_settings_set_int:
1754 * @settings: a #GSettings object
1755 * @key: the name of the key to set
1756 * @value: the value to set it to
1758 * Sets @key in @settings to @value.
1760 * A convenience variant of g_settings_set() for 32-bit integers.
1762 * It is a programmer error to give a @key that isn't specified as
1763 * having a int32 type in the schema for @settings.
1765 * Returns: %TRUE if setting the key succeeded,
1766 * %FALSE if the key was not writable
1771 g_settings_set_int (GSettings *settings,
1775 return g_settings_set_value (settings, key, g_variant_new_int32 (value));
1779 * g_settings_get_uint:
1780 * @settings: a #GSettings object
1781 * @key: the key to get the value for
1783 * Gets the value that is stored at @key in @settings.
1785 * A convenience variant of g_settings_get() for 32-bit unsigned
1788 * It is a programmer error to give a @key that isn't specified as
1789 * having a uint32 type in the schema for @settings.
1791 * Returns: an unsigned integer
1796 g_settings_get_uint (GSettings *settings,
1802 value = g_settings_get_value (settings, key);
1803 result = g_variant_get_uint32 (value);
1804 g_variant_unref (value);
1810 * g_settings_set_uint:
1811 * @settings: a #GSettings object
1812 * @key: the name of the key to set
1813 * @value: the value to set it to
1815 * Sets @key in @settings to @value.
1817 * A convenience variant of g_settings_set() for 32-bit unsigned
1820 * It is a programmer error to give a @key that isn't specified as
1821 * having a uint32 type in the schema for @settings.
1823 * Returns: %TRUE if setting the key succeeded,
1824 * %FALSE if the key was not writable
1829 g_settings_set_uint (GSettings *settings,
1833 return g_settings_set_value (settings, key, g_variant_new_uint32 (value));
1837 * g_settings_get_double:
1838 * @settings: a #GSettings object
1839 * @key: the key to get the value for
1841 * Gets the value that is stored at @key in @settings.
1843 * A convenience variant of g_settings_get() for doubles.
1845 * It is a programmer error to give a @key that isn't specified as
1846 * having a 'double' type in the schema for @settings.
1853 g_settings_get_double (GSettings *settings,
1859 value = g_settings_get_value (settings, key);
1860 result = g_variant_get_double (value);
1861 g_variant_unref (value);
1867 * g_settings_set_double:
1868 * @settings: a #GSettings object
1869 * @key: the name of the key to set
1870 * @value: the value to set it to
1872 * Sets @key in @settings to @value.
1874 * A convenience variant of g_settings_set() for doubles.
1876 * It is a programmer error to give a @key that isn't specified as
1877 * having a 'double' type in the schema for @settings.
1879 * Returns: %TRUE if setting the key succeeded,
1880 * %FALSE if the key was not writable
1885 g_settings_set_double (GSettings *settings,
1889 return g_settings_set_value (settings, key, g_variant_new_double (value));
1893 * g_settings_get_boolean:
1894 * @settings: a #GSettings object
1895 * @key: the key to get the value for
1897 * Gets the value that is stored at @key in @settings.
1899 * A convenience variant of g_settings_get() for booleans.
1901 * It is a programmer error to give a @key that isn't specified as
1902 * having a boolean type in the schema for @settings.
1904 * Returns: a boolean
1909 g_settings_get_boolean (GSettings *settings,
1915 value = g_settings_get_value (settings, key);
1916 result = g_variant_get_boolean (value);
1917 g_variant_unref (value);
1923 * g_settings_set_boolean:
1924 * @settings: a #GSettings object
1925 * @key: the name of the key to set
1926 * @value: the value to set it to
1928 * Sets @key in @settings to @value.
1930 * A convenience variant of g_settings_set() for booleans.
1932 * It is a programmer error to give a @key that isn't specified as
1933 * having a boolean type in the schema for @settings.
1935 * Returns: %TRUE if setting the key succeeded,
1936 * %FALSE if the key was not writable
1941 g_settings_set_boolean (GSettings *settings,
1945 return g_settings_set_value (settings, key, g_variant_new_boolean (value));
1949 * g_settings_get_strv:
1950 * @settings: a #GSettings object
1951 * @key: the key to get the value for
1953 * A convenience variant of g_settings_get() for string arrays.
1955 * It is a programmer error to give a @key that isn't specified as
1956 * having an array of strings type in the schema for @settings.
1958 * Returns: (array zero-terminated=1) (transfer full): a
1959 * newly-allocated, %NULL-terminated array of strings, the value that
1960 * is stored at @key in @settings.
1965 g_settings_get_strv (GSettings *settings,
1971 value = g_settings_get_value (settings, key);
1972 result = g_variant_dup_strv (value, NULL);
1973 g_variant_unref (value);
1979 * g_settings_set_strv:
1980 * @settings: a #GSettings object
1981 * @key: the name of the key to set
1982 * @value: (allow-none) (array zero-terminated=1): the value to set it to, or %NULL
1984 * Sets @key in @settings to @value.
1986 * A convenience variant of g_settings_set() for string arrays. If
1987 * @value is %NULL, then @key is set to be the empty array.
1989 * It is a programmer error to give a @key that isn't specified as
1990 * having an array of strings type in the schema for @settings.
1992 * Returns: %TRUE if setting the key succeeded,
1993 * %FALSE if the key was not writable
1998 g_settings_set_strv (GSettings *settings,
2000 const gchar * const *value)
2005 array = g_variant_new_strv (value, -1);
2007 array = g_variant_new_strv (NULL, 0);
2009 return g_settings_set_value (settings, key, array);
2012 /* Delayed apply (delay, apply, revert, get_has_unapplied) {{{1 */
2015 * @settings: a #GSettings object
2017 * Changes the #GSettings object into 'delay-apply' mode. In this
2018 * mode, changes to @settings are not immediately propagated to the
2019 * backend, but kept locally until g_settings_apply() is called.
2024 g_settings_delay (GSettings *settings)
2026 g_return_if_fail (G_IS_SETTINGS (settings));
2028 if (settings->priv->delayed)
2031 settings->priv->delayed =
2032 g_delayed_settings_backend_new (settings->priv->backend,
2034 settings->priv->main_context);
2035 g_settings_backend_unwatch (settings->priv->backend, G_OBJECT (settings));
2036 g_object_unref (settings->priv->backend);
2038 settings->priv->backend = G_SETTINGS_BACKEND (settings->priv->delayed);
2039 g_settings_backend_watch (settings->priv->backend,
2040 &listener_vtable, G_OBJECT (settings),
2041 settings->priv->main_context);
2043 g_object_notify (G_OBJECT (settings), "delay-apply");
2048 * @settings: a #GSettings instance
2050 * Applies any changes that have been made to the settings. This
2051 * function does nothing unless @settings is in 'delay-apply' mode;
2052 * see g_settings_delay(). In the normal case settings are always
2053 * applied immediately.
2056 g_settings_apply (GSettings *settings)
2058 if (settings->priv->delayed)
2060 GDelayedSettingsBackend *delayed;
2062 delayed = G_DELAYED_SETTINGS_BACKEND (settings->priv->backend);
2063 g_delayed_settings_backend_apply (delayed);
2068 * g_settings_revert:
2069 * @settings: a #GSettings instance
2071 * Reverts all non-applied changes to the settings. This function
2072 * does nothing unless @settings is in 'delay-apply' mode; see
2073 * g_settings_delay(). In the normal case settings are always applied
2076 * Change notifications will be emitted for affected keys.
2079 g_settings_revert (GSettings *settings)
2081 if (settings->priv->delayed)
2083 GDelayedSettingsBackend *delayed;
2085 delayed = G_DELAYED_SETTINGS_BACKEND (settings->priv->backend);
2086 g_delayed_settings_backend_revert (delayed);
2091 * g_settings_get_has_unapplied:
2092 * @settings: a #GSettings object
2094 * Returns whether the #GSettings object has any unapplied
2095 * changes. This can only be the case if it is in 'delayed-apply' mode.
2097 * Returns: %TRUE if @settings has unapplied changes
2102 g_settings_get_has_unapplied (GSettings *settings)
2104 g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
2106 return settings->priv->delayed &&
2107 g_delayed_settings_backend_get_has_unapplied (
2108 G_DELAYED_SETTINGS_BACKEND (settings->priv->backend));
2111 /* Extra API (reset, sync, get_child, is_writable, list_*, ranges) {{{1 */
2114 * @settings: a #GSettings object
2115 * @key: the name of a key
2117 * Resets @key to its default value.
2119 * This call resets the key, as much as possible, to its default value.
2120 * That might the value specified in the schema or the one set by the
2124 g_settings_reset (GSettings *settings,
2129 path = g_strconcat (settings->priv->path, key, NULL);
2130 g_settings_backend_reset (settings->priv->backend, path, NULL);
2137 * Ensures that all pending operations for the given are complete for
2138 * the default backend.
2140 * Writes made to a #GSettings are handled asynchronously. For this
2141 * reason, it is very unlikely that the changes have it to disk by the
2142 * time g_settings_set() returns.
2144 * This call will block until all of the writes have made it to the
2145 * backend. Since the mainloop is not running, no change notifications
2146 * will be dispatched during this call (but some may be queued by the
2147 * time the call is done).
2150 g_settings_sync (void)
2152 g_settings_backend_sync_default ();
2156 * g_settings_is_writable:
2157 * @settings: a #GSettings object
2158 * @name: the name of a key
2160 * Finds out if a key can be written or not
2162 * Returns: %TRUE if the key @name is writable
2167 g_settings_is_writable (GSettings *settings,
2173 g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
2175 path = g_strconcat (settings->priv->path, name, NULL);
2176 writable = g_settings_backend_get_writable (settings->priv->backend, path);
2183 * g_settings_get_child:
2184 * @settings: a #GSettings object
2185 * @name: the name of the 'child' schema
2187 * Creates a 'child' settings object which has a base path of
2188 * <replaceable>base-path</replaceable>/@name, where
2189 * <replaceable>base-path</replaceable> is the base path of @settings.
2191 * The schema for the child settings object must have been declared
2192 * in the schema of @settings using a <tag class="starttag">child</tag> element.
2194 * Returns: (transfer full): a 'child' settings object
2199 g_settings_get_child (GSettings *settings,
2202 const gchar *child_schema;
2207 g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
2209 child_name = g_strconcat (name, "/", NULL);
2210 child_schema = g_settings_schema_get_string (settings->priv->schema,
2212 if (child_schema == NULL)
2213 g_error ("Schema '%s' has no child '%s'",
2214 g_settings_schema_get_id (settings->priv->schema), name);
2216 child_path = g_strconcat (settings->priv->path, child_name, NULL);
2217 child = g_object_new (G_TYPE_SETTINGS,
2218 "schema-id", child_schema,
2221 g_free (child_path);
2222 g_free (child_name);
2228 * g_settings_list_keys:
2229 * @settings: a #GSettings object
2231 * Introspects the list of keys on @settings.
2233 * You should probably not be calling this function from "normal" code
2234 * (since you should already know what keys are in your schema). This
2235 * function is intended for introspection reasons.
2237 * You should free the return value with g_strfreev() when you are done
2240 * Returns: (transfer full) (element-type utf8): a list of the keys on @settings
2243 g_settings_list_keys (GSettings *settings)
2250 keys = g_settings_schema_list (settings->priv->schema, &n_keys);
2251 strv = g_new (gchar *, n_keys + 1);
2252 for (i = j = 0; i < n_keys; i++)
2254 const gchar *key = g_quark_to_string (keys[i]);
2256 if (!g_str_has_suffix (key, "/"))
2257 strv[j++] = g_strdup (key);
2265 * g_settings_list_children:
2266 * @settings: a #GSettings object
2268 * Gets the list of children on @settings.
2270 * The list is exactly the list of strings for which it is not an error
2271 * to call g_settings_get_child().
2273 * For GSettings objects that are lists, this value can change at any
2274 * time and you should connect to the "children-changed" signal to watch
2275 * for those changes. Note that there is a race condition here: you may
2276 * request a child after listing it only for it to have been destroyed
2277 * in the meantime. For this reason, g_settings_get_child() may return
2278 * %NULL even for a child that was listed by this function.
2280 * For GSettings objects that are not lists, you should probably not be
2281 * calling this function from "normal" code (since you should already
2282 * know what children are in your schema). This function may still be
2283 * useful there for introspection reasons, however.
2285 * You should free the return value with g_strfreev() when you are done
2288 * Returns: (transfer full) (element-type utf8): a list of the children on @settings
2291 g_settings_list_children (GSettings *settings)
2298 keys = g_settings_schema_list (settings->priv->schema, &n_keys);
2299 strv = g_new (gchar *, n_keys + 1);
2300 for (i = j = 0; i < n_keys; i++)
2302 const gchar *key = g_quark_to_string (keys[i]);
2304 if (g_str_has_suffix (key, "/"))
2306 gint length = strlen (key);
2308 strv[j] = g_memdup (key, length);
2309 strv[j][length - 1] = '\0';
2319 * g_settings_get_range:
2320 * @settings: a #GSettings
2321 * @key: the key to query the range of
2323 * Queries the range of a key.
2327 * Deprecated:2.40:Use g_settings_schema_key_get_range() instead.
2330 g_settings_get_range (GSettings *settings,
2333 GSettingsSchemaKey skey;
2336 g_settings_schema_key_init (&skey, settings->priv->schema, key);
2337 range = g_settings_schema_key_get_range (&skey);
2338 g_settings_schema_key_clear (&skey);
2344 * g_settings_range_check:
2345 * @settings: a #GSettings
2346 * @key: the key to check
2347 * @value: the value to check
2349 * Checks if the given @value is of the correct type and within the
2350 * permitted range for @key.
2352 * Returns: %TRUE if @value is valid for @key
2356 * Deprecated:2.40:Use g_settings_schema_key_range_check() instead.
2359 g_settings_range_check (GSettings *settings,
2363 GSettingsSchemaKey skey;
2366 g_settings_schema_key_init (&skey, settings->priv->schema, key);
2367 good = g_settings_schema_key_range_check (&skey, value);
2368 g_settings_schema_key_clear (&skey);
2376 GSettingsSchemaKey key;
2377 GSettings *settings;
2380 GSettingsBindGetMapping get_mapping;
2381 GSettingsBindSetMapping set_mapping;
2383 GDestroyNotify destroy;
2385 guint writable_handler_id;
2386 guint property_handler_id;
2387 const GParamSpec *property;
2388 guint key_handler_id;
2390 /* prevent recursion */
2395 g_settings_binding_free (gpointer data)
2397 GSettingsBinding *binding = data;
2399 g_assert (!binding->running);
2401 if (binding->writable_handler_id)
2402 g_signal_handler_disconnect (binding->settings,
2403 binding->writable_handler_id);
2405 if (binding->key_handler_id)
2406 g_signal_handler_disconnect (binding->settings,
2407 binding->key_handler_id);
2409 if (g_signal_handler_is_connected (binding->object,
2410 binding->property_handler_id))
2411 g_signal_handler_disconnect (binding->object,
2412 binding->property_handler_id);
2414 g_settings_schema_key_clear (&binding->key);
2416 if (binding->destroy)
2417 binding->destroy (binding->user_data);
2419 g_object_unref (binding->settings);
2421 g_slice_free (GSettingsBinding, binding);
2425 g_settings_binding_quark (const char *property)
2430 tmp = g_strdup_printf ("gsettingsbinding-%s", property);
2431 quark = g_quark_from_string (tmp);
2438 g_settings_binding_key_changed (GSettings *settings,
2442 GSettingsBinding *binding = user_data;
2443 GValue value = G_VALUE_INIT;
2446 g_assert (settings == binding->settings);
2447 g_assert (key == binding->key.name);
2449 if (binding->running)
2452 binding->running = TRUE;
2454 g_value_init (&value, binding->property->value_type);
2456 variant = g_settings_read_from_backend (binding->settings, &binding->key, FALSE, FALSE);
2457 if (variant && !binding->get_mapping (&value, variant, binding->user_data))
2459 /* silently ignore errors in the user's config database */
2460 g_variant_unref (variant);
2464 if (variant == NULL)
2466 variant = g_settings_schema_key_get_translated_default (&binding->key);
2468 !binding->get_mapping (&value, variant, binding->user_data))
2470 /* flag translation errors with a warning */
2471 g_warning ("Translated default '%s' for key '%s' in schema '%s' "
2472 "was rejected by the binding mapping function",
2473 binding->key.unparsed, binding->key.name,
2474 g_settings_schema_get_id (binding->key.schema));
2475 g_variant_unref (variant);
2480 if (variant == NULL)
2482 variant = g_variant_ref (binding->key.default_value);
2483 if (!binding->get_mapping (&value, variant, binding->user_data))
2484 g_error ("The schema default value for key '%s' in schema '%s' "
2485 "was rejected by the binding mapping function.",
2486 binding->key.name, g_settings_schema_get_id (binding->key.schema));
2489 g_object_set_property (binding->object, binding->property->name, &value);
2490 g_variant_unref (variant);
2491 g_value_unset (&value);
2493 binding->running = FALSE;
2497 g_settings_binding_property_changed (GObject *object,
2498 const GParamSpec *pspec,
2501 GSettingsBinding *binding = user_data;
2502 GValue value = G_VALUE_INIT;
2505 g_assert (object == binding->object);
2506 g_assert (pspec == binding->property);
2508 if (binding->running)
2511 binding->running = TRUE;
2513 g_value_init (&value, pspec->value_type);
2514 g_object_get_property (object, pspec->name, &value);
2515 if ((variant = binding->set_mapping (&value, binding->key.type,
2516 binding->user_data)))
2518 g_variant_take_ref (variant);
2520 if (!g_settings_schema_key_type_check (&binding->key, variant))
2522 g_critical ("binding mapping function for key '%s' returned "
2523 "GVariant of type '%s' when type '%s' was requested",
2524 binding->key.name, g_variant_get_type_string (variant),
2525 g_variant_type_dup_string (binding->key.type));
2529 if (!g_settings_schema_key_range_check (&binding->key, variant))
2531 g_critical ("GObject property '%s' on a '%s' object is out of "
2532 "schema-specified range for key '%s' of '%s': %s",
2533 binding->property->name, g_type_name (binding->property->owner_type),
2534 binding->key.name, g_settings_schema_get_id (binding->key.schema),
2535 g_variant_print (variant, TRUE));
2539 g_settings_write_to_backend (binding->settings, &binding->key, variant);
2540 g_variant_unref (variant);
2542 g_value_unset (&value);
2544 binding->running = FALSE;
2548 g_settings_bind_invert_boolean_get_mapping (GValue *value,
2552 g_value_set_boolean (value, !g_variant_get_boolean (variant));
2557 g_settings_bind_invert_boolean_set_mapping (const GValue *value,
2558 const GVariantType *expected_type,
2561 return g_variant_new_boolean (!g_value_get_boolean (value));
2566 * @settings: a #GSettings object
2567 * @key: the key to bind
2568 * @object: (type GObject.Object): a #GObject
2569 * @property: the name of the property to bind
2570 * @flags: flags for the binding
2572 * Create a binding between the @key in the @settings object
2573 * and the property @property of @object.
2575 * The binding uses the default GIO mapping functions to map
2576 * between the settings and property values. These functions
2577 * handle booleans, numeric types and string types in a
2578 * straightforward way. Use g_settings_bind_with_mapping() if
2579 * you need a custom mapping, or map between types that are not
2580 * supported by the default mapping functions.
2582 * Unless the @flags include %G_SETTINGS_BIND_NO_SENSITIVITY, this
2583 * function also establishes a binding between the writability of
2584 * @key and the "sensitive" property of @object (if @object has
2585 * a boolean property by that name). See g_settings_bind_writable()
2586 * for more details about writable bindings.
2588 * Note that the lifecycle of the binding is tied to the object,
2589 * and that you can have only one binding per object property.
2590 * If you bind the same property twice on the same object, the second
2591 * binding overrides the first one.
2596 g_settings_bind (GSettings *settings,
2599 const gchar *property,
2600 GSettingsBindFlags flags)
2602 GSettingsBindGetMapping get_mapping = NULL;
2603 GSettingsBindSetMapping set_mapping = NULL;
2605 if (flags & G_SETTINGS_BIND_INVERT_BOOLEAN)
2607 get_mapping = g_settings_bind_invert_boolean_get_mapping;
2608 set_mapping = g_settings_bind_invert_boolean_set_mapping;
2610 /* can't pass this flag to g_settings_bind_with_mapping() */
2611 flags &= ~G_SETTINGS_BIND_INVERT_BOOLEAN;
2614 g_settings_bind_with_mapping (settings, key, object, property, flags,
2615 get_mapping, set_mapping, NULL, NULL);
2619 * g_settings_bind_with_mapping: (skip)
2620 * @settings: a #GSettings object
2621 * @key: the key to bind
2622 * @object: (type GObject.Object): a #GObject
2623 * @property: the name of the property to bind
2624 * @flags: flags for the binding
2625 * @get_mapping: a function that gets called to convert values
2626 * from @settings to @object, or %NULL to use the default GIO mapping
2627 * @set_mapping: a function that gets called to convert values
2628 * from @object to @settings, or %NULL to use the default GIO mapping
2629 * @user_data: data that gets passed to @get_mapping and @set_mapping
2630 * @destroy: #GDestroyNotify function for @user_data
2632 * Create a binding between the @key in the @settings object
2633 * and the property @property of @object.
2635 * The binding uses the provided mapping functions to map between
2636 * settings and property values.
2638 * Note that the lifecycle of the binding is tied to the object,
2639 * and that you can have only one binding per object property.
2640 * If you bind the same property twice on the same object, the second
2641 * binding overrides the first one.
2646 g_settings_bind_with_mapping (GSettings *settings,
2649 const gchar *property,
2650 GSettingsBindFlags flags,
2651 GSettingsBindGetMapping get_mapping,
2652 GSettingsBindSetMapping set_mapping,
2654 GDestroyNotify destroy)
2656 GSettingsBinding *binding;
2657 GObjectClass *objectclass;
2658 gchar *detailed_signal;
2659 GQuark binding_quark;
2661 g_return_if_fail (G_IS_SETTINGS (settings));
2662 g_return_if_fail (key != NULL);
2663 g_return_if_fail (G_IS_OBJECT (object));
2664 g_return_if_fail (property != NULL);
2665 g_return_if_fail (~flags & G_SETTINGS_BIND_INVERT_BOOLEAN);
2667 objectclass = G_OBJECT_GET_CLASS (object);
2669 binding = g_slice_new0 (GSettingsBinding);
2670 g_settings_schema_key_init (&binding->key, settings->priv->schema, key);
2671 binding->settings = g_object_ref (settings);
2672 binding->object = object;
2673 binding->property = g_object_class_find_property (objectclass, property);
2674 binding->user_data = user_data;
2675 binding->destroy = destroy;
2676 binding->get_mapping = get_mapping ? get_mapping : g_settings_get_mapping;
2677 binding->set_mapping = set_mapping ? set_mapping : g_settings_set_mapping;
2679 if (!(flags & (G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET)))
2680 flags |= G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET;
2682 if (binding->property == NULL)
2684 g_critical ("g_settings_bind: no property '%s' on class '%s'",
2685 property, G_OBJECT_TYPE_NAME (object));
2689 if ((flags & G_SETTINGS_BIND_GET) &&
2690 (binding->property->flags & G_PARAM_WRITABLE) == 0)
2692 g_critical ("g_settings_bind: property '%s' on class '%s' is not "
2693 "writable", binding->property->name, G_OBJECT_TYPE_NAME (object));
2696 if ((flags & G_SETTINGS_BIND_SET) &&
2697 (binding->property->flags & G_PARAM_READABLE) == 0)
2699 g_critical ("g_settings_bind: property '%s' on class '%s' is not "
2700 "readable", binding->property->name, G_OBJECT_TYPE_NAME (object));
2704 if (get_mapping == g_settings_bind_invert_boolean_get_mapping)
2706 /* g_settings_bind_invert_boolean_get_mapping() is a private
2707 * function, so if we are here it means that g_settings_bind() was
2708 * called with G_SETTINGS_BIND_INVERT_BOOLEAN.
2710 * Ensure that both sides are boolean.
2713 if (binding->property->value_type != G_TYPE_BOOLEAN)
2715 g_critical ("g_settings_bind: G_SETTINGS_BIND_INVERT_BOOLEAN "
2716 "was specified, but property '%s' on type '%s' has "
2717 "type '%s'", binding->property->name, G_OBJECT_TYPE_NAME (object),
2718 g_type_name ((binding->property->value_type)));
2722 if (!g_variant_type_equal (binding->key.type, G_VARIANT_TYPE_BOOLEAN))
2724 g_critical ("g_settings_bind: G_SETTINGS_BIND_INVERT_BOOLEAN "
2725 "was specified, but key '%s' on schema '%s' has "
2726 "type '%s'", key, g_settings_schema_get_id (settings->priv->schema),
2727 g_variant_type_dup_string (binding->key.type));
2733 else if (((get_mapping == NULL && (flags & G_SETTINGS_BIND_GET)) ||
2734 (set_mapping == NULL && (flags & G_SETTINGS_BIND_SET))) &&
2735 !g_settings_mapping_is_compatible (binding->property->value_type,
2738 g_critical ("g_settings_bind: property '%s' on class '%s' has type "
2739 "'%s' which is not compatible with type '%s' of key '%s' "
2740 "on schema '%s'", binding->property->name, G_OBJECT_TYPE_NAME (object),
2741 g_type_name (binding->property->value_type),
2742 g_variant_type_dup_string (binding->key.type), key,
2743 g_settings_schema_get_id (settings->priv->schema));
2747 if ((flags & G_SETTINGS_BIND_SET) &&
2748 (~flags & G_SETTINGS_BIND_NO_SENSITIVITY))
2750 GParamSpec *sensitive;
2752 sensitive = g_object_class_find_property (objectclass, "sensitive");
2754 if (sensitive && sensitive->value_type == G_TYPE_BOOLEAN &&
2755 (sensitive->flags & G_PARAM_WRITABLE))
2756 g_settings_bind_writable (settings, binding->key.name, object, "sensitive", FALSE);
2759 if (flags & G_SETTINGS_BIND_SET)
2761 detailed_signal = g_strdup_printf ("notify::%s", binding->property->name);
2762 binding->property_handler_id =
2763 g_signal_connect (object, detailed_signal,
2764 G_CALLBACK (g_settings_binding_property_changed),
2766 g_free (detailed_signal);
2768 if (~flags & G_SETTINGS_BIND_GET)
2769 g_settings_binding_property_changed (object,
2774 if (flags & G_SETTINGS_BIND_GET)
2776 if (~flags & G_SETTINGS_BIND_GET_NO_CHANGES)
2778 detailed_signal = g_strdup_printf ("changed::%s", key);
2779 binding->key_handler_id =
2780 g_signal_connect (settings, detailed_signal,
2781 G_CALLBACK (g_settings_binding_key_changed),
2783 g_free (detailed_signal);
2786 g_settings_binding_key_changed (settings, binding->key.name, binding);
2789 binding_quark = g_settings_binding_quark (binding->property->name);
2790 g_object_set_qdata_full (object, binding_quark,
2791 binding, g_settings_binding_free);
2794 /* Writability binding {{{1 */
2797 GSettings *settings;
2800 const gchar *property;
2803 } GSettingsWritableBinding;
2806 g_settings_writable_binding_free (gpointer data)
2808 GSettingsWritableBinding *binding = data;
2810 g_signal_handler_disconnect (binding->settings, binding->handler_id);
2811 g_object_unref (binding->settings);
2812 g_slice_free (GSettingsWritableBinding, binding);
2816 g_settings_binding_writable_changed (GSettings *settings,
2820 GSettingsWritableBinding *binding = user_data;
2823 g_assert (settings == binding->settings);
2824 g_assert (key == binding->key);
2826 writable = g_settings_is_writable (settings, key);
2828 if (binding->inverted)
2829 writable = !writable;
2831 g_object_set (binding->object, binding->property, writable, NULL);
2835 * g_settings_bind_writable:
2836 * @settings: a #GSettings object
2837 * @key: the key to bind
2838 * @object: (type GObject.Object):a #GObject
2839 * @property: the name of a boolean property to bind
2840 * @inverted: whether to 'invert' the value
2842 * Create a binding between the writability of @key in the
2843 * @settings object and the property @property of @object.
2844 * The property must be boolean; "sensitive" or "visible"
2845 * properties of widgets are the most likely candidates.
2847 * Writable bindings are always uni-directional; changes of the
2848 * writability of the setting will be propagated to the object
2849 * property, not the other way.
2851 * When the @inverted argument is %TRUE, the binding inverts the
2852 * value as it passes from the setting to the object, i.e. @property
2853 * will be set to %TRUE if the key is <emphasis>not</emphasis>
2856 * Note that the lifecycle of the binding is tied to the object,
2857 * and that you can have only one binding per object property.
2858 * If you bind the same property twice on the same object, the second
2859 * binding overrides the first one.
2864 g_settings_bind_writable (GSettings *settings,
2867 const gchar *property,
2870 GSettingsWritableBinding *binding;
2871 gchar *detailed_signal;
2874 g_return_if_fail (G_IS_SETTINGS (settings));
2876 pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object), property);
2879 g_critical ("g_settings_bind_writable: no property '%s' on class '%s'",
2880 property, G_OBJECT_TYPE_NAME (object));
2883 if ((pspec->flags & G_PARAM_WRITABLE) == 0)
2885 g_critical ("g_settings_bind_writable: property '%s' on class '%s' is not writable",
2886 property, G_OBJECT_TYPE_NAME (object));
2890 binding = g_slice_new (GSettingsWritableBinding);
2891 binding->settings = g_object_ref (settings);
2892 binding->object = object;
2893 binding->key = g_intern_string (key);
2894 binding->property = g_intern_string (property);
2895 binding->inverted = inverted;
2897 detailed_signal = g_strdup_printf ("writable-changed::%s", key);
2898 binding->handler_id =
2899 g_signal_connect (settings, detailed_signal,
2900 G_CALLBACK (g_settings_binding_writable_changed),
2902 g_free (detailed_signal);
2904 g_object_set_qdata_full (object, g_settings_binding_quark (property),
2905 binding, g_settings_writable_binding_free);
2907 g_settings_binding_writable_changed (settings, binding->key, binding);
2911 * g_settings_unbind:
2912 * @object: the object
2913 * @property: the property whose binding is removed
2915 * Removes an existing binding for @property on @object.
2917 * Note that bindings are automatically removed when the
2918 * object is finalized, so it is rarely necessary to call this
2924 g_settings_unbind (gpointer object,
2925 const gchar *property)
2927 GQuark binding_quark;
2929 binding_quark = g_settings_binding_quark (property);
2930 g_object_set_qdata (object, binding_quark, NULL);
2937 GObject parent_instance;
2939 GSettingsSchemaKey key;
2940 GSettings *settings;
2943 typedef GObjectClass GSettingsActionClass;
2945 static GType g_settings_action_get_type (void);
2946 static void g_settings_action_iface_init (GActionInterface *iface);
2947 G_DEFINE_TYPE_WITH_CODE (GSettingsAction, g_settings_action, G_TYPE_OBJECT,
2948 G_IMPLEMENT_INTERFACE (G_TYPE_ACTION, g_settings_action_iface_init))
2954 ACTION_PROP_PARAMETER_TYPE,
2955 ACTION_PROP_ENABLED,
2956 ACTION_PROP_STATE_TYPE,
2960 static const gchar *
2961 g_settings_action_get_name (GAction *action)
2963 GSettingsAction *gsa = (GSettingsAction *) action;
2965 return gsa->key.name;
2968 static const GVariantType *
2969 g_settings_action_get_parameter_type (GAction *action)
2971 GSettingsAction *gsa = (GSettingsAction *) action;
2972 const GVariantType *type;
2974 type = g_variant_get_type (gsa->key.default_value);
2975 if (g_variant_type_equal (type, G_VARIANT_TYPE_BOOLEAN))
2982 g_settings_action_get_enabled (GAction *action)
2984 GSettingsAction *gsa = (GSettingsAction *) action;
2986 return g_settings_is_writable (gsa->settings, gsa->key.name);
2989 static const GVariantType *
2990 g_settings_action_get_state_type (GAction *action)
2992 GSettingsAction *gsa = (GSettingsAction *) action;
2994 return g_variant_get_type (gsa->key.default_value);
2998 g_settings_action_get_state (GAction *action)
3000 GSettingsAction *gsa = (GSettingsAction *) action;
3003 value = g_settings_read_from_backend (gsa->settings, &gsa->key, FALSE, FALSE);
3006 value = g_settings_schema_key_get_translated_default (&gsa->key);
3009 value = g_variant_ref (gsa->key.default_value);
3015 g_settings_action_get_state_hint (GAction *action)
3017 GSettingsAction *gsa = (GSettingsAction *) action;
3019 /* no point in reimplementing this... */
3020 return g_settings_schema_key_get_range (&gsa->key);
3024 g_settings_action_change_state (GAction *action,
3027 GSettingsAction *gsa = (GSettingsAction *) action;
3029 if (g_settings_schema_key_type_check (&gsa->key, value) && g_settings_schema_key_range_check (&gsa->key, value))
3030 g_settings_write_to_backend (gsa->settings, &gsa->key, value);
3034 g_settings_action_activate (GAction *action,
3035 GVariant *parameter)
3037 GSettingsAction *gsa = (GSettingsAction *) action;
3039 if (g_variant_is_of_type (gsa->key.default_value, G_VARIANT_TYPE_BOOLEAN))
3043 if (parameter != NULL)
3046 old = g_settings_action_get_state (action);
3047 parameter = g_variant_new_boolean (!g_variant_get_boolean (old));
3048 g_variant_unref (old);
3051 g_action_change_state (action, parameter);
3055 g_settings_action_get_property (GObject *object, guint prop_id,
3056 GValue *value, GParamSpec *pspec)
3058 GAction *action = G_ACTION (object);
3062 case ACTION_PROP_NAME:
3063 g_value_set_string (value, g_settings_action_get_name (action));
3066 case ACTION_PROP_PARAMETER_TYPE:
3067 g_value_set_boxed (value, g_settings_action_get_parameter_type (action));
3070 case ACTION_PROP_ENABLED:
3071 g_value_set_boolean (value, g_settings_action_get_enabled (action));
3074 case ACTION_PROP_STATE_TYPE:
3075 g_value_set_boxed (value, g_settings_action_get_state_type (action));
3078 case ACTION_PROP_STATE:
3079 g_value_set_variant (value, g_settings_action_get_state (action));
3083 g_assert_not_reached ();
3088 g_settings_action_finalize (GObject *object)
3090 GSettingsAction *gsa = (GSettingsAction *) object;
3092 g_signal_handlers_disconnect_by_data (gsa->settings, gsa);
3093 g_object_unref (gsa->settings);
3095 G_OBJECT_CLASS (g_settings_action_parent_class)
3096 ->finalize (object);
3100 g_settings_action_init (GSettingsAction *gsa)
3105 g_settings_action_iface_init (GActionInterface *iface)
3107 iface->get_name = g_settings_action_get_name;
3108 iface->get_parameter_type = g_settings_action_get_parameter_type;
3109 iface->get_enabled = g_settings_action_get_enabled;
3110 iface->get_state_type = g_settings_action_get_state_type;
3111 iface->get_state = g_settings_action_get_state;
3112 iface->get_state_hint = g_settings_action_get_state_hint;
3113 iface->change_state = g_settings_action_change_state;
3114 iface->activate = g_settings_action_activate;
3118 g_settings_action_class_init (GSettingsActionClass *class)
3120 class->get_property = g_settings_action_get_property;
3121 class->finalize = g_settings_action_finalize;
3123 g_object_class_override_property (class, ACTION_PROP_NAME, "name");
3124 g_object_class_override_property (class, ACTION_PROP_PARAMETER_TYPE, "parameter-type");
3125 g_object_class_override_property (class, ACTION_PROP_ENABLED, "enabled");
3126 g_object_class_override_property (class, ACTION_PROP_STATE_TYPE, "state-type");
3127 g_object_class_override_property (class, ACTION_PROP_STATE, "state");
3131 g_settings_action_changed (GSettings *settings,
3135 g_object_notify (user_data, "state");
3139 g_settings_action_enabled_changed (GSettings *settings,
3143 g_object_notify (user_data, "enabled");
3147 * g_settings_create_action:
3148 * @settings: a #GSettings
3149 * @key: the name of a key in @settings
3151 * Creates a #GAction corresponding to a given #GSettings key.
3153 * The action has the same name as the key.
3155 * The value of the key becomes the state of the action and the action
3156 * is enabled when the key is writable. Changing the state of the
3157 * action results in the key being written to. Changes to the value or
3158 * writability of the key cause appropriate change notifications to be
3159 * emitted for the action.
3161 * For boolean-valued keys, action activations take no parameter and
3162 * result in the toggling of the value. For all other types,
3163 * activations take the new value for the key (which must have the
3166 * Returns: (transfer full): a new #GAction
3171 g_settings_create_action (GSettings *settings,
3174 GSettingsAction *gsa;
3175 gchar *detailed_signal;
3177 g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
3178 g_return_val_if_fail (key != NULL, NULL);
3180 gsa = g_object_new (g_settings_action_get_type (), NULL);
3181 gsa->settings = g_object_ref (settings);
3182 g_settings_schema_key_init (&gsa->key, settings->priv->schema, key);
3184 detailed_signal = g_strdup_printf ("changed::%s", key);
3185 g_signal_connect (settings, detailed_signal, G_CALLBACK (g_settings_action_changed), gsa);
3186 g_free (detailed_signal);
3187 detailed_signal = g_strdup_printf ("writable-changed::%s", key);
3188 g_signal_connect (settings, detailed_signal, G_CALLBACK (g_settings_action_enabled_changed), gsa);
3189 g_free (detailed_signal);
3191 return G_ACTION (gsa);
3196 /* vim:set foldmethod=marker: */