Remove GConfBridge.
No longer needed.
This commit is contained in:
1
COPYING
1
COPYING
@ -14,7 +14,6 @@ LGPLv2 only
|
||||
plugins/webdav-account-setup/webdav-contacts-source.c
|
||||
|
||||
LGPLv2+
|
||||
e-util/gconf-bridge.[ch]
|
||||
widgets/misc/e-icon-entry.[ch]
|
||||
widgets/text/e-text.[ch]
|
||||
widgets/table/e-cell-tree.[ch]
|
||||
|
@ -43,7 +43,6 @@
|
||||
<xi:include href="xml/e-signature-utils.xml"/>
|
||||
<xi:include href="xml/e-util.xml"/>
|
||||
<xi:include href="xml/e-xml-utils.xml"/>
|
||||
<xi:include href="xml/gconf-bridge.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
|
@ -1135,23 +1135,6 @@ e_xml_set_string_prop_by_name
|
||||
e_xml_get_translated_string_prop_by_name
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gconf-bridge</FILE>
|
||||
<TITLE>GConf Bridge</TITLE>
|
||||
GConfBridge
|
||||
gconf_bridge_install_default_error_handler
|
||||
gconf_bridge_get
|
||||
gconf_bridge_get_client
|
||||
gconf_bridge_bind_property_full
|
||||
gconf_bridge_bind_property
|
||||
gconf_bridge_bind_property_delayed
|
||||
gconf_bridge_bind_window
|
||||
gconf_bridge_bind_window_size
|
||||
gconf_bridge_bind_window_pos
|
||||
gconf_bridge_bind_string_list_store
|
||||
gconf_bridge_unbind
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>shell-actions</FILE>
|
||||
<TITLE>Shell Actions</TITLE>
|
||||
|
@ -56,8 +56,7 @@ eutilinclude_HEADERS = \
|
||||
e-util-enums.h \
|
||||
e-util-enumtypes.h \
|
||||
e-unicode.h \
|
||||
e-xml-utils.h \
|
||||
gconf-bridge.h
|
||||
e-xml-utils.h
|
||||
|
||||
libeutil_la_CPPFLAGS = \
|
||||
$(AM_CPPFLAGS) \
|
||||
@ -128,7 +127,6 @@ libeutil_la_SOURCES = \
|
||||
e-util-enumtypes.c \
|
||||
e-util-private.h \
|
||||
e-xml-utils.c \
|
||||
gconf-bridge.c \
|
||||
$(PLATFORM_SOURCES)
|
||||
|
||||
libeutil_la_LDFLAGS = $(NO_UNDEFINED)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,134 +0,0 @@
|
||||
/*
|
||||
* (C) 2005 OpenedHand Ltd.
|
||||
*
|
||||
* Author: Jorn Baayen <jorn@openedhand.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GCONF_BRIDGE_H__
|
||||
#define __GCONF_BRIDGE_H__
|
||||
|
||||
#include <gconf/gconf-client.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
void gconf_bridge_install_default_error_handler (void);
|
||||
|
||||
typedef struct _GConfBridge GConfBridge;
|
||||
|
||||
GConfBridge *gconf_bridge_get (void);
|
||||
|
||||
GConfClient *gconf_bridge_get_client (GConfBridge *bridge);
|
||||
|
||||
guint gconf_bridge_bind_property_full (GConfBridge *bridge,
|
||||
const gchar *key,
|
||||
GObject *object,
|
||||
const gchar *prop,
|
||||
gboolean delayed_sync);
|
||||
|
||||
/**
|
||||
* gconf_bridge_bind_property
|
||||
* @bridge: A #GConfBridge
|
||||
* @key: A GConf key to be bound
|
||||
* @object: A #GObject
|
||||
* @prop: The property of @object to be bound
|
||||
*
|
||||
* Binds @key to @prop without delays, causing them to have the same value at all times. See
|
||||
* #gconf_bridge_bind_property_full for more details.
|
||||
*
|
||||
**/
|
||||
#define gconf_bridge_bind_property(bridge, key, object, prop) \
|
||||
gconf_bridge_bind_property_full ((bridge), (key), \
|
||||
(object), (prop), FALSE)
|
||||
|
||||
/**
|
||||
* gconf_bridge_bind_property_delayed
|
||||
* @bridge: A #GConfBridge
|
||||
* @key: A GConf key to be bound
|
||||
* @object: A #GObject
|
||||
* @prop: The property of @object to be bound
|
||||
*
|
||||
* Binds @key to @prop with a delay, causing them to have the same value at all
|
||||
* times. See #gconf_bridge_bind_property_full for more details.
|
||||
**/
|
||||
#define gconf_bridge_bind_property_delayed(bridge, key, object, prop) \
|
||||
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,
|
||||
gboolean bind_size,
|
||||
gboolean bind_pos);
|
||||
|
||||
/**
|
||||
* gconf_bridge_bind_window_size
|
||||
* @bridge: A #GConfBridge
|
||||
* @key_prefix: The prefix of the GConf keys
|
||||
* @window: A #GtkWindow
|
||||
*
|
||||
* On calling this function @window will be resized to the values specified by
|
||||
* "@key_prefix<!-- -->_width" and "@key_prefix<!-- -->_height". The respective
|
||||
* GConf values will be updated when the window is resized. See
|
||||
* #gconf_bridge_bind_window for more details.
|
||||
**/
|
||||
#define gconf_bridge_bind_window_size(bridge, key_prefix, window) \
|
||||
gconf_bridge_bind_window ((bridge), (key_prefix), (window), TRUE, FALSE)
|
||||
|
||||
/**
|
||||
* gconf_bridge_bind_window_pos
|
||||
* @bridge: A #GConfBridge
|
||||
* @key_prefix: The prefix of the GConf keys
|
||||
* @window: A #GtkWindow
|
||||
*
|
||||
* On calling this function @window will be moved to the values specified by
|
||||
* "@key_prefix<!-- -->_x" and "@key_prefix<!-- -->_y". The respective GConf
|
||||
* values will be updated when the window is moved. See
|
||||
* #gconf_bridge_bind_window for more details.
|
||||
**/
|
||||
#define gconf_bridge_bind_window_pos(bridge, key_prefix, window) \
|
||||
gconf_bridge_bind_window ((bridge), (key_prefix), (window), FALSE, TRUE)
|
||||
|
||||
guint gconf_bridge_bind_string_list_store (GConfBridge *bridge,
|
||||
const gchar *key,
|
||||
GtkListStore *list_store);
|
||||
|
||||
void gconf_bridge_unbind (GConfBridge *bridge,
|
||||
guint binding_id);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GCONF_BRIDGE_H__ */
|
Reference in New Issue
Block a user