From 1e663aa13266cad55e5019c03e768a38955166eb Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 13 Oct 2010 23:40:16 -0400 Subject: Replace EBinding with GBinding. GObject now does property bindings itself. Requires GLib >= 2.26. --- e-util/e-util.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'e-util/e-util.h') diff --git a/e-util/e-util.h b/e-util/e-util.h index 71fc12f431..9aa24f3d87 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -142,6 +142,18 @@ void e_util_set_source_combo_box_list (GtkWidget *source_combo_box, const gchar *source_gconf_path); +/* Useful GBinding transformation functions */ +gboolean e_binding_transform_color_to_string + (GBinding *binding, + const GValue *source_value, + GValue *target_value, + gpointer user_data); +gboolean e_binding_transform_string_to_color + (GBinding *binding, + const GValue *source_value, + GValue *target_value, + gpointer user_data); + G_END_DECLS #endif /* E_UTIL_H */ -- cgit