]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-avatar-chooser.c
Add empathy_pixbuf_from_data_and_mime instead of breaking API.
[empathy.git] / libempathy-gtk / empathy-avatar-chooser.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2006-2007 Imendio AB.
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of version 2 of the GNU General Public
8  * License as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors: Based on Novell's e-image-chooser.
21  *          Xavier Claessens <xclaesse@gmail.com>
22  */
23
24 #include "config.h"
25
26 #include <string.h>
27
28 #include <glib/gi18n.h>
29 #include <gtk/gtk.h>
30 #include <gio/gio.h>
31
32 #include <libempathy/empathy-utils.h>
33 #include "empathy-avatar-chooser.h"
34 #include "empathy-conf.h"
35 #include "empathy-ui-utils.h"
36
37 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
38 #include <libempathy/empathy-debug.h>
39
40 #define AVATAR_SIZE_SAVE 96
41 #define AVATAR_SIZE_VIEW 64
42 #define DEFAULT_DIR DATADIR"/pixmaps/faces"
43
44 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyAvatarChooser)
45 typedef struct {
46         EmpathyContactFactory   *contact_factory;
47         McAccount               *account;
48         EmpathyTpContactFactory *tp_contact_factory;
49
50         gulong ready_handler_id;
51
52         EmpathyAvatar *avatar;
53 } EmpathyAvatarChooserPriv;
54
55 static void       avatar_chooser_finalize              (GObject              *object);
56 static void       avatar_chooser_set_account           (EmpathyAvatarChooser *self,
57                                                         McAccount            *account);
58 static void       avatar_chooser_set_image             (EmpathyAvatarChooser *chooser,
59                                                         EmpathyAvatar        *avatar,
60                                                         GdkPixbuf            *pixbuf,
61                                                         gboolean              set_locally);
62 static gboolean   avatar_chooser_drag_motion_cb        (GtkWidget            *widget,
63                                                         GdkDragContext       *context,
64                                                         gint                  x,
65                                                         gint                  y,
66                                                         guint                 time,
67                                                         EmpathyAvatarChooser *chooser);
68 static void       avatar_chooser_drag_leave_cb         (GtkWidget            *widget,
69                                                         GdkDragContext       *context,
70                                                         guint                 time,
71                                                         EmpathyAvatarChooser *chooser);
72 static gboolean   avatar_chooser_drag_drop_cb          (GtkWidget            *widget,
73                                                         GdkDragContext       *context,
74                                                         gint                  x,
75                                                         gint                  y,
76                                                         guint                 time,
77                                                         EmpathyAvatarChooser *chooser);
78 static void       avatar_chooser_drag_data_received_cb (GtkWidget            *widget,
79                                                         GdkDragContext       *context,
80                                                         gint                  x,
81                                                         gint                  y,
82                                                         GtkSelectionData     *selection_data,
83                                                         guint                 info,
84                                                         guint                 time,
85                                                         EmpathyAvatarChooser *chooser);
86 static void       avatar_chooser_clicked_cb            (GtkWidget            *button,
87                                                         EmpathyAvatarChooser *chooser);
88
89 enum {
90         CHANGED,
91         LAST_SIGNAL
92 };
93
94 enum {
95         PROP_0,
96         PROP_ACCOUNT
97 };
98
99 static guint signals [LAST_SIGNAL];
100
101 G_DEFINE_TYPE (EmpathyAvatarChooser, empathy_avatar_chooser, GTK_TYPE_BUTTON);
102
103 /*
104  * Drag and drop stuff
105  */
106 #define URI_LIST_TYPE "text/uri-list"
107
108 enum DndTargetType {
109         DND_TARGET_TYPE_URI_LIST
110 };
111
112 static const GtkTargetEntry drop_types[] = {
113         { URI_LIST_TYPE, 0, DND_TARGET_TYPE_URI_LIST },
114 };
115
116 static void
117 avatar_chooser_get_property (GObject    *object,
118                              guint       param_id,
119                              GValue     *value,
120                              GParamSpec *pspec)
121 {
122         EmpathyAvatarChooserPriv *priv = GET_PRIV (object);
123
124         switch (param_id) {
125         case PROP_ACCOUNT:
126                 g_value_set_object (value, priv->account);
127                 break;
128         default:
129                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
130                 break;
131         }
132 }
133
134 static void
135 avatar_chooser_set_property (GObject      *object,
136                              guint         param_id,
137                              const GValue *value,
138                              GParamSpec   *pspec)
139 {
140         EmpathyAvatarChooser *self = EMPATHY_AVATAR_CHOOSER (object);
141
142         switch (param_id) {
143         case PROP_ACCOUNT:
144                 avatar_chooser_set_account (self, g_value_get_object (value));
145                 break;
146         default:
147                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
148                 break;
149         }
150 }
151
152 static void
153 empathy_avatar_chooser_class_init (EmpathyAvatarChooserClass *klass)
154 {
155         GObjectClass *object_class = G_OBJECT_CLASS (klass);
156         GParamSpec *param_spec;
157
158         object_class->finalize = avatar_chooser_finalize;
159         object_class->get_property = avatar_chooser_get_property;
160         object_class->set_property = avatar_chooser_set_property;
161
162         signals[CHANGED] =
163                 g_signal_new ("changed",
164                               G_TYPE_FROM_CLASS (klass),
165                               G_SIGNAL_RUN_LAST,
166                               0,
167                               NULL, NULL,
168                               g_cclosure_marshal_VOID__VOID,
169                               G_TYPE_NONE, 0);
170
171         param_spec = g_param_spec_object ("account",
172                                           "McAccount",
173                                           "McAccount whose avatar should be "
174                                           "shown and modified by this widget",
175                                           MC_TYPE_ACCOUNT,
176                                           G_PARAM_READWRITE |
177                                           G_PARAM_STATIC_STRINGS);
178         g_object_class_install_property (object_class,
179                                          PROP_ACCOUNT,
180                                          param_spec);
181
182         g_type_class_add_private (object_class, sizeof (EmpathyAvatarChooserPriv));
183 }
184
185 static void
186 empathy_avatar_chooser_init (EmpathyAvatarChooser *chooser)
187 {
188         EmpathyAvatarChooserPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (chooser,
189                 EMPATHY_TYPE_AVATAR_CHOOSER, EmpathyAvatarChooserPriv);
190
191         chooser->priv = priv;
192         gtk_drag_dest_set (GTK_WIDGET (chooser),
193                            GTK_DEST_DEFAULT_ALL,
194                            drop_types,
195                            G_N_ELEMENTS (drop_types),
196                            GDK_ACTION_COPY);
197
198         g_signal_connect (chooser, "drag-motion",
199                           G_CALLBACK (avatar_chooser_drag_motion_cb),
200                           chooser);
201         g_signal_connect (chooser, "drag-leave",
202                           G_CALLBACK (avatar_chooser_drag_leave_cb),
203                           chooser);
204         g_signal_connect (chooser, "drag-drop",
205                           G_CALLBACK (avatar_chooser_drag_drop_cb),
206                           chooser);
207         g_signal_connect (chooser, "drag-data-received",
208                           G_CALLBACK (avatar_chooser_drag_data_received_cb),
209                           chooser);
210         g_signal_connect (chooser, "clicked",
211                           G_CALLBACK (avatar_chooser_clicked_cb),
212                           chooser);
213
214         priv->contact_factory = empathy_contact_factory_new ();
215
216         empathy_avatar_chooser_set (chooser, NULL);
217 }
218
219 static void
220 avatar_chooser_finalize (GObject *object)
221 {
222         EmpathyAvatarChooserPriv *priv;
223
224         priv = GET_PRIV (object);
225
226         avatar_chooser_set_account (EMPATHY_AVATAR_CHOOSER (object), NULL);
227         g_assert (priv->account == NULL);
228         g_assert (priv->tp_contact_factory == NULL);
229
230         g_object_unref (priv->contact_factory);
231
232         if (priv->avatar != NULL) {
233                 empathy_avatar_unref (priv->avatar);
234         }
235
236         G_OBJECT_CLASS (empathy_avatar_chooser_parent_class)->finalize (object);
237 }
238
239 static void
240 avatar_chooser_tp_cf_ready_cb (EmpathyTpContactFactory *tp_cf,
241                                GParamSpec              *unused,
242                                EmpathyAvatarChooser    *self)
243 {
244         EmpathyAvatarChooserPriv *priv = GET_PRIV (self);
245         gboolean ready;
246
247         /* sanity check that we're listening on the right ETpCF */
248         g_assert (priv->tp_contact_factory == tp_cf);
249
250         ready = empathy_tp_contact_factory_is_ready (tp_cf);
251         gtk_widget_set_sensitive (GTK_WIDGET (self), ready);
252 }
253
254 static void
255 avatar_chooser_set_account (EmpathyAvatarChooser *self,
256                             McAccount            *account)
257 {
258         EmpathyAvatarChooserPriv *priv = GET_PRIV (self);
259
260         if (priv->account != NULL) {
261                 g_object_unref (priv->account);
262                 priv->account = NULL;
263
264                 g_assert (priv->tp_contact_factory != NULL);
265
266                 g_signal_handler_disconnect (priv->tp_contact_factory,
267                         priv->ready_handler_id);
268                 priv->ready_handler_id = 0;
269
270                 g_object_unref (priv->tp_contact_factory);
271                 priv->tp_contact_factory = NULL;
272         }
273
274         if (account != NULL) {
275                 priv->account = g_object_ref (account);
276                 priv->tp_contact_factory = g_object_ref (
277                         empathy_contact_factory_get_tp_factory (
278                                 priv->contact_factory, priv->account));
279
280                 priv->ready_handler_id = g_signal_connect (
281                         priv->tp_contact_factory, "notify::ready",
282                         G_CALLBACK (avatar_chooser_tp_cf_ready_cb), self);
283                 avatar_chooser_tp_cf_ready_cb (priv->tp_contact_factory, NULL,
284                         self);
285         }
286 }
287
288 static gboolean
289 str_in_strv (gchar  *str,
290              gchar **strv)
291 {
292         if (strv == NULL) {
293                 return FALSE;
294         }
295
296         while (*strv != NULL) {
297                 if (g_str_equal (str, *strv)) {
298                         return TRUE;
299                 }
300                 strv++;
301         }
302         return FALSE;
303 }
304
305 /* The caller must free the strings stored in satisfactory_format_name and
306  * satisfactory_mime_type.
307  */
308 static gboolean
309 can_satisfy_mime_type_requirements (gchar **accepted_mime_types,
310                                     gchar **satisfactory_format_name,
311                                     gchar **satisfactory_mime_type)
312 {
313         gchar   *name = NULL,
314                 *type = NULL;
315         gboolean done = FALSE;
316
317         if (accepted_mime_types == NULL || *accepted_mime_types == NULL) {
318                 return FALSE;
319         }
320
321         g_assert (satisfactory_format_name != NULL);
322         g_assert (satisfactory_mime_type != NULL);
323
324         /* Special-case png and jpeg to avoid accidentally saving to something
325          * uncompressed like bmp. This assumes that we can write image/png and
326          * image/jpeg; if this isn't true then something's really wrong with
327          * GdkPixbuf.
328          */
329         if (str_in_strv ("image/png", accepted_mime_types)) {
330                 name = g_strdup ("png");
331                 type = g_strdup ("image/png");
332                 done = TRUE;
333         } else if (str_in_strv ("image/jpeg", accepted_mime_types)) {
334                 name = g_strdup ("jpeg");
335                 type = g_strdup ("image/jpeg");
336                 done = TRUE;
337         } else {
338                 GSList  *formats = gdk_pixbuf_get_formats ();
339                 GSList  *l;
340                 gchar  **strv;
341
342                 for (l = formats; !done && l != NULL; l = l->next) {
343                         GdkPixbufFormat *format = l->data;
344                         gchar **format_mime_types;
345
346                         if (!gdk_pixbuf_format_is_writable (format)) {
347                                 continue;
348                         }
349
350                         format_mime_types = gdk_pixbuf_format_get_mime_types (format);
351                         for (strv = format_mime_types; *strv != NULL; strv++) {
352                                 if (str_in_strv (*strv, accepted_mime_types)) {
353                                         name = gdk_pixbuf_format_get_name (format);
354                                         type = g_strdup (*strv);
355                                         done = TRUE;
356                                         break;
357                                 }
358                         }
359                         g_strfreev (format_mime_types);
360                 }
361
362                 g_slist_free (formats);
363         }
364
365         if (done) {
366                 *satisfactory_format_name = name;
367                 *satisfactory_mime_type = type;
368                 return TRUE;
369         } else {
370                 /* check we're not leaking. */
371                 g_assert (name == NULL);
372                 g_assert (type == NULL);
373                 return FALSE;
374         }
375 }
376
377 static EmpathyAvatar *
378 avatar_chooser_convert (EmpathyAvatarChooser *chooser,
379                         GdkPixbuf            *pixbuf_scaled,
380                         gchar               **mime_types,
381                         gsize                 max_size)
382 {
383         gchar         *format_name = NULL, *new_mime_type = NULL;
384         gchar         *converted_image_data = NULL;
385         gsize          converted_image_size = 0;
386         EmpathyAvatar *converted_avatar = NULL;
387         gboolean       saved;
388         GError        *error = NULL;
389
390         if (!can_satisfy_mime_type_requirements (mime_types, &format_name,
391                                                  &new_mime_type)) {
392                 DEBUG ("Mon dieu! Can't convert to any acceptable format!");
393                 return NULL;
394         }
395
396         saved = gdk_pixbuf_save_to_buffer (pixbuf_scaled, &converted_image_data,
397                 &converted_image_size, format_name, &error, NULL);
398         g_free (format_name);
399
400         if (!saved) {
401                 DEBUG ("Couldn't convert image: %s", error->message);
402                 g_error_free (error);
403
404                 g_free (new_mime_type);
405                 return NULL;
406         }
407
408         /* Takes ownership of new_mime_type */
409         converted_avatar = empathy_avatar_new (converted_image_data,
410                 converted_image_size, new_mime_type, NULL);
411
412         if (max_size > 0 && converted_avatar->len > max_size) {
413                 /* FIXME: We could try converting to a different format; in
414                  *        particular, try converting to jpeg with increasingly
415                  *        high compression (if jpeg is supported). Not sure how
416                  *        much we care.
417                  */
418                 DEBUG ("Converted the image, but the new filesize is too big");
419
420                 empathy_avatar_unref (converted_avatar);
421                 converted_avatar = NULL;
422         }
423
424         return converted_avatar;
425 }
426
427 static EmpathyAvatar *
428 avatar_chooser_maybe_convert_and_scale (EmpathyAvatarChooser *chooser,
429                                         GdkPixbuf            *pixbuf,
430                                         EmpathyAvatar        *avatar)
431 {
432         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
433         EmpathyTpContactFactory  *tp_cf = priv->tp_contact_factory;
434         gint                      max_width = 0, max_height = 0, max_size = 0;
435         gchar                   **mime_types = NULL;
436         gboolean                  needs_conversion = FALSE;
437         GdkPixbuf                *pixbuf_scaled = NULL;
438
439         /* This should only be called if the user is setting a new avatar,
440          * which should only be allowed once the avatar requirements have been
441          * discovered.
442          */
443         g_return_val_if_fail (tp_cf != NULL, NULL);
444         g_return_val_if_fail (empathy_tp_contact_factory_is_ready (tp_cf),
445                 NULL);
446
447         g_object_get (tp_cf,
448                 "avatar-mime-types", &mime_types, /* Needs g_strfreev-ing */
449                 "avatar-max-width", &max_width,
450                 "avatar-max-height", &max_height,
451                 "avatar-max-size", &max_size,
452                 NULL);
453
454         /* If the avatar's not already the right type, it needs converting. */
455         if (!str_in_strv (avatar->format, mime_types)) {
456                 needs_conversion = TRUE;
457         }
458
459         /* If _scale_down_if_necessary yields a new pixbuf, then it needed
460          * scaling.  If it's the same pixbuf, it did not, and did no extra work
461          * beyond checking the dimensions.  Hence, we call it even if
462          * needs_conversion is already TRUE, rather than duplicating the
463          * dimension checking code here, as it's no more expensive than
464          * checking the dimensions first in the case where no scaling is
465          * necessary.
466          */
467         pixbuf_scaled = empathy_pixbuf_scale_down_if_necessary (pixbuf,
468                 MIN(max_width, max_height));
469         if (pixbuf_scaled != pixbuf) {
470                 needs_conversion = TRUE;
471         }
472
473         if (max_size > 0 && avatar->len > max_size) {
474                 needs_conversion = TRUE;
475         }
476
477         if (needs_conversion) {
478                 avatar = avatar_chooser_convert (chooser, pixbuf_scaled,
479                         mime_types, max_size);
480         } else {
481                 /* Just return another reference to the avatar passed in. */
482                 avatar = empathy_avatar_ref (avatar);
483         }
484
485         g_object_unref (pixbuf_scaled);
486         g_strfreev (mime_types);
487         return avatar;
488 }
489
490 static void
491 avatar_chooser_clear_image (EmpathyAvatarChooser *chooser)
492 {
493         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
494         GtkWidget *image;
495
496         if (priv->avatar == NULL) {
497                 return;
498         }
499
500         empathy_avatar_unref (priv->avatar);
501         priv->avatar = NULL;
502
503         image = gtk_image_new_from_icon_name ("stock_person", GTK_ICON_SIZE_DIALOG);
504         gtk_button_set_image (GTK_BUTTON (chooser), image);
505         g_signal_emit (chooser, signals[CHANGED], 0);
506 }
507
508 static void
509 avatar_chooser_set_image_from_data (EmpathyAvatarChooser *chooser,
510                                     gchar                *data,
511                                     gsize                 size,
512                                     gboolean              set_locally)
513 {
514         GdkPixbuf     *pixbuf;
515         EmpathyAvatar *avatar = NULL;
516         gchar         *mime_type = NULL;
517
518         if (data == NULL) {
519                 avatar_chooser_clear_image (chooser);
520                 g_free (data);
521                 return;
522         }
523
524         pixbuf = empathy_pixbuf_from_data_and_mime (data, size, &mime_type);
525         if (pixbuf == NULL) {
526                 g_free (data);
527                 return;
528         }
529
530         /* avatar takes ownership of data and mime_type */
531         avatar = empathy_avatar_new (data, size, mime_type, NULL);
532
533         avatar_chooser_set_image (chooser, avatar, pixbuf, set_locally);
534 }
535
536 static void
537 avatar_chooser_set_image_from_avatar (EmpathyAvatarChooser *chooser,
538                                       EmpathyAvatar        *avatar,
539                                       gboolean              set_locally)
540 {
541         GdkPixbuf *pixbuf;
542         gchar     *mime_type = NULL;
543
544         g_assert (avatar != NULL);
545
546         pixbuf = empathy_pixbuf_from_data_and_mime (avatar->data,
547                                                     avatar->len,
548                                                     &mime_type);
549         if (pixbuf == NULL) {
550                 DEBUG ("couldn't make a pixbuf from avatar; giving up");
551                 return;
552         }
553
554         if (avatar->format == NULL) {
555                 avatar->format = mime_type;
556         } else {
557                 if (strcmp (mime_type, avatar->format)) {
558                         DEBUG ("avatar->format is %s; gdkpixbuf yields %s!",
559                                 avatar->format, mime_type);
560                 }
561                 g_free (mime_type);
562         }
563
564         empathy_avatar_ref (avatar);
565
566         avatar_chooser_set_image (chooser, avatar, pixbuf, set_locally);
567 }
568
569 static void
570 avatar_chooser_set_image (EmpathyAvatarChooser *chooser,
571                           EmpathyAvatar        *avatar,
572                           GdkPixbuf            *pixbuf,
573                           gboolean              set_locally)
574 {
575         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
576         GdkPixbuf                *pixbuf_view;
577         GtkWidget                *image;
578
579         g_assert (avatar != NULL);
580         g_assert (pixbuf != NULL);
581
582         if (set_locally) {
583                 EmpathyAvatar *conv = avatar_chooser_maybe_convert_and_scale (
584                         chooser, pixbuf, avatar);
585                 empathy_avatar_unref (avatar);
586
587                 if (conv == NULL) {
588                         /* An error occured; don't change the avatar. */
589                         return;
590                 }
591
592                 avatar = conv;
593         }
594
595         if (priv->avatar != NULL) {
596                 empathy_avatar_unref (priv->avatar);
597         }
598         priv->avatar = avatar;
599
600         pixbuf_view = empathy_pixbuf_scale_down_if_necessary (pixbuf, AVATAR_SIZE_VIEW);
601         image = gtk_image_new_from_pixbuf (pixbuf_view);
602
603         gtk_button_set_image (GTK_BUTTON (chooser), image);
604         g_signal_emit (chooser, signals[CHANGED], 0);
605
606         g_object_unref (pixbuf_view);
607         g_object_unref (pixbuf);
608 }
609
610 static void
611 avatar_chooser_set_image_from_file (EmpathyAvatarChooser *chooser,
612                                     const gchar          *filename)
613 {
614         gchar  *image_data = NULL;
615         gsize   image_size = 0;
616         GError *error = NULL;
617
618         if (!g_file_get_contents (filename, &image_data, &image_size, &error)) {
619                 DEBUG ("Failed to load image from '%s': %s", filename,
620                         error ? error->message : "No error given");
621
622                 g_clear_error (&error);
623                 return;
624         }
625
626         avatar_chooser_set_image_from_data (chooser, image_data, image_size, TRUE);
627 }
628
629 static gboolean
630 avatar_chooser_drag_motion_cb (GtkWidget          *widget,
631                               GdkDragContext     *context,
632                               gint                x,
633                               gint                y,
634                               guint               time,
635                               EmpathyAvatarChooser *chooser)
636 {
637         EmpathyAvatarChooserPriv *priv;
638         GList                  *p;
639
640         priv = GET_PRIV (chooser);
641
642         for (p = context->targets; p != NULL; p = p->next) {
643                 gchar *possible_type;
644
645                 possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));
646
647                 if (!strcmp (possible_type, URI_LIST_TYPE)) {
648                         g_free (possible_type);
649                         gdk_drag_status (context, GDK_ACTION_COPY, time);
650
651                         return TRUE;
652                 }
653
654                 g_free (possible_type);
655         }
656
657         return FALSE;
658 }
659
660 static void
661 avatar_chooser_drag_leave_cb (GtkWidget          *widget,
662                              GdkDragContext     *context,
663                              guint               time,
664                              EmpathyAvatarChooser *chooser)
665 {
666 }
667
668 static gboolean
669 avatar_chooser_drag_drop_cb (GtkWidget          *widget,
670                             GdkDragContext     *context,
671                             gint                x,
672                             gint                y,
673                             guint               time,
674                             EmpathyAvatarChooser *chooser)
675 {
676         EmpathyAvatarChooserPriv *priv;
677         GList                  *p;
678
679         priv = GET_PRIV (chooser);
680
681         if (context->targets == NULL) {
682                 return FALSE;
683         }
684
685         for (p = context->targets; p != NULL; p = p->next) {
686                 char *possible_type;
687
688                 possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));
689                 if (!strcmp (possible_type, URI_LIST_TYPE)) {
690                         g_free (possible_type);
691                         gtk_drag_get_data (widget, context,
692                                            GDK_POINTER_TO_ATOM (p->data),
693                                            time);
694
695                         return TRUE;
696                 }
697
698                 g_free (possible_type);
699         }
700
701         return FALSE;
702 }
703
704 static void
705 avatar_chooser_drag_data_received_cb (GtkWidget          *widget,
706                                      GdkDragContext     *context,
707                                      gint                x,
708                                      gint                y,
709                                      GtkSelectionData   *selection_data,
710                                      guint               info,
711                                      guint               time,
712                                      EmpathyAvatarChooser *chooser)
713 {
714         gchar    *target_type;
715         gboolean  handled = FALSE;
716
717         target_type = gdk_atom_name (selection_data->target);
718         if (!strcmp (target_type, URI_LIST_TYPE)) {
719                 GFile            *file;
720                 GFileInputStream *input_stream;
721                 gchar            *nl;
722                 gchar            *data = NULL;
723
724                 nl = strstr (selection_data->data, "\r\n");
725                 if (nl) {
726                         gchar *uri;
727
728                         uri = g_strndup (selection_data->data,
729                                          nl - (gchar*) selection_data->data);
730
731                         file = g_file_new_for_uri (uri);
732                         g_free (uri);
733                 } else {
734                         file = g_file_new_for_uri (selection_data->data);
735                 }
736
737                 input_stream = g_file_read (file, NULL, NULL);
738
739                 if (input_stream != NULL) {
740                         GFileInfo *info;
741                         
742                         info = g_file_query_info (file,
743                                                   G_FILE_ATTRIBUTE_STANDARD_SIZE,
744                                                   0, NULL, NULL);
745                         if (info != NULL) {
746                                 goffset size;
747                                 gssize bytes_read;
748                                 
749                                 size = g_file_info_get_size (info);
750                                 data = g_malloc (size);
751
752                                 bytes_read = g_input_stream_read (G_INPUT_STREAM (input_stream),
753                                                                   data, size,
754                                                                   NULL, NULL);
755                                 if (bytes_read != -1) {
756                                         avatar_chooser_set_image_from_data (
757                                                 chooser, data,
758                                                 (gsize) bytes_read,
759                                                 TRUE);
760                                         handled = TRUE;
761                                 }
762
763                                 g_free (data);
764                                 g_object_unref (info);
765                         }
766
767                         g_object_unref (input_stream);
768                 }
769                 
770                 g_object_unref (file);
771         }
772
773         gtk_drag_finish (context, handled, FALSE, time);
774 }
775
776 static void
777 avatar_chooser_update_preview_cb (GtkFileChooser       *file_chooser,
778                                   EmpathyAvatarChooser *chooser)
779 {
780         gchar *filename;
781
782         filename = gtk_file_chooser_get_preview_filename (file_chooser);
783
784         if (filename) {
785                 GtkWidget *image;
786                 GdkPixbuf *pixbuf = NULL;
787                 GdkPixbuf *scaled_pixbuf;
788
789                 pixbuf = gdk_pixbuf_new_from_file (filename, NULL);
790
791                 image = gtk_file_chooser_get_preview_widget (file_chooser);
792
793                 if (pixbuf) {
794                         scaled_pixbuf = empathy_pixbuf_scale_down_if_necessary (pixbuf, AVATAR_SIZE_SAVE);
795                         gtk_image_set_from_pixbuf (GTK_IMAGE (image), scaled_pixbuf);
796                         g_object_unref (scaled_pixbuf);
797                         g_object_unref (pixbuf);
798                 } else {
799                         gtk_image_set_from_stock (GTK_IMAGE (image),
800                                                   "gtk-dialog-question",
801                                                   GTK_ICON_SIZE_DIALOG);
802                 }
803         }
804
805         gtk_file_chooser_set_preview_widget_active (file_chooser, TRUE);
806 }
807
808 static void
809 avatar_chooser_response_cb (GtkWidget            *widget,
810                             gint                  response,
811                             EmpathyAvatarChooser *chooser)
812 {
813         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
814
815         if (response == GTK_RESPONSE_CANCEL) {
816                 goto out;
817         }
818
819         /* Check if we went non-ready since displaying the dialog. */
820         if (!empathy_tp_contact_factory_is_ready (priv->tp_contact_factory)) {
821                 DEBUG ("Can't set avatar when contact factory isn't ready.");
822                 goto out;
823         }
824
825         if (response == GTK_RESPONSE_OK) {
826                 gchar *filename;
827                 gchar *path;
828
829                 filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget));
830                 avatar_chooser_set_image_from_file (chooser, filename);
831                 g_free (filename);
832
833                 path = gtk_file_chooser_get_current_folder (GTK_FILE_CHOOSER (widget));
834                 if (path) {
835                         empathy_conf_set_string (empathy_conf_get (),
836                                                  EMPATHY_PREFS_UI_AVATAR_DIRECTORY,
837                                                  path);
838                         g_free (path);
839                 }
840         }
841         else if (response == GTK_RESPONSE_NO) {
842                 /* This corresponds to "No Image", not to "Cancel" */
843                 avatar_chooser_clear_image (chooser);
844         }
845
846 out:
847         gtk_widget_destroy (widget);
848 }
849
850 static void
851 avatar_chooser_clicked_cb (GtkWidget            *button,
852                            EmpathyAvatarChooser *chooser)
853 {
854         GtkFileChooser *chooser_dialog;
855         GtkWidget      *image;
856         gchar          *saved_dir = NULL;
857         const gchar    *default_dir = DEFAULT_DIR;
858         const gchar    *pics_dir;
859         GtkFileFilter  *filter;
860
861         chooser_dialog = GTK_FILE_CHOOSER (
862                 gtk_file_chooser_dialog_new (_("Select Your Avatar Image"),
863                                              empathy_get_toplevel_window (GTK_WIDGET (chooser)),
864                                              GTK_FILE_CHOOSER_ACTION_OPEN,
865                                              _("No Image"),
866                                              GTK_RESPONSE_NO,
867                                              GTK_STOCK_CANCEL,
868                                              GTK_RESPONSE_CANCEL,
869                                              GTK_STOCK_OPEN,
870                                              GTK_RESPONSE_OK,
871                                              NULL));
872
873         /* Get special dirs */
874         empathy_conf_get_string (empathy_conf_get (),
875                                  EMPATHY_PREFS_UI_AVATAR_DIRECTORY,
876                                  &saved_dir);
877         if (saved_dir && !g_file_test (saved_dir, G_FILE_TEST_IS_DIR)) {
878                 g_free (saved_dir);
879                 saved_dir = NULL;
880         }
881         if (!g_file_test (default_dir, G_FILE_TEST_IS_DIR)) {
882                 default_dir = NULL;
883         }
884         pics_dir = g_get_user_special_dir (G_USER_DIRECTORY_PICTURES);
885         if (pics_dir && !g_file_test (pics_dir, G_FILE_TEST_IS_DIR)) {
886                 pics_dir = NULL;
887         }
888
889         /* Set current dir to the last one or to DEFAULT_DIR or to home */
890         if (saved_dir) {
891                 gtk_file_chooser_set_current_folder (chooser_dialog, saved_dir);
892         }
893         else if (pics_dir) {
894                 gtk_file_chooser_set_current_folder (chooser_dialog, pics_dir);
895         }
896         else if (default_dir) {
897                 gtk_file_chooser_set_current_folder (chooser_dialog, default_dir);
898         } else {
899                 gtk_file_chooser_set_current_folder (chooser_dialog, g_get_home_dir ());
900         }
901
902         /* Add shortcuts to special dirs */
903         if (saved_dir) {
904                 gtk_file_chooser_add_shortcut_folder (chooser_dialog, saved_dir, NULL);
905         }
906         else if (pics_dir) {
907                 gtk_file_chooser_add_shortcut_folder (chooser_dialog, pics_dir, NULL);
908         }
909         if (default_dir) {
910                 gtk_file_chooser_add_shortcut_folder (chooser_dialog, default_dir, NULL);
911         }
912
913         /* Setup preview image */
914         image = gtk_image_new ();
915         gtk_file_chooser_set_preview_widget (chooser_dialog, image);
916         gtk_widget_set_size_request (image, AVATAR_SIZE_SAVE, AVATAR_SIZE_SAVE);
917         gtk_widget_show (image);
918         gtk_file_chooser_set_use_preview_label (chooser_dialog, FALSE);
919         g_signal_connect (chooser_dialog, "update-preview",
920                           G_CALLBACK (avatar_chooser_update_preview_cb),
921                           chooser);
922
923         /* Setup filers */
924         filter = gtk_file_filter_new ();
925         gtk_file_filter_set_name (filter, _("Images"));
926         gtk_file_filter_add_pixbuf_formats (filter);
927         gtk_file_chooser_add_filter (chooser_dialog, filter);
928         filter = gtk_file_filter_new ();
929         gtk_file_filter_set_name (filter, _("All Files"));
930         gtk_file_filter_add_pattern(filter, "*");
931         gtk_file_chooser_add_filter (chooser_dialog, filter);
932
933         /* Setup response */
934         gtk_dialog_set_default_response (GTK_DIALOG (chooser_dialog), GTK_RESPONSE_OK);
935         g_signal_connect (chooser_dialog, "response",
936                           G_CALLBACK (avatar_chooser_response_cb),
937                           chooser);
938
939         gtk_widget_show (GTK_WIDGET (chooser_dialog));
940         g_free (saved_dir);
941 }
942
943 GtkWidget *
944 empathy_avatar_chooser_new ()
945 {
946         return g_object_new (EMPATHY_TYPE_AVATAR_CHOOSER, NULL);
947 }
948
949 void
950 empathy_avatar_chooser_set (EmpathyAvatarChooser *chooser,
951                             EmpathyAvatar        *avatar)
952 {
953         g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (chooser));
954
955         if (avatar != NULL) {
956                 avatar_chooser_set_image_from_avatar (chooser, avatar, FALSE);
957         } else {
958                 avatar_chooser_clear_image (chooser);
959         }
960 }
961
962 void
963 empathy_avatar_chooser_get_image_data (EmpathyAvatarChooser  *chooser,
964                                        const gchar          **data,
965                                        gsize                 *data_size,
966                                        const gchar          **mime_type)
967 {
968         EmpathyAvatarChooserPriv *priv;
969
970         g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (chooser));
971
972         priv = GET_PRIV (chooser);
973
974         if (priv->avatar != NULL) {
975                 if (data != NULL) {
976                         *data = priv->avatar->data;
977                 }
978                 if (data_size != NULL) {
979                         *data_size = priv->avatar->len;
980                 }
981                 if (mime_type != NULL) {
982                         *mime_type = priv->avatar->format;
983                 }
984         } else {
985                 if (data != NULL) {
986                         *data = NULL;
987                 }
988                 if (data_size != NULL) {
989                         *data_size = 0;
990                 }
991                 if (mime_type != NULL) {
992                         *mime_type = NULL;
993                 }
994         }
995 }
996