[glib] Document g_settings_bind_writable
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Document g_settings_bind_writable
- Date: Tue, 20 Apr 2010 23:42:47 +0000 (UTC)
commit 3277b77769def1aabfa850858197d02b0afca364
Author: Matthias Clasen <mclasen redhat com>
Date: Tue Apr 20 15:13:07 2010 -0400
Document g_settings_bind_writable
docs/reference/gio/gio-sections.txt | 1 +
gio/gsettings.c | 36 ++++++++++++++++++++++++++++++++++-
2 files changed, 36 insertions(+), 1 deletions(-)
---
diff --git a/docs/reference/gio/gio-sections.txt b/docs/reference/gio/gio-sections.txt
index d24976e..7364465 100644
--- a/docs/reference/gio/gio-sections.txt
+++ b/docs/reference/gio/gio-sections.txt
@@ -2141,6 +2141,7 @@ g_settings_set_strv
GSettingsBindFlags
g_settings_bind
g_settings_bind_with_mapping
+g_settings_bind_writable
g_settings_unbind
GSettingsBindSetMapping
GSettingsBindGetMapping
diff --git a/gio/gsettings.c b/gio/gsettings.c
index b7d0cba..2232328 100644
--- a/gio/gsettings.c
+++ b/gio/gsettings.c
@@ -1230,6 +1230,12 @@ g_settings_binding_property_changed (GObject *object,
* if you need a custom mapping, or map between types that
* are not supported by the default mapping functions.
*
+ * Unless the @flags include %G_SETTINGS_BIND_NO_SENSITIVITY, this
+ * function also establishes a binding between the writability of
+ * @key and the "sensitive" property of @object (if @object has
+ * a boolean property by that name). See g_settings_bind_writable()
+ * for more details about writable bindings.
+ *
* Note that the lifecycle of the binding is tied to the object,
* and that you can have only one binding per object property.
* If you bind the same property twice on the same object, the second
@@ -1428,7 +1434,35 @@ g_settings_binding_writable_changed (GSettings *settings,
g_object_set (binding->object, binding->property, writable, NULL);
}
-
+/**
+ * g_settings_bind_writable:
+ * @settings: a #GSettings object
+ * @key: the key to bind
+ * @object: a #GObject
+ * @property: the name of a boolean property to bind
+ * @inverted: whether to 'invert' the value
+ *
+ * Create a binding between the writability of @key in the
+ * @settings object and the property @property of @object.
+ * The property must be boolean; "sensitive" or "visible"
+ * properties of widgets are the most likely candidates.
+ *
+ * Writable bindings are always uni-directional; changes of the
+ * writability of the setting will be propagated to the object
+ * property, not the other way.
+ *
+ * When the @inverted argument is %TRUE, the binding inverts the
+ * value as it passes from the setting to the object, i.e. @property
+ * will be set to %TRUE if the key is <emphasis>not</emphasis>
+ * writable.
+ *
+ * Note that the lifecycle of the binding is tied to the object,
+ * and that you can have only one binding per object property.
+ * If you bind the same property twice on the same object, the second
+ * binding overrides the first one.
+ *
+ * Since: 2.26
+ */
void
g_settings_bind_writable (GSettings *settings,
const gchar *key,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]