]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-avatar-chooser.c
2d1c599431e66807455cb3eed5b7f3605ea7221d
[empathy.git] / libempathy-gtk / empathy-avatar-chooser.c
1 /*
2  * Copyright (C) 2006-2007 Imendio AB.
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public
7  * License as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301  USA
18  *
19  * Authors: Based on Novell's e-image-chooser.
20  *          Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include "config.h"
24
25 #include <string.h>
26
27 #include <glib/gi18n-lib.h>
28 #include <gtk/gtk.h>
29 #include <gio/gio.h>
30
31 #include <libempathy/empathy-gsettings.h>
32 #include <libempathy/empathy-utils.h>
33
34 #include "empathy-avatar-chooser.h"
35 #include "empathy-images.h"
36 #include "empathy-ui-utils.h"
37
38 #ifdef HAVE_CHEESE
39 #include <cheese-avatar-chooser.h>
40 #endif /* HAVE_CHEESE */
41
42
43 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
44 #include <libempathy/empathy-debug.h>
45
46 /**
47  * SECTION:empathy-avatar-chooser
48  * @title: EmpathyAvatarChooser
49  * @short_description: A widget used to change avatar
50  * @include: libempathy-gtk/empathy-avatar-chooser.h
51  *
52  * #EmpathyAvatarChooser is a widget which extends #GtkButton to
53  * provide a way of changing avatar.
54  */
55
56 /**
57  * EmpathyAvatarChooser:
58  * @parent: parent object
59  *
60  * Widget which extends #GtkButton to provide a way of changing avatar.
61  */
62
63 #define AVATAR_SIZE_SAVE 96
64 #define AVATAR_SIZE_VIEW 64
65 #define DEFAULT_DIR DATADIR"/pixmaps/faces"
66
67 #ifdef HAVE_CHEESE
68 /*
69  * A custom GtkResponseType used when the user presses the
70  * "Camera Picture" button. Any positive value would be sufficient.
71  */
72 #define EMPATHY_AVATAR_CHOOSER_RESPONSE_WEBCAM   10
73 #endif
74 #define EMPATHY_AVATAR_CHOOSER_RESPONSE_NO_IMAGE GTK_RESPONSE_NO
75 #define EMPATHY_AVATAR_CHOOSER_RESPONSE_CANCEL   GTK_RESPONSE_CANCEL
76 #define EMPATHY_AVATAR_CHOOSER_RESPONSE_FILE     GTK_RESPONSE_OK
77
78 struct _EmpathyAvatarChooserPrivate
79 {
80   TpConnection *connection;
81   GtkFileChooser *chooser_dialog;
82
83   gulong ready_handler_id;
84
85   EmpathyAvatar *avatar;
86   GSettings *gsettings_ui;
87 };
88
89 enum
90 {
91   CHANGED,
92   LAST_SIGNAL
93 };
94
95 enum
96 {
97   PROP_0,
98   PROP_CONNECTION
99 };
100
101 static guint signals [LAST_SIGNAL];
102
103 G_DEFINE_TYPE (EmpathyAvatarChooser, empathy_avatar_chooser, GTK_TYPE_BUTTON);
104
105 /*
106  * Drag and drop stuff
107  */
108 #define URI_LIST_TYPE "text/uri-list"
109
110 enum DndTargetType
111 {
112   DND_TARGET_TYPE_URI_LIST
113 };
114
115 static const GtkTargetEntry drop_types[] =
116 {
117   { URI_LIST_TYPE, 0, DND_TARGET_TYPE_URI_LIST },
118 };
119
120 static void
121 avatar_chooser_get_property (GObject *object,
122     guint param_id,
123     GValue *value,
124     GParamSpec *pspec)
125 {
126   EmpathyAvatarChooser *self = (EmpathyAvatarChooser *) object;
127
128   switch (param_id)
129     {
130       case PROP_CONNECTION:
131         g_value_set_object (value, self->priv->connection);
132         break;
133       default:
134         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
135         break;
136     }
137 }
138
139 static void
140 avatar_chooser_set_connection (EmpathyAvatarChooser *self,
141     TpConnection *connection)
142 {
143   tp_clear_object (&self->priv->connection);
144
145   if (connection != NULL)
146     {
147       GQuark features[] = { TP_CONNECTION_FEATURE_AVATAR_REQUIREMENTS, 0 };
148       self->priv->connection = g_object_ref (connection);
149       tp_proxy_prepare_async (self->priv->connection, features, NULL, NULL);
150     }
151 }
152
153 static void
154 avatar_chooser_set_property (GObject *object,
155     guint param_id,
156     const GValue *value,
157     GParamSpec *pspec)
158 {
159   EmpathyAvatarChooser *self = EMPATHY_AVATAR_CHOOSER (object);
160
161   switch (param_id)
162     {
163       case PROP_CONNECTION:
164         avatar_chooser_set_connection (self, g_value_get_object (value));
165         break;
166       default:
167         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
168         break;
169     }
170 }
171
172 static void
173 avatar_chooser_dispose (GObject *object)
174 {
175   EmpathyAvatarChooser *self = (EmpathyAvatarChooser *) object;
176
177   tp_clear_object (&self->priv->connection);
178   tp_clear_pointer (&self->priv->avatar, empathy_avatar_unref);
179   tp_clear_object (&self->priv->gsettings_ui);
180
181   G_OBJECT_CLASS (empathy_avatar_chooser_parent_class)->dispose (object);
182 }
183
184 static void
185 empathy_avatar_chooser_class_init (EmpathyAvatarChooserClass *klass)
186 {
187   GObjectClass *object_class = G_OBJECT_CLASS (klass);
188   GParamSpec *param_spec;
189
190   object_class->dispose = avatar_chooser_dispose;
191   object_class->get_property = avatar_chooser_get_property;
192   object_class->set_property = avatar_chooser_set_property;
193
194   /**
195    * EmpathyAvatarChooser::changed:
196    * @self: an #EmpathyAvatarChooser
197    *
198    * Emitted when the chosen avatar has changed.
199    *
200    */
201   signals[CHANGED] =
202     g_signal_new ("changed",
203             G_TYPE_FROM_CLASS (klass),
204             G_SIGNAL_RUN_LAST,
205             0,
206             NULL, NULL,
207             g_cclosure_marshal_VOID__VOID,
208             G_TYPE_NONE, 0);
209
210   /**
211    * EmpathyAvatarChooser:connection:
212    *
213    * The #TpConnection whose avatar should be shown and modified by
214    * the #EmpathyAvatarChooser instance.
215    */
216   param_spec = g_param_spec_object ("connection",
217             "TpConnection",
218             "TpConnection whose avatar should be "
219             "shown and modified by this widget",
220             TP_TYPE_CONNECTION,
221             G_PARAM_READWRITE |
222             G_PARAM_STATIC_STRINGS);
223   g_object_class_install_property (object_class,
224            PROP_CONNECTION,
225            param_spec);
226
227   g_type_class_add_private (object_class, sizeof (EmpathyAvatarChooserPrivate));
228 }
229
230 static gboolean
231 avatar_chooser_drag_motion_cb (GtkWidget *widget,
232     GdkDragContext *context,
233     gint x,
234     gint y,
235     guint time_,
236     EmpathyAvatarChooser *self)
237 {
238   GList *p;
239
240   for (p = gdk_drag_context_list_targets (context); p != NULL;
241        p = p->next)
242     {
243       gchar *possible_type;
244
245       possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));
246
247       if (!strcmp (possible_type, URI_LIST_TYPE))
248         {
249           g_free (possible_type);
250           gdk_drag_status (context, GDK_ACTION_COPY, time_);
251
252           return TRUE;
253         }
254
255       g_free (possible_type);
256     }
257
258   return FALSE;
259 }
260
261 static gboolean
262 avatar_chooser_drag_drop_cb (GtkWidget *widget,
263     GdkDragContext *context,
264     gint x,
265     gint y,
266     guint time_,
267     EmpathyAvatarChooser *self)
268 {
269   GList *p;
270
271   if (gdk_drag_context_list_targets (context) == NULL)
272     return FALSE;
273
274   for (p = gdk_drag_context_list_targets (context);
275        p != NULL; p = p->next)
276     {
277       char *possible_type;
278
279       possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));
280       if (!strcmp (possible_type, URI_LIST_TYPE))
281         {
282           g_free (possible_type);
283           gtk_drag_get_data (widget, context,
284                  GDK_POINTER_TO_ATOM (p->data),
285                  time_);
286
287           return TRUE;
288         }
289
290       g_free (possible_type);
291     }
292
293   return FALSE;
294 }
295
296 static void
297 avatar_chooser_clear_image (EmpathyAvatarChooser *self)
298 {
299   GtkWidget *image;
300
301   tp_clear_pointer (&self->priv->avatar, empathy_avatar_unref);
302
303   image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_AVATAR_DEFAULT,
304     GTK_ICON_SIZE_DIALOG);
305   gtk_button_set_image (GTK_BUTTON (self), image);
306   g_signal_emit (self, signals[CHANGED], 0);
307 }
308
309 static gboolean
310 str_in_strv (const gchar  *str,
311     gchar **strv)
312 {
313   if (strv == NULL)
314     return FALSE;
315
316   while (*strv != NULL)
317     {
318       if (g_str_equal (str, *strv))
319         return TRUE;
320
321       strv++;
322     }
323
324   return FALSE;
325 }
326
327 /* The caller must free the strings stored in satisfactory_format_name and
328  * satisfactory_mime_type.
329  */
330 static gboolean
331 avatar_chooser_need_mime_type_conversion (const gchar *current_mime_type,
332     gchar **accepted_mime_types,
333     gchar **satisfactory_format_name,
334     gchar **satisfactory_mime_type)
335 {
336   gchar *good_mime_types[] = {"image/jpeg", "image/png", NULL};
337   guint i;
338   GSList *formats, *l;
339   gboolean found = FALSE;
340
341   *satisfactory_format_name = NULL;
342   *satisfactory_mime_type = NULL;
343
344   /* If there is no accepted format there is nothing we can do */
345   if (accepted_mime_types == NULL || *accepted_mime_types == NULL)
346     return TRUE;
347
348   /* If the current mime type is good and accepted, don't change it!
349    * jpeg is compress better pictures, but png is better for logos and
350    * could have an alpha layer. */
351   if (str_in_strv (current_mime_type, good_mime_types) &&
352       str_in_strv (current_mime_type, accepted_mime_types))
353     {
354       *satisfactory_mime_type = g_strdup (current_mime_type);
355       *satisfactory_format_name = g_strdup (current_mime_type +
356                     strlen ("image/"));
357       return FALSE;
358     }
359
360   /* The current mime type is either not accepted or not good to use.
361    * Check if one of the good format is supported... */
362   for (i = 0; good_mime_types[i] != NULL;  i++)
363     {
364       if (str_in_strv (good_mime_types[i], accepted_mime_types))
365         {
366           *satisfactory_mime_type = g_strdup (good_mime_types[i]);
367           *satisfactory_format_name = g_strdup (good_mime_types[i] +
368               strlen ("image/"));
369           return TRUE;
370         }
371     }
372
373   /* Pick the first supported format we can write */
374   formats = gdk_pixbuf_get_formats ();
375   for (l = formats; !found && l != NULL; l = l->next)
376     {
377       GdkPixbufFormat *format = l->data;
378       gchar **format_mime_types;
379       gchar **iter;
380
381       if (!gdk_pixbuf_format_is_writable (format))
382         continue;
383
384       format_mime_types = gdk_pixbuf_format_get_mime_types (format);
385       for (iter = format_mime_types; *iter != NULL; iter++)
386         {
387           if (str_in_strv (*iter, accepted_mime_types))
388             {
389               *satisfactory_format_name = gdk_pixbuf_format_get_name (format);
390               *satisfactory_mime_type = g_strdup (*iter);
391               found = TRUE;
392               break;
393             }
394         }
395       g_strfreev (format_mime_types);
396     }
397   g_slist_free (formats);
398
399   return TRUE;
400 }
401
402 static void
403 avatar_chooser_error_show (EmpathyAvatarChooser *self,
404     const gchar *primary_text,
405     const gchar *secondary_text)
406 {
407   GtkWidget *parent;
408   GtkWidget *dialog;
409
410   parent = gtk_widget_get_toplevel (GTK_WIDGET (self));
411   if (!GTK_IS_WINDOW (parent))
412     parent = NULL;
413
414   dialog = gtk_message_dialog_new (parent ? GTK_WINDOW (parent) : NULL,
415       GTK_DIALOG_MODAL,
416       GTK_MESSAGE_WARNING,
417       GTK_BUTTONS_CLOSE,
418       "%s", primary_text);
419
420   if (secondary_text != NULL)
421     {
422       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
423           "%s", secondary_text);
424     }
425
426   g_signal_connect (dialog, "response",
427         G_CALLBACK (gtk_widget_destroy), NULL);
428   gtk_widget_show (dialog);
429
430 }
431
432 static EmpathyAvatar *
433 avatar_chooser_maybe_convert_and_scale (EmpathyAvatarChooser *self,
434     GdkPixbuf *pixbuf,
435     EmpathyAvatar *avatar)
436 {
437   TpAvatarRequirements *req;
438   gboolean needs_conversion = FALSE;
439   guint width, height;
440   gchar *new_format_name = NULL;
441   gchar *new_mime_type = NULL;
442   gdouble min_factor, max_factor;
443   gdouble factor;
444   gchar *best_image_data = NULL;
445   gsize best_image_size = 0;
446   guint count = 0;
447
448   req = tp_connection_get_avatar_requirements (self->priv->connection);
449   if (req == NULL)
450     {
451       DEBUG ("Avatar requirements not ready");
452       return NULL;
453     }
454
455   /* Smaller is the factor, smaller will be the image.
456    * 0 is an empty image, 1 is the full size. */
457   min_factor = 0;
458   max_factor = 1;
459   factor = 1;
460
461   /* Check if we need to convert to another image format */
462   if (avatar_chooser_need_mime_type_conversion (avatar->format,
463         req->supported_mime_types, &new_format_name, &new_mime_type))
464     {
465       DEBUG ("Format conversion needed, we'll use mime type '%s' "
466              "and format name '%s'. Current mime type is '%s'",
467              new_mime_type, new_format_name, avatar->format);
468       needs_conversion = TRUE;
469     }
470
471   /* If there is no format we can use, report error to the user. */
472   if (new_mime_type == NULL || new_format_name == NULL)
473     {
474       avatar_chooser_error_show (self, _("Couldn't convert image"),
475           _("None of the accepted image formats are "
476             "supported on your system"));
477       return NULL;
478     }
479
480   /* If width or height are too big, it needs converting. */
481   width = gdk_pixbuf_get_width (pixbuf);
482   height = gdk_pixbuf_get_height (pixbuf);
483   if ((req->maximum_width > 0 && width > req->maximum_width) ||
484       (req->maximum_height > 0 && height > req->maximum_height))
485     {
486       gdouble h_factor, v_factor;
487
488       h_factor = (gdouble) req->maximum_width / width;
489       v_factor = (gdouble) req->maximum_height / height;
490       factor = max_factor = MIN (h_factor, v_factor);
491
492       DEBUG ("Image dimensions (%dx%d) are too big. Max is %dx%d.",
493           width, height, req->maximum_width, req->maximum_height);
494
495       needs_conversion = TRUE;
496     }
497
498   /* If the data len is too big and no other conversion is needed,
499    * try with a lower factor. */
500   if (req->maximum_bytes > 0 && avatar->len > req->maximum_bytes &&
501       !needs_conversion)
502     {
503       DEBUG ("Image data (%"G_GSIZE_FORMAT" bytes) is too big "
504              "(max is %u bytes), conversion needed.",
505              avatar->len, req->maximum_bytes);
506
507       factor = 0.5;
508       needs_conversion = TRUE;
509     }
510
511   /* If no conversion is needed, return the avatar */
512   if (!needs_conversion)
513     {
514       g_free (new_format_name);
515       g_free (new_mime_type);
516       return empathy_avatar_ref (avatar);
517     }
518
519   do
520     {
521       GdkPixbuf *pixbuf_scaled = NULL;
522       gboolean saved;
523       gint new_width, new_height;
524       gchar *converted_image_data;
525       gsize converted_image_size;
526       GError *error = NULL;
527
528       if (factor != 1)
529         {
530           new_width = width * factor;
531           new_height = height * factor;
532           pixbuf_scaled = gdk_pixbuf_scale_simple (pixbuf,
533                      new_width,
534                      new_height,
535                      GDK_INTERP_HYPER);
536         }
537       else
538         {
539           new_width = width;
540           new_height = height;
541           pixbuf_scaled = g_object_ref (pixbuf);
542         }
543
544       DEBUG ("Trying with factor %f (%dx%d) and format %s...", factor,
545         new_width, new_height, new_format_name);
546
547       saved = gdk_pixbuf_save_to_buffer (pixbuf_scaled,
548           &converted_image_data,
549           &converted_image_size,
550           new_format_name,
551           &error, NULL);
552       g_object_unref (pixbuf_scaled);
553
554       if (!saved)
555         {
556           g_free (new_format_name);
557           g_free (new_mime_type);
558           avatar_chooser_error_show (self,
559             _("Couldn't convert image"),
560             error ? error->message : NULL);
561           g_clear_error (&error);
562           return NULL;
563         }
564
565       DEBUG ("Produced an image data of %"G_GSIZE_FORMAT" bytes.",
566         converted_image_size);
567
568       /* If the new image satisfy the req, keep it as current best */
569       if (req->maximum_bytes == 0 || converted_image_size <= req->maximum_bytes)
570         {
571           g_free (best_image_data);
572
573           best_image_data = converted_image_data;
574           best_image_size = converted_image_size;
575
576           /* If this image is close enough to the optimal size,
577            * stop searching */
578           if (req->maximum_bytes == 0 ||
579               req->maximum_bytes - converted_image_size <= 1024)
580             break;
581         }
582       else
583         {
584           g_free (converted_image_data);
585         }
586
587     /* Make a binary search for the bigest factor that produce
588      * an image data size less than max_size */
589     if (converted_image_size > req->maximum_bytes)
590       max_factor = factor;
591     if (converted_image_size < req->maximum_bytes)
592       min_factor = factor;
593     factor = (min_factor + max_factor)/2;
594
595     if ((int) (width * factor) == new_width ||
596         (int) (height * factor) == new_height)
597       {
598         /* min_factor and max_factor are too close, so the new
599          * factor will produce the same image as previous
600          * iteration. No need to continue, we already found
601          * the optimal size. */
602         break;
603       }
604
605     /* Do 10 iterations in the worst case */
606   } while (++count < 10);
607
608   g_free (new_format_name);
609
610   avatar = empathy_avatar_new ((guchar *) best_image_data,
611     best_image_size, new_mime_type, NULL);
612
613   g_free (best_image_data);
614   g_free (new_mime_type);
615
616   return avatar;
617 }
618
619 static void
620 avatar_chooser_set_image (EmpathyAvatarChooser *self,
621     EmpathyAvatar *avatar,
622     GdkPixbuf *pixbuf,
623     gboolean set_locally)
624 {
625   GdkPixbuf *pixbuf_view;
626   GtkWidget *image;
627
628   g_assert (avatar != NULL);
629   g_assert (pixbuf != NULL);
630
631   if (set_locally)
632     {
633       EmpathyAvatar *conv;
634
635       conv = avatar_chooser_maybe_convert_and_scale (self,
636         pixbuf, avatar);
637       empathy_avatar_unref (avatar);
638
639       if (conv == NULL)
640         /* An error occured; don't change the avatar. */
641         return;
642
643       avatar = conv;
644     }
645
646   tp_clear_pointer (&self->priv->avatar, empathy_avatar_unref);
647   self->priv->avatar = avatar;
648
649   pixbuf_view = empathy_pixbuf_scale_down_if_necessary (pixbuf,
650       AVATAR_SIZE_VIEW);
651   image = gtk_image_new_from_pixbuf (pixbuf_view);
652
653   gtk_button_set_image (GTK_BUTTON (self), image);
654   g_signal_emit (self, signals[CHANGED], 0);
655
656   g_object_unref (pixbuf_view);
657   g_object_unref (pixbuf);
658 }
659
660 /* takes ownership of @data */
661 static void
662 avatar_chooser_set_image_from_data (EmpathyAvatarChooser *self,
663     gchar *data,
664     gsize size,
665     gboolean set_locally)
666 {
667   GdkPixbuf *pixbuf;
668   EmpathyAvatar *avatar = NULL;
669   gchar *mime_type = NULL;
670
671   if (data == NULL)
672     {
673       avatar_chooser_clear_image (self);
674       return;
675     }
676
677   pixbuf = empathy_pixbuf_from_data_and_mime (data, size, &mime_type);
678   if (pixbuf == NULL)
679     {
680       g_free (data);
681       data = NULL;
682       return;
683     }
684
685   avatar = empathy_avatar_new ((guchar *) data, size, mime_type, NULL);
686
687   avatar_chooser_set_image (self, avatar, pixbuf, set_locally);
688
689   g_free (mime_type);
690   g_free (data);
691 }
692
693 static void
694 avatar_chooser_drag_data_received_cb (GtkWidget          *widget,
695     GdkDragContext *context,
696     gint x,
697     gint y,
698     GtkSelectionData *selection_data,
699     guint info,
700     guint time_,
701     EmpathyAvatarChooser *self)
702 {
703   gchar *target_type;
704   gboolean handled = FALSE;
705
706   target_type = gdk_atom_name (gtk_selection_data_get_target (selection_data));
707   if (!strcmp (target_type, URI_LIST_TYPE))
708     {
709       GFile *file;
710       gchar *nl;
711       gchar *data = NULL;
712       gsize bytes_read;
713
714       nl = strstr ((gchar *) gtk_selection_data_get_data (selection_data),
715               "\r\n");
716       if (nl != NULL)
717         {
718           gchar *uri;
719
720           uri = g_strndup (
721               (gchar *) gtk_selection_data_get_data (selection_data),
722               nl - (gchar *) gtk_selection_data_get_data (selection_data));
723
724           file = g_file_new_for_uri (uri);
725           g_free (uri);
726         }
727       else
728         {
729           file = g_file_new_for_uri ((gchar *) gtk_selection_data_get_data (
730                 selection_data));
731         }
732
733       handled = g_file_load_contents (file, NULL, &data, &bytes_read,
734               NULL, NULL);
735
736       if (handled)
737         {
738           /* pass data to the avatar_chooser_set_image_from_data */
739           avatar_chooser_set_image_from_data (self, data, bytes_read, TRUE);
740         }
741
742       g_object_unref (file);
743     }
744
745   gtk_drag_finish (context, handled, FALSE, time_);
746 }
747
748 static void
749 avatar_chooser_update_preview_cb (GtkFileChooser *file_chooser,
750     EmpathyAvatarChooser *self)
751 {
752   gchar *filename;
753
754   filename = gtk_file_chooser_get_preview_filename (file_chooser);
755
756   if (filename != NULL)
757     {
758       GtkWidget *image;
759       GdkPixbuf *pixbuf = NULL;
760       GdkPixbuf *scaled_pixbuf;
761
762       pixbuf = gdk_pixbuf_new_from_file (filename, NULL);
763
764       image = gtk_file_chooser_get_preview_widget (file_chooser);
765
766       if (pixbuf != NULL)
767         {
768           scaled_pixbuf = empathy_pixbuf_scale_down_if_necessary (pixbuf,
769               AVATAR_SIZE_SAVE);
770
771           gtk_image_set_from_pixbuf (GTK_IMAGE (image), scaled_pixbuf);
772           g_object_unref (scaled_pixbuf);
773           g_object_unref (pixbuf);
774         }
775       else
776         {
777           gtk_image_set_from_stock (GTK_IMAGE (image),
778                   "gtk-dialog-question",
779                   GTK_ICON_SIZE_DIALOG);
780         }
781
782       g_free (filename);
783     }
784
785   gtk_file_chooser_set_preview_widget_active (file_chooser, TRUE);
786 }
787
788 static void
789 avatar_chooser_set_image_from_file (EmpathyAvatarChooser *self,
790     const gchar *filename)
791 {
792   gchar *image_data = NULL;
793   gsize  image_size = 0;
794   GError *error = NULL;
795
796   if (!g_file_get_contents (filename, &image_data, &image_size, &error))
797     {
798       DEBUG ("Failed to load image from '%s': %s", filename,
799         error ? error->message : "No error given");
800
801       g_clear_error (&error);
802       return;
803     }
804
805   /* pass image_data to the avatar_chooser_set_image_from_data */
806   avatar_chooser_set_image_from_data (self, image_data, image_size, TRUE);
807 }
808
809 #ifdef HAVE_CHEESE
810 static void
811 avatar_chooser_set_avatar_from_pixbuf (EmpathyAvatarChooser *self,
812                GdkPixbuf *pb)
813 {
814   gsize size;
815   gchar *buf;
816   EmpathyAvatar *avatar = NULL;
817   GError *error = NULL;
818
819   if (!gdk_pixbuf_save_to_buffer (pb, &buf, &size, "png", &error, NULL))
820     {
821       avatar_chooser_error_show (self,
822         _("Couldn't save pixbuf to png"),
823         error ? error->message : NULL);
824       g_clear_error (&error);
825       return;
826     }
827
828   avatar = empathy_avatar_new ((guchar *) buf, size, "image/png", NULL);
829   avatar_chooser_set_image (self, avatar, pb, TRUE);
830
831   g_free (buf);
832 }
833
834 static gboolean
835 destroy_chooser (GtkWidget *self)
836 {
837   gtk_widget_destroy (self);
838   return FALSE;
839 }
840
841 static void
842 webcam_response_cb (GtkDialog *dialog,
843         int response,
844         EmpathyAvatarChooser *self)
845 {
846   if (response == GTK_RESPONSE_ACCEPT)
847     {
848       GdkPixbuf *pb;
849       CheeseAvatarChooser *cheese_chooser;
850
851       cheese_chooser = CHEESE_AVATAR_CHOOSER (dialog);
852       pb = cheese_avatar_chooser_get_picture (cheese_chooser);
853       avatar_chooser_set_avatar_from_pixbuf (self, pb);
854     }
855
856   if (response != GTK_RESPONSE_DELETE_EVENT &&
857       response != GTK_RESPONSE_NONE)
858     g_idle_add ((GSourceFunc) destroy_chooser, dialog);
859 }
860
861 static void
862 choose_avatar_from_webcam (GtkWidget *widget,
863     EmpathyAvatarChooser *self)
864 {
865   GtkWidget *window;
866
867   window = cheese_avatar_chooser_new ();
868
869   gtk_window_set_transient_for (GTK_WINDOW (window),
870       GTK_WINDOW (empathy_get_toplevel_window (GTK_WIDGET (self))));
871   gtk_window_set_modal (GTK_WINDOW (window), TRUE);
872   g_signal_connect (G_OBJECT (window), "response",
873       G_CALLBACK (webcam_response_cb), self);
874   gtk_widget_show (window);
875 }
876 #endif /* HAVE_CHEESE */
877
878 static void
879 avatar_chooser_response_cb (GtkWidget *widget,
880     gint response,
881     EmpathyAvatarChooser *self)
882 {
883   self->priv->chooser_dialog = NULL;
884
885   if (response == EMPATHY_AVATAR_CHOOSER_RESPONSE_FILE)
886     {
887       gchar *filename;
888       gchar *path;
889
890       filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget));
891       avatar_chooser_set_image_from_file (self, filename);
892       g_free (filename);
893
894       path = gtk_file_chooser_get_current_folder (GTK_FILE_CHOOSER (widget));
895       if (path != NULL)
896         {
897           g_settings_set_string (self->priv->gsettings_ui,
898                      EMPATHY_PREFS_UI_AVATAR_DIRECTORY,
899                      path);
900
901           g_free (path);
902         }
903     }
904   else if (response == EMPATHY_AVATAR_CHOOSER_RESPONSE_NO_IMAGE)
905     {
906       /* This corresponds to "No Image", not to "Cancel" */
907       avatar_chooser_clear_image (self);
908     }
909   #ifdef HAVE_CHEESE
910   else if (response == EMPATHY_AVATAR_CHOOSER_RESPONSE_WEBCAM)
911     {
912       /* This corresponds to "Camera Picture" */
913       choose_avatar_from_webcam (widget, self);
914     }
915   #endif
916
917   gtk_widget_destroy (widget);
918 }
919
920 static void
921 avatar_chooser_clicked_cb (GtkWidget *button,
922     EmpathyAvatarChooser *self)
923 {
924   GtkFileChooser *chooser_dialog;
925   GtkWidget *image;
926   gchar *saved_dir = NULL;
927   const gchar *default_dir = DEFAULT_DIR;
928   const gchar *pics_dir;
929   GtkFileFilter *filter;
930
931   if (self->priv->chooser_dialog != NULL)
932     {
933       gtk_window_present (GTK_WINDOW (self->priv->chooser_dialog));
934       return;
935     }
936
937   self->priv->chooser_dialog = GTK_FILE_CHOOSER (
938       gtk_file_chooser_dialog_new (_("Select Your Avatar Image"),
939         empathy_get_toplevel_window (GTK_WIDGET (self)),
940         GTK_FILE_CHOOSER_ACTION_OPEN,
941         #ifdef HAVE_CHEESE
942         _("Take a picture..."),
943         EMPATHY_AVATAR_CHOOSER_RESPONSE_WEBCAM,
944         #endif
945         _("No Image"),
946         EMPATHY_AVATAR_CHOOSER_RESPONSE_NO_IMAGE,
947         GTK_STOCK_CANCEL,
948         EMPATHY_AVATAR_CHOOSER_RESPONSE_CANCEL,
949         GTK_STOCK_OPEN,
950         EMPATHY_AVATAR_CHOOSER_RESPONSE_FILE,
951         NULL));
952
953   chooser_dialog = self->priv->chooser_dialog;
954   gtk_window_set_destroy_with_parent (GTK_WINDOW (chooser_dialog), TRUE);
955
956   /* Get special dirs */
957   saved_dir = g_settings_get_string (self->priv->gsettings_ui,
958              EMPATHY_PREFS_UI_AVATAR_DIRECTORY);
959
960   if (saved_dir != NULL &&
961       !g_file_test (saved_dir, G_FILE_TEST_IS_DIR))
962     {
963       g_free (saved_dir);
964       saved_dir = NULL;
965     }
966
967   if (!g_file_test (default_dir, G_FILE_TEST_IS_DIR))
968     default_dir = NULL;
969
970   pics_dir = g_get_user_special_dir (G_USER_DIRECTORY_PICTURES);
971   if (pics_dir != NULL && !g_file_test (pics_dir, G_FILE_TEST_IS_DIR))
972     pics_dir = NULL;
973
974   /* Set current dir to the last one or to DEFAULT_DIR or to home */
975   if (saved_dir != NULL)
976     gtk_file_chooser_set_current_folder (chooser_dialog, saved_dir);
977   else if (pics_dir != NULL)
978     gtk_file_chooser_set_current_folder (chooser_dialog, pics_dir);
979   else if (default_dir != NULL)
980     gtk_file_chooser_set_current_folder (chooser_dialog, default_dir);
981   else
982     gtk_file_chooser_set_current_folder (chooser_dialog, g_get_home_dir ());
983
984   /* Add shortcuts to special dirs */
985   if (saved_dir)
986     gtk_file_chooser_add_shortcut_folder (chooser_dialog, saved_dir, NULL);
987   else if (pics_dir)
988     gtk_file_chooser_add_shortcut_folder (chooser_dialog, pics_dir, NULL);
989
990   if (default_dir != NULL)
991     gtk_file_chooser_add_shortcut_folder (chooser_dialog, default_dir, NULL);
992
993   /* Setup preview image */
994   image = gtk_image_new ();
995   gtk_file_chooser_set_preview_widget (chooser_dialog, image);
996   gtk_widget_set_size_request (image, AVATAR_SIZE_SAVE, AVATAR_SIZE_SAVE);
997   gtk_widget_show (image);
998   gtk_file_chooser_set_use_preview_label (chooser_dialog, FALSE);
999   g_signal_connect (chooser_dialog, "update-preview",
1000       G_CALLBACK (avatar_chooser_update_preview_cb),
1001       self);
1002
1003   /* Setup filers */
1004   filter = gtk_file_filter_new ();
1005   gtk_file_filter_set_name (filter, _("Images"));
1006   gtk_file_filter_add_pixbuf_formats (filter);
1007   gtk_file_chooser_add_filter (chooser_dialog, filter);
1008   filter = gtk_file_filter_new ();
1009   gtk_file_filter_set_name (filter, _("All Files"));
1010   gtk_file_filter_add_pattern (filter, "*");
1011   gtk_file_chooser_add_filter (chooser_dialog, filter);
1012
1013   /* Setup response */
1014   gtk_dialog_set_default_response (GTK_DIALOG (chooser_dialog),
1015       EMPATHY_AVATAR_CHOOSER_RESPONSE_FILE);
1016
1017   g_signal_connect (chooser_dialog, "response",
1018       G_CALLBACK (avatar_chooser_response_cb),
1019       self);
1020
1021   gtk_widget_show (GTK_WIDGET (chooser_dialog));
1022
1023   g_free (saved_dir);
1024 }
1025
1026 static void
1027 empathy_avatar_chooser_init (EmpathyAvatarChooser *self)
1028 {
1029   self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
1030     EMPATHY_TYPE_AVATAR_CHOOSER, EmpathyAvatarChooserPrivate);
1031
1032   gtk_drag_dest_set (GTK_WIDGET (self),
1033       GTK_DEST_DEFAULT_ALL,
1034       drop_types,
1035       G_N_ELEMENTS (drop_types),
1036       GDK_ACTION_COPY);
1037
1038   self->priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
1039
1040   g_signal_connect (self, "drag-motion",
1041       G_CALLBACK (avatar_chooser_drag_motion_cb),
1042       self);
1043   g_signal_connect (self, "drag-drop",
1044       G_CALLBACK (avatar_chooser_drag_drop_cb),
1045       self);
1046   g_signal_connect (self, "drag-data-received",
1047       G_CALLBACK (avatar_chooser_drag_data_received_cb),
1048       self);
1049   g_signal_connect (self, "clicked",
1050       G_CALLBACK (avatar_chooser_clicked_cb),
1051       self);
1052
1053   empathy_avatar_chooser_set (self, NULL);
1054 }
1055
1056 static void
1057 avatar_chooser_set_image_from_avatar (EmpathyAvatarChooser *self,
1058     EmpathyAvatar *avatar,
1059     gboolean set_locally)
1060 {
1061   GdkPixbuf *pixbuf;
1062   gchar *mime_type = NULL;
1063
1064   g_assert (avatar != NULL);
1065
1066   pixbuf = empathy_pixbuf_from_data_and_mime ((gchar *) avatar->data,
1067       avatar->len, &mime_type);
1068
1069   if (pixbuf == NULL)
1070     {
1071       DEBUG ("couldn't make a pixbuf from avatar; giving up");
1072       return;
1073     }
1074
1075   if (avatar->format == NULL)
1076     {
1077       avatar->format = mime_type;
1078     }
1079   else
1080     {
1081       if (strcmp (mime_type, avatar->format))
1082         DEBUG ("avatar->format is %s; gdkpixbuf yields %s!",
1083           avatar->format, mime_type);
1084
1085       g_free (mime_type);
1086     }
1087
1088   empathy_avatar_ref (avatar);
1089
1090   avatar_chooser_set_image (self, avatar, pixbuf, set_locally);
1091 }
1092
1093 /**
1094  * empathy_avatar_chooser_new:
1095  *
1096  * Creates a new #EmpathyAvatarChooser.
1097  *
1098  * Return value: a new #EmpathyAvatarChooser
1099  */
1100 GtkWidget *
1101 empathy_avatar_chooser_new (void)
1102 {
1103   return g_object_new (EMPATHY_TYPE_AVATAR_CHOOSER, NULL);
1104 }
1105
1106 /**
1107  * empathy_avatar_chooser_set:
1108  * @self: an #EmpathyAvatarChooser
1109  * @avatar: a new #EmpathyAvatar
1110  *
1111  * Sets the @self to display the avatar indicated by @avatar.
1112  */
1113 void
1114 empathy_avatar_chooser_set (EmpathyAvatarChooser *self,
1115     EmpathyAvatar *avatar)
1116 {
1117   g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (self));
1118
1119   if (avatar != NULL)
1120     avatar_chooser_set_image_from_avatar (self, avatar, FALSE);
1121   else
1122     avatar_chooser_clear_image (self);
1123 }
1124
1125 /**
1126  * empathy_avatar_chooser_get_image_data:
1127  * @self: an #EmpathyAvatarChooser
1128  * @data: avatar bytes
1129  * @data_size: size of @data
1130  * @mime_type: avatar mime-type
1131  *
1132  * Gets image data about the currently selected avatar.
1133  */
1134 void
1135 empathy_avatar_chooser_get_image_data (EmpathyAvatarChooser  *self,
1136     const gchar **data,
1137     gsize *data_size,
1138     const gchar **mime_type)
1139 {
1140   g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (self));
1141
1142   if (self->priv->avatar != NULL)
1143     {
1144       if (data != NULL)
1145         *data = (gchar *) self->priv->avatar->data;
1146
1147       if (data_size != NULL)
1148         *data_size = self->priv->avatar->len;
1149
1150       if (mime_type != NULL)
1151         *mime_type = self->priv->avatar->format;
1152   }
1153   else
1154     {
1155       if (data != NULL)
1156         *data = NULL;
1157
1158       if (data_size != NULL)
1159         *data_size = 0;
1160
1161       if (mime_type != NULL)
1162         *mime_type = NULL;
1163     }
1164 }
1165
1166 void
1167 empathy_avatar_chooser_set_account (EmpathyAvatarChooser *self,
1168     TpAccount *account)
1169 {
1170   g_return_if_fail (account != NULL);
1171
1172   avatar_chooser_set_connection (self, tp_account_get_connection (account));
1173   g_object_notify (G_OBJECT (self), "connection");
1174 }