aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-binding.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2009-02-19 09:36:04 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-02-19 09:36:04 +0800
commitfd564be3203400024147469faaa7de0884861566 (patch)
tree80e69ff89307a7393193520e0f2fe51cdc21540e /e-util/e-binding.h
parent7ed5f59771262651ee8b0d29a123e43a6ac0b6c6 (diff)
downloadgsoc2013-evolution-fd564be3203400024147469faaa7de0884861566.tar
gsoc2013-evolution-fd564be3203400024147469faaa7de0884861566.tar.gz
gsoc2013-evolution-fd564be3203400024147469faaa7de0884861566.tar.bz2
gsoc2013-evolution-fd564be3203400024147469faaa7de0884861566.tar.lz
gsoc2013-evolution-fd564be3203400024147469faaa7de0884861566.tar.xz
gsoc2013-evolution-fd564be3203400024147469faaa7de0884861566.tar.zst
gsoc2013-evolution-fd564be3203400024147469faaa7de0884861566.zip
Clean up the EMFormat stack. Add some GObject properties to bind to.
Add some handy color conversion functions to e-util. svn path=/branches/kill-bonobo/; revision=37290
Diffstat (limited to 'e-util/e-binding.h')
-rw-r--r--e-util/e-binding.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/e-util/e-binding.h b/e-util/e-binding.h
index 2cced75920..676093bfad 100644
--- a/e-util/e-binding.h
+++ b/e-util/e-binding.h
@@ -26,7 +26,7 @@
#ifndef E_BINDING_H
#define E_BINDING_H
-#include <glib-object.h>
+#include <gdk/gdk.h>
G_BEGIN_DECLS
@@ -102,6 +102,17 @@ EMutualBinding *e_mutual_binding_new_with_negation
const gchar *property2);
void e_mutual_binding_unbind (EMutualBinding *binding);
+
+/* Useful transformation functions */
+gboolean e_binding_transform_color_to_string
+ (const GValue *src_value,
+ GValue *dst_value,
+ gpointer user_data);
+gboolean e_binding_transform_string_to_color
+ (const GValue *src_value,
+ GValue *dst_value,
+ gpointer user_data);
+
G_END_DECLS
#endif /* E_BINDING_H */