diff options
author | Milan Crha <mcrha@redhat.com> | 2009-12-19 00:56:11 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-12-19 00:56:11 +0800 |
commit | 10590768038b2f3172040da50533ca4f7802fc34 (patch) | |
tree | 64e23fda77958e0a421d828ccf54c4ee784bacf2 /e-util/gconf-bridge.h | |
parent | f148a0b0e3aaee26c42c7fc03f7a6359ead71abb (diff) | |
download | gsoc2013-evolution-10590768038b2f3172040da50533ca4f7802fc34.tar.gz gsoc2013-evolution-10590768038b2f3172040da50533ca4f7802fc34.tar.zst gsoc2013-evolution-10590768038b2f3172040da50533ca4f7802fc34.zip |
Bug #596967 - Per-folder setting for threading and preview panel
Diffstat (limited to 'e-util/gconf-bridge.h')
-rw-r--r-- | e-util/gconf-bridge.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/e-util/gconf-bridge.h b/e-util/gconf-bridge.h index 7c7f53b0ce..371f1173e5 100644 --- a/e-util/gconf-bridge.h +++ b/e-util/gconf-bridge.h @@ -70,6 +70,24 @@ guint gconf_bridge_bind_property_full (GConfBridge *bridge, gconf_bridge_bind_property_full ((bridge), (key), \ (object), (prop), TRUE) +/** + * gconf_bridge_block_property_bindings + * @bridge: A #GConfBridge + * @key: A GConf key to be blocked + * + * Blocks property bindings for @key. To unblock it call #gconf_bridge_unblock_property_bindings. + **/ +void gconf_bridge_block_property_bindings (GConfBridge *bridge, const gchar *key); + +/** + * gconf_bridge_unblock_property_bindings + * @bridge: A #GConfBridge + * @key: A GConf key to be unblocked + * + * Unblocks property bindings for @key, these should be previously blocked with #gconf_bridge_unblock_property_bindings. + **/ +void gconf_bridge_unblock_property_bindings (GConfBridge *bridge, const gchar *key); + guint gconf_bridge_bind_window (GConfBridge *bridge, const gchar *key_prefix, GtkWindow *window, |