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