aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-ui-utils.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-15 21:43:31 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-15 23:47:25 +0800
commit676e1f544d851935cb2dc7781f4a5ff39c366b2f (patch)
tree74cc72005f0ddfe023bc5ad172d01ec22dde9a4b /libempathy-gtk/empathy-ui-utils.c
parent46f7d3a0152fd23d15c707d851e9b1889fc512f0 (diff)
downloadgsoc2013-empathy-676e1f544d851935cb2dc7781f4a5ff39c366b2f.tar
gsoc2013-empathy-676e1f544d851935cb2dc7781f4a5ff39c366b2f.tar.gz
gsoc2013-empathy-676e1f544d851935cb2dc7781f4a5ff39c366b2f.tar.bz2
gsoc2013-empathy-676e1f544d851935cb2dc7781f4a5ff39c366b2f.tar.lz
gsoc2013-empathy-676e1f544d851935cb2dc7781f4a5ff39c366b2f.tar.xz
gsoc2013-empathy-676e1f544d851935cb2dc7781f4a5ff39c366b2f.tar.zst
gsoc2013-empathy-676e1f544d851935cb2dc7781f4a5ff39c366b2f.zip
factor out empathy_make_color_whiter()
Diffstat (limited to 'libempathy-gtk/empathy-ui-utils.c')
-rw-r--r--libempathy-gtk/empathy-ui-utils.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index 043c03eb3..d7abb9a5e 100644
--- a/libempathy-gtk/empathy-ui-utils.c
+++ b/libempathy-gtk/empathy-ui-utils.c
@@ -1898,3 +1898,13 @@ empathy_receive_file_with_file_chooser (EmpathyFTHandler *handler)
gtk_widget_show (widget);
g_free (title);
}
+
+void
+empathy_make_color_whiter (GdkRGBA *color)
+{
+ const GdkRGBA white = { 1.0, 1.0, 1.0, 1.0 };
+
+ color->red = (color->red + (white).red) / 2;
+ color->green = (color->green + (white).green) / 2;
+ color->blue = (color->blue + (white).blue) / 2;
+}