]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-avatar-chooser.c
remove useless callback
[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   /* Takes ownership of new_mime_type and best_image_data */
611   avatar = empathy_avatar_new ((guchar *) best_image_data,
612     best_image_size, new_mime_type, NULL);
613
614   return avatar;
615 }
616
617 static void
618 avatar_chooser_set_image (EmpathyAvatarChooser *self,
619     EmpathyAvatar *avatar,
620     GdkPixbuf *pixbuf,
621     gboolean set_locally)
622 {
623   GdkPixbuf *pixbuf_view;
624   GtkWidget *image;
625
626   g_assert (avatar != NULL);
627   g_assert (pixbuf != NULL);
628
629   if (set_locally)
630     {
631       EmpathyAvatar *conv;
632
633       conv = avatar_chooser_maybe_convert_and_scale (self,
634         pixbuf, avatar);
635       empathy_avatar_unref (avatar);
636
637       if (conv == NULL)
638         /* An error occured; don't change the avatar. */
639         return;
640
641       avatar = conv;
642     }
643
644   tp_clear_pointer (&self->priv->avatar, empathy_avatar_unref);
645   self->priv->avatar = avatar;
646
647   pixbuf_view = empathy_pixbuf_scale_down_if_necessary (pixbuf,
648       AVATAR_SIZE_VIEW);
649   image = gtk_image_new_from_pixbuf (pixbuf_view);
650
651   gtk_button_set_image (GTK_BUTTON (self), image);
652   g_signal_emit (self, signals[CHANGED], 0);
653
654   g_object_unref (pixbuf_view);
655   g_object_unref (pixbuf);
656 }
657
658 static void
659 avatar_chooser_set_image_from_data (EmpathyAvatarChooser *self,
660     gchar *data,
661     gsize size,
662     gboolean set_locally)
663 {
664   GdkPixbuf *pixbuf;
665   EmpathyAvatar *avatar = NULL;
666   gchar *mime_type = NULL;
667
668   if (data == NULL)
669     {
670       avatar_chooser_clear_image (self);
671       return;
672     }
673
674   pixbuf = empathy_pixbuf_from_data_and_mime (data, size, &mime_type);
675   if (pixbuf == NULL)
676     {
677       g_free (data);
678       data = NULL;
679       return;
680     }
681
682   /* avatar takes ownership of data and mime_type */
683   avatar = empathy_avatar_new ((guchar *) data, size, mime_type, NULL);
684
685   avatar_chooser_set_image (self, avatar, pixbuf, set_locally);
686 }
687
688 static void
689 avatar_chooser_drag_data_received_cb (GtkWidget          *widget,
690     GdkDragContext *context,
691     gint x,
692     gint y,
693     GtkSelectionData *selection_data,
694     guint info,
695     guint time_,
696     EmpathyAvatarChooser *self)
697 {
698   gchar *target_type;
699   gboolean handled = FALSE;
700
701   target_type = gdk_atom_name (gtk_selection_data_get_target (selection_data));
702   if (!strcmp (target_type, URI_LIST_TYPE))
703     {
704       GFile *file;
705       gchar *nl;
706       gchar *data = NULL;
707       gsize bytes_read;
708
709       nl = strstr ((gchar *) gtk_selection_data_get_data (selection_data),
710               "\r\n");
711       if (nl != NULL)
712         {
713           gchar *uri;
714
715           uri = g_strndup (
716               (gchar *) gtk_selection_data_get_data (selection_data),
717               nl - (gchar *) gtk_selection_data_get_data (selection_data));
718
719           file = g_file_new_for_uri (uri);
720           g_free (uri);
721         }
722       else
723         {
724           file = g_file_new_for_uri ((gchar *) gtk_selection_data_get_data (
725                 selection_data));
726         }
727
728       handled = g_file_load_contents (file, NULL, &data, &bytes_read,
729               NULL, NULL);
730
731       if (handled)
732         {
733           /* this in turn calls empathy_avatar_new (), which assumes
734            * ownership of data.
735            */
736           avatar_chooser_set_image_from_data (self, data,
737                       bytes_read,
738                       TRUE);
739         }
740
741       g_object_unref (file);
742     }
743
744   gtk_drag_finish (context, handled, FALSE, time_);
745 }
746
747 static void
748 avatar_chooser_update_preview_cb (GtkFileChooser *file_chooser,
749     EmpathyAvatarChooser *self)
750 {
751   gchar *filename;
752
753   filename = gtk_file_chooser_get_preview_filename (file_chooser);
754
755   if (filename != NULL)
756     {
757       GtkWidget *image;
758       GdkPixbuf *pixbuf = NULL;
759       GdkPixbuf *scaled_pixbuf;
760
761       pixbuf = gdk_pixbuf_new_from_file (filename, NULL);
762
763       image = gtk_file_chooser_get_preview_widget (file_chooser);
764
765       if (pixbuf != NULL)
766         {
767           scaled_pixbuf = empathy_pixbuf_scale_down_if_necessary (pixbuf,
768               AVATAR_SIZE_SAVE);
769
770           gtk_image_set_from_pixbuf (GTK_IMAGE (image), scaled_pixbuf);
771           g_object_unref (scaled_pixbuf);
772           g_object_unref (pixbuf);
773         }
774       else
775         {
776           gtk_image_set_from_stock (GTK_IMAGE (image),
777                   "gtk-dialog-question",
778                   GTK_ICON_SIZE_DIALOG);
779         }
780
781       g_free (filename);
782     }
783
784   gtk_file_chooser_set_preview_widget_active (file_chooser, TRUE);
785 }
786
787 static void
788 avatar_chooser_set_image_from_file (EmpathyAvatarChooser *self,
789     const gchar *filename)
790 {
791   gchar *image_data = NULL;
792   gsize  image_size = 0;
793   GError *error = NULL;
794
795   if (!g_file_get_contents (filename, &image_data, &image_size, &error))
796     {
797       DEBUG ("Failed to load image from '%s': %s", filename,
798         error ? error->message : "No error given");
799
800       g_clear_error (&error);
801       return;
802     }
803
804   avatar_chooser_set_image_from_data (self, image_data, image_size, TRUE);
805 }
806
807 #ifdef HAVE_CHEESE
808 static void
809 avatar_chooser_set_avatar_from_pixbuf (EmpathyAvatarChooser *self,
810                GdkPixbuf *pb)
811 {
812   /* dup the string as empathy_avatar_new steals ownership of the it */
813   gchar *mime = g_strdup ("image/png");
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, mime, NULL);
829   avatar_chooser_set_image (self, avatar, pb, TRUE);
830 }
831
832 static gboolean
833 destroy_chooser (GtkWidget *self)
834 {
835   gtk_widget_destroy (self);
836   return FALSE;
837 }
838
839 static void
840 webcam_response_cb (GtkDialog *dialog,
841         int response,
842         EmpathyAvatarChooser *self)
843 {
844   if (response == GTK_RESPONSE_ACCEPT)
845     {
846       GdkPixbuf *pb;
847       CheeseAvatarChooser *cheese_chooser;
848
849       cheese_chooser = CHEESE_AVATAR_CHOOSER (dialog);
850       pb = cheese_avatar_chooser_get_picture (cheese_chooser);
851       avatar_chooser_set_avatar_from_pixbuf (self, pb);
852     }
853
854   if (response != GTK_RESPONSE_DELETE_EVENT &&
855       response != GTK_RESPONSE_NONE)
856     g_idle_add ((GSourceFunc) destroy_chooser, dialog);
857 }
858
859 static void
860 choose_avatar_from_webcam (GtkWidget *widget,
861     EmpathyAvatarChooser *self)
862 {
863   GtkWidget *window;
864
865   window = cheese_avatar_chooser_new ();
866
867   gtk_window_set_transient_for (GTK_WINDOW (window),
868       GTK_WINDOW (empathy_get_toplevel_window (GTK_WIDGET (self))));
869   gtk_window_set_modal (GTK_WINDOW (window), TRUE);
870   g_signal_connect (G_OBJECT (window), "response",
871       G_CALLBACK (webcam_response_cb), self);
872   gtk_widget_show (window);
873 }
874 #endif /* HAVE_CHEESE */
875
876 static void
877 avatar_chooser_response_cb (GtkWidget *widget,
878     gint response,
879     EmpathyAvatarChooser *self)
880 {
881   self->priv->chooser_dialog = NULL;
882
883   if (response == EMPATHY_AVATAR_CHOOSER_RESPONSE_FILE)
884     {
885       gchar *filename;
886       gchar *path;
887
888       filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget));
889       avatar_chooser_set_image_from_file (self, filename);
890       g_free (filename);
891
892       path = gtk_file_chooser_get_current_folder (GTK_FILE_CHOOSER (widget));
893       if (path != NULL)
894         {
895           g_settings_set_string (self->priv->gsettings_ui,
896                      EMPATHY_PREFS_UI_AVATAR_DIRECTORY,
897                      path);
898
899           g_free (path);
900         }
901     }
902   else if (response == EMPATHY_AVATAR_CHOOSER_RESPONSE_NO_IMAGE)
903     {
904       /* This corresponds to "No Image", not to "Cancel" */
905       avatar_chooser_clear_image (self);
906     }
907   #ifdef HAVE_CHEESE
908   else if (response == EMPATHY_AVATAR_CHOOSER_RESPONSE_WEBCAM)
909     {
910       /* This corresponds to "Camera Picture" */
911       choose_avatar_from_webcam (widget, self);
912     }
913   #endif
914
915   gtk_widget_destroy (widget);
916 }
917
918 static void
919 avatar_chooser_clicked_cb (GtkWidget *button,
920     EmpathyAvatarChooser *self)
921 {
922   GtkFileChooser *chooser_dialog;
923   GtkWidget *image;
924   gchar *saved_dir = NULL;
925   const gchar *default_dir = DEFAULT_DIR;
926   const gchar *pics_dir;
927   GtkFileFilter *filter;
928
929   if (self->priv->chooser_dialog != NULL)
930     {
931       gtk_window_present (GTK_WINDOW (self->priv->chooser_dialog));
932       return;
933     }
934
935   self->priv->chooser_dialog = GTK_FILE_CHOOSER (
936       gtk_file_chooser_dialog_new (_("Select Your Avatar Image"),
937         empathy_get_toplevel_window (GTK_WIDGET (self)),
938         GTK_FILE_CHOOSER_ACTION_OPEN,
939         #ifdef HAVE_CHEESE
940         _("Take a picture..."),
941         EMPATHY_AVATAR_CHOOSER_RESPONSE_WEBCAM,
942         #endif
943         _("No Image"),
944         EMPATHY_AVATAR_CHOOSER_RESPONSE_NO_IMAGE,
945         GTK_STOCK_CANCEL,
946         EMPATHY_AVATAR_CHOOSER_RESPONSE_CANCEL,
947         GTK_STOCK_OPEN,
948         EMPATHY_AVATAR_CHOOSER_RESPONSE_FILE,
949         NULL));
950
951   chooser_dialog = self->priv->chooser_dialog;
952   gtk_window_set_destroy_with_parent (GTK_WINDOW (chooser_dialog), TRUE);
953
954   /* Get special dirs */
955   saved_dir = g_settings_get_string (self->priv->gsettings_ui,
956              EMPATHY_PREFS_UI_AVATAR_DIRECTORY);
957
958   if (saved_dir != NULL &&
959       !g_file_test (saved_dir, G_FILE_TEST_IS_DIR))
960     {
961       g_free (saved_dir);
962       saved_dir = NULL;
963     }
964
965   if (!g_file_test (default_dir, G_FILE_TEST_IS_DIR))
966     default_dir = NULL;
967
968   pics_dir = g_get_user_special_dir (G_USER_DIRECTORY_PICTURES);
969   if (pics_dir != NULL && !g_file_test (pics_dir, G_FILE_TEST_IS_DIR))
970     pics_dir = NULL;
971
972   /* Set current dir to the last one or to DEFAULT_DIR or to home */
973   if (saved_dir != NULL)
974     gtk_file_chooser_set_current_folder (chooser_dialog, saved_dir);
975   else if (pics_dir != NULL)
976     gtk_file_chooser_set_current_folder (chooser_dialog, pics_dir);
977   else if (default_dir != NULL)
978     gtk_file_chooser_set_current_folder (chooser_dialog, default_dir);
979   else
980     gtk_file_chooser_set_current_folder (chooser_dialog, g_get_home_dir ());
981
982   /* Add shortcuts to special dirs */
983   if (saved_dir)
984     gtk_file_chooser_add_shortcut_folder (chooser_dialog, saved_dir, NULL);
985   else if (pics_dir)
986     gtk_file_chooser_add_shortcut_folder (chooser_dialog, pics_dir, NULL);
987
988   if (default_dir != NULL)
989     gtk_file_chooser_add_shortcut_folder (chooser_dialog, default_dir, NULL);
990
991   /* Setup preview image */
992   image = gtk_image_new ();
993   gtk_file_chooser_set_preview_widget (chooser_dialog, image);
994   gtk_widget_set_size_request (image, AVATAR_SIZE_SAVE, AVATAR_SIZE_SAVE);
995   gtk_widget_show (image);
996   gtk_file_chooser_set_use_preview_label (chooser_dialog, FALSE);
997   g_signal_connect (chooser_dialog, "update-preview",
998       G_CALLBACK (avatar_chooser_update_preview_cb),
999       self);
1000
1001   /* Setup filers */
1002   filter = gtk_file_filter_new ();
1003   gtk_file_filter_set_name (filter, _("Images"));
1004   gtk_file_filter_add_pixbuf_formats (filter);
1005   gtk_file_chooser_add_filter (chooser_dialog, filter);
1006   filter = gtk_file_filter_new ();
1007   gtk_file_filter_set_name (filter, _("All Files"));
1008   gtk_file_filter_add_pattern (filter, "*");
1009   gtk_file_chooser_add_filter (chooser_dialog, filter);
1010
1011   /* Setup response */
1012   gtk_dialog_set_default_response (GTK_DIALOG (chooser_dialog),
1013       EMPATHY_AVATAR_CHOOSER_RESPONSE_FILE);
1014
1015   g_signal_connect (chooser_dialog, "response",
1016       G_CALLBACK (avatar_chooser_response_cb),
1017       self);
1018
1019   gtk_widget_show (GTK_WIDGET (chooser_dialog));
1020
1021   g_free (saved_dir);
1022 }
1023
1024 static void
1025 empathy_avatar_chooser_init (EmpathyAvatarChooser *self)
1026 {
1027   self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
1028     EMPATHY_TYPE_AVATAR_CHOOSER, EmpathyAvatarChooserPrivate);
1029
1030   gtk_drag_dest_set (GTK_WIDGET (self),
1031       GTK_DEST_DEFAULT_ALL,
1032       drop_types,
1033       G_N_ELEMENTS (drop_types),
1034       GDK_ACTION_COPY);
1035
1036   self->priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
1037
1038   g_signal_connect (self, "drag-motion",
1039       G_CALLBACK (avatar_chooser_drag_motion_cb),
1040       self);
1041   g_signal_connect (self, "drag-drop",
1042       G_CALLBACK (avatar_chooser_drag_drop_cb),
1043       self);
1044   g_signal_connect (self, "drag-data-received",
1045       G_CALLBACK (avatar_chooser_drag_data_received_cb),
1046       self);
1047   g_signal_connect (self, "clicked",
1048       G_CALLBACK (avatar_chooser_clicked_cb),
1049       self);
1050
1051   empathy_avatar_chooser_set (self, NULL);
1052 }
1053
1054 static void
1055 avatar_chooser_set_image_from_avatar (EmpathyAvatarChooser *self,
1056     EmpathyAvatar *avatar,
1057     gboolean set_locally)
1058 {
1059   GdkPixbuf *pixbuf;
1060   gchar *mime_type = NULL;
1061
1062   g_assert (avatar != NULL);
1063
1064   pixbuf = empathy_pixbuf_from_data_and_mime ((gchar *) avatar->data,
1065       avatar->len, &mime_type);
1066
1067   if (pixbuf == NULL)
1068     {
1069       DEBUG ("couldn't make a pixbuf from avatar; giving up");
1070       return;
1071     }
1072
1073   if (avatar->format == NULL)
1074     {
1075       avatar->format = mime_type;
1076     }
1077   else
1078     {
1079       if (strcmp (mime_type, avatar->format))
1080         DEBUG ("avatar->format is %s; gdkpixbuf yields %s!",
1081           avatar->format, mime_type);
1082
1083       g_free (mime_type);
1084     }
1085
1086   empathy_avatar_ref (avatar);
1087
1088   avatar_chooser_set_image (self, avatar, pixbuf, set_locally);
1089 }
1090
1091 /**
1092  * empathy_avatar_chooser_new:
1093  *
1094  * Creates a new #EmpathyAvatarChooser.
1095  *
1096  * Return value: a new #EmpathyAvatarChooser
1097  */
1098 GtkWidget *
1099 empathy_avatar_chooser_new (void)
1100 {
1101   return g_object_new (EMPATHY_TYPE_AVATAR_CHOOSER, NULL);
1102 }
1103
1104 /**
1105  * empathy_avatar_chooser_set:
1106  * @self: an #EmpathyAvatarChooser
1107  * @avatar: a new #EmpathyAvatar
1108  *
1109  * Sets the @self to display the avatar indicated by @avatar.
1110  */
1111 void
1112 empathy_avatar_chooser_set (EmpathyAvatarChooser *self,
1113     EmpathyAvatar *avatar)
1114 {
1115   g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (self));
1116
1117   if (avatar != NULL)
1118     avatar_chooser_set_image_from_avatar (self, avatar, FALSE);
1119   else
1120     avatar_chooser_clear_image (self);
1121 }
1122
1123 /**
1124  * empathy_avatar_chooser_get_image_data:
1125  * @self: an #EmpathyAvatarChooser
1126  * @data: avatar bytes
1127  * @data_size: size of @data
1128  * @mime_type: avatar mime-type
1129  *
1130  * Gets image data about the currently selected avatar.
1131  */
1132 void
1133 empathy_avatar_chooser_get_image_data (EmpathyAvatarChooser  *self,
1134     const gchar **data,
1135     gsize *data_size,
1136     const gchar **mime_type)
1137 {
1138   g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (self));
1139
1140   if (self->priv->avatar != NULL)
1141     {
1142       if (data != NULL)
1143         *data = (gchar *) self->priv->avatar->data;
1144
1145       if (data_size != NULL)
1146         *data_size = self->priv->avatar->len;
1147
1148       if (mime_type != NULL)
1149         *mime_type = self->priv->avatar->format;
1150   }
1151   else
1152     {
1153       if (data != NULL)
1154         *data = NULL;
1155
1156       if (data_size != NULL)
1157         *data_size = 0;
1158
1159       if (mime_type != NULL)
1160         *mime_type = NULL;
1161     }
1162 }
1163
1164 void
1165 empathy_avatar_chooser_set_account (EmpathyAvatarChooser *self,
1166     TpAccount *account)
1167 {
1168   g_return_if_fail (account != NULL);
1169
1170   avatar_chooser_set_connection (self, tp_account_get_connection (account));
1171   g_object_notify (G_OBJECT (self), "connection");
1172 }