]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-avatar-chooser.c
Make can_satisfy_mime_type_requirements accept NULL out params.
[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                                                         gchar                *data,
60                                                         gsize                 size,
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 && priv->tp_contact_factory == NULL);
228
229         g_object_unref (priv->contact_factory);
230
231         if (priv->avatar != NULL) {
232                 empathy_avatar_unref (priv->avatar);
233         }
234
235         G_OBJECT_CLASS (empathy_avatar_chooser_parent_class)->finalize (object);
236 }
237
238 static void
239 avatar_chooser_tp_cf_ready_cb (EmpathyTpContactFactory *tp_cf,
240                                GParamSpec              *unused,
241                                EmpathyAvatarChooser    *self)
242 {
243         EmpathyAvatarChooserPriv *priv = GET_PRIV (self);
244         gboolean ready;
245
246         /* sanity check that we're listening on the right ETpCF */
247         g_assert (priv->tp_contact_factory == tp_cf);
248
249         ready = empathy_tp_contact_factory_is_ready (tp_cf);
250         gtk_widget_set_sensitive (GTK_WIDGET (self), ready);
251 }
252
253 static void
254 avatar_chooser_set_account (EmpathyAvatarChooser *self,
255                             McAccount            *account)
256 {
257         EmpathyAvatarChooserPriv *priv = GET_PRIV (self);
258
259         if (priv->account != NULL) {
260                 g_object_unref (priv->account);
261                 priv->account = NULL;
262
263                 g_assert (priv->tp_contact_factory != NULL);
264
265                 g_signal_handler_disconnect (priv->tp_contact_factory,
266                         priv->ready_handler_id);
267                 priv->ready_handler_id = 0;
268
269                 g_object_unref (priv->tp_contact_factory);
270                 priv->tp_contact_factory = NULL;
271         }
272
273         if (account != NULL) {
274                 priv->account = g_object_ref (account);
275                 priv->tp_contact_factory = g_object_ref (
276                         empathy_contact_factory_get_tp_factory (
277                                 priv->contact_factory, priv->account));
278
279                 priv->ready_handler_id = g_signal_connect (
280                         priv->tp_contact_factory, "notify::ready",
281                         G_CALLBACK (avatar_chooser_tp_cf_ready_cb), self);
282                 avatar_chooser_tp_cf_ready_cb (priv->tp_contact_factory, NULL,
283                         self);
284         }
285 }
286
287 static gboolean
288 str_in_strv (gchar  *str,
289              gchar **strv)
290 {
291         if (strv == NULL) {
292                 return FALSE;
293         }
294
295         while (*strv != NULL) {
296                 if (g_str_equal (str, *strv)) {
297                         return TRUE;
298                 }
299                 strv++;
300         }
301         return FALSE;
302 }
303
304 /* The caller must free the strings stored in satisfactory_format_name and
305  * satisfactory_mime_type.
306  */
307 static gboolean
308 can_satisfy_mime_type_requirements (gchar **accepted_mime_types,
309                                     gchar **satisfactory_format_name,
310                                     gchar **satisfactory_mime_type)
311 {
312         GSList  *formats;
313         GSList  *l;
314         gchar  **strv;
315         gchar   *name = NULL,
316                 *type = NULL;
317         gboolean done = FALSE;
318
319         if (accepted_mime_types == NULL || *accepted_mime_types == NULL) {
320                 return FALSE;
321         }
322
323         g_assert (satisfactory_format_name != NULL);
324         g_assert (satisfactory_mime_type != NULL);
325
326         formats = gdk_pixbuf_get_formats ();
327
328         for (l = formats; !done && l != NULL; l = l->next) {
329                 GdkPixbufFormat *format = l->data;
330                 gchar **format_mime_types;
331
332                 if (!gdk_pixbuf_format_is_writable (format)) {
333                         continue;
334                 }
335
336                 format_mime_types = gdk_pixbuf_format_get_mime_types (format);
337                 for (strv = format_mime_types; *strv != NULL; strv++) {
338                         if (str_in_strv (*strv, accepted_mime_types)) {
339                                 name = gdk_pixbuf_format_get_name (format);
340                                 type = g_strdup (*strv);
341                                 done = TRUE;
342                                 break;
343                         }
344                 }
345                 g_strfreev (format_mime_types);
346         }
347
348         g_slist_free (formats);
349
350         if (done) {
351                 if (satisfactory_format_name != NULL) {
352                         *satisfactory_format_name = name;
353                 } else {
354                         g_free (name);
355                 }
356                 if (satisfactory_mime_type != NULL) {
357                         *satisfactory_mime_type = type;
358                 } else {
359                         g_free (type);
360                 }
361                 return TRUE;
362         } else {
363                 /* check we're not leaking. */
364                 g_assert (name == NULL && type == NULL);
365                 return FALSE;
366         }
367 }
368
369 static EmpathyAvatar *
370 avatar_chooser_convert (EmpathyAvatarChooser *chooser,
371                         GdkPixbuf            *pixbuf_scaled,
372                         gchar               **mime_types,
373                         gsize                 max_size)
374 {
375         gchar         *format_name = NULL, *new_mime_type = NULL;
376         gchar         *converted_image_data = NULL;
377         gsize          converted_image_size = 0;
378         EmpathyAvatar *converted_avatar = NULL;
379         gboolean       saved;
380         GError        *error = NULL;
381
382         if (!can_satisfy_mime_type_requirements (mime_types, &format_name,
383                                                  &new_mime_type)) {
384                 DEBUG ("Mon dieu! Can't convert to any acceptable format!");
385                 return NULL;
386         }
387
388         saved = gdk_pixbuf_save_to_buffer (pixbuf_scaled, &converted_image_data,
389                 &converted_image_size, format_name, &error, NULL);
390         g_free (format_name);
391
392         if (!saved) {
393                 DEBUG ("Couldn't convert image: %s", error->message);
394                 g_error_free (error);
395
396                 g_free (new_mime_type);
397                 return NULL;
398         }
399
400         /* Takes ownership of new_mime_type */
401         converted_avatar = empathy_avatar_new (converted_image_data,
402                 converted_image_size, new_mime_type, NULL);
403
404         if (max_size > 0 && converted_avatar->len > max_size) {
405                 /* FIXME: We could try converting to a different format; in
406                  *        particular, try converting to jpeg with increasingly
407                  *        high compression (if jpeg is supported). Not sure how
408                  *        much we care.
409                  */
410                 DEBUG ("Converted the image, but the new filesize is too big");
411
412                 empathy_avatar_unref (converted_avatar);
413                 converted_avatar = NULL;
414         }
415
416         return converted_avatar;
417 }
418
419 static EmpathyAvatar *
420 avatar_chooser_maybe_convert_and_scale (EmpathyAvatarChooser *chooser,
421                                         GdkPixbuf            *pixbuf,
422                                         EmpathyAvatar        *avatar)
423 {
424         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
425         EmpathyTpContactFactory  *tp_cf = priv->tp_contact_factory;
426         gint                      max_width = 0, max_height = 0, max_size = 0;
427         gchar                   **mime_types = NULL;
428         gboolean                  needs_conversion = FALSE;
429         GdkPixbuf                *pixbuf_scaled = NULL;
430
431         /* This should only be called if the user is setting a new avatar,
432          * which should only be allowed once the avatar requirements have been
433          * discovered.
434          */
435         g_return_val_if_fail (tp_cf != NULL, NULL);
436         g_return_val_if_fail (empathy_tp_contact_factory_is_ready (tp_cf),
437                 NULL);
438
439         g_object_get (tp_cf,
440                 "avatar-mime-types", &mime_types, /* Needs g_strfreev-ing */
441                 "avatar-max-width", &max_width,
442                 "avatar-max-height", &max_height,
443                 "avatar-max-size", &max_size,
444                 NULL);
445
446         /* If the avatar's not already the right type, it needs converting. */
447         if (!str_in_strv (avatar->format, mime_types)) {
448                 needs_conversion = TRUE;
449         }
450
451         /* If scaling down the pixbuf to fit the dimensions yields a new
452          * pixbuf, then it needed scaling. if it's the same pixbuf, it did not.
453          */
454         pixbuf_scaled = empathy_pixbuf_scale_down_if_necessary (pixbuf,
455                 MIN(max_width, max_height));
456         if (pixbuf_scaled != pixbuf) {
457                 needs_conversion = TRUE;
458         }
459
460         if (max_size > 0 && avatar->len > max_size) {
461                 needs_conversion = TRUE;
462         }
463
464         if (needs_conversion) {
465                 avatar = avatar_chooser_convert (chooser, pixbuf_scaled,
466                         mime_types, max_size);
467         } else {
468                 /* Just return another reference to the avatar passed in. */
469                 avatar = empathy_avatar_ref (avatar);
470         }
471
472         g_object_unref (pixbuf_scaled);
473         g_strfreev (mime_types);
474         return avatar;
475 }
476
477 static void
478 avatar_chooser_clear_image (EmpathyAvatarChooser *chooser)
479 {
480         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
481         GtkWidget *image;
482
483         if (priv->avatar == NULL) {
484                 return;
485         }
486
487         empathy_avatar_unref (priv->avatar);
488         priv->avatar = NULL;
489
490         image = gtk_image_new_from_icon_name ("stock_person", GTK_ICON_SIZE_DIALOG);
491         gtk_button_set_image (GTK_BUTTON (chooser), image);
492         g_signal_emit (chooser, signals[CHANGED], 0);
493 }
494
495 static void
496 avatar_chooser_set_image (EmpathyAvatarChooser *chooser,
497                           gchar                *data,
498                           gsize                 size,
499                           gboolean              set_locally)
500 {
501         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
502
503         GdkPixbuf     *pixbuf, *pixbuf_view;
504         GtkWidget     *image;
505         EmpathyAvatar *avatar = NULL;
506         gchar         *mime_type = NULL;
507
508         if (data == NULL) {
509                 avatar_chooser_clear_image (chooser);
510                 g_free (data);
511                 return;
512         }
513
514         pixbuf = empathy_pixbuf_from_data (data, size, &mime_type);
515         if (pixbuf == NULL) {
516                 g_free (data);
517                 return;
518         }
519
520         /* avatar takes ownership of data and mime_type */
521         avatar = empathy_avatar_new (data, size, mime_type, NULL);
522
523         if (set_locally) {
524                 EmpathyAvatar *conv = avatar_chooser_maybe_convert_and_scale (
525                         chooser, pixbuf, avatar);
526                 empathy_avatar_unref (avatar);
527                 avatar = conv;
528         }
529
530         if (avatar == NULL) {
531                 /* An error occured; don't change the avatar. */
532                 return;
533         }
534
535         if (priv->avatar != NULL) {
536                 empathy_avatar_unref (priv->avatar);
537         }
538         priv->avatar = avatar;
539
540         pixbuf_view = empathy_pixbuf_scale_down_if_necessary (pixbuf, AVATAR_SIZE_VIEW);
541         image = gtk_image_new_from_pixbuf (pixbuf_view);
542
543         gtk_button_set_image (GTK_BUTTON (chooser), image);
544         g_signal_emit (chooser, signals[CHANGED], 0);
545
546         g_object_unref (pixbuf_view);
547         g_object_unref (pixbuf);
548 }
549
550 static void
551 avatar_chooser_set_image_from_file (EmpathyAvatarChooser *chooser,
552                                     const gchar          *filename)
553 {
554         gchar  *image_data = NULL;
555         gsize   image_size = 0;
556         GError *error = NULL;
557
558         if (!g_file_get_contents (filename, &image_data, &image_size, &error)) {
559                 DEBUG ("Failed to load image from '%s': %s", filename,
560                         error ? error->message : "No error given");
561
562                 g_clear_error (&error);
563                 return;
564         }
565
566         avatar_chooser_set_image (chooser, image_data, image_size, TRUE);
567 }
568
569 static gboolean
570 avatar_chooser_drag_motion_cb (GtkWidget          *widget,
571                               GdkDragContext     *context,
572                               gint                x,
573                               gint                y,
574                               guint               time,
575                               EmpathyAvatarChooser *chooser)
576 {
577         EmpathyAvatarChooserPriv *priv;
578         GList                  *p;
579
580         priv = GET_PRIV (chooser);
581
582         for (p = context->targets; p != NULL; p = p->next) {
583                 gchar *possible_type;
584
585                 possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));
586
587                 if (!strcmp (possible_type, URI_LIST_TYPE)) {
588                         g_free (possible_type);
589                         gdk_drag_status (context, GDK_ACTION_COPY, time);
590
591                         return TRUE;
592                 }
593
594                 g_free (possible_type);
595         }
596
597         return FALSE;
598 }
599
600 static void
601 avatar_chooser_drag_leave_cb (GtkWidget          *widget,
602                              GdkDragContext     *context,
603                              guint               time,
604                              EmpathyAvatarChooser *chooser)
605 {
606 }
607
608 static gboolean
609 avatar_chooser_drag_drop_cb (GtkWidget          *widget,
610                             GdkDragContext     *context,
611                             gint                x,
612                             gint                y,
613                             guint               time,
614                             EmpathyAvatarChooser *chooser)
615 {
616         EmpathyAvatarChooserPriv *priv;
617         GList                  *p;
618
619         priv = GET_PRIV (chooser);
620
621         if (context->targets == NULL) {
622                 return FALSE;
623         }
624
625         for (p = context->targets; p != NULL; p = p->next) {
626                 char *possible_type;
627
628                 possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));
629                 if (!strcmp (possible_type, URI_LIST_TYPE)) {
630                         g_free (possible_type);
631                         gtk_drag_get_data (widget, context,
632                                            GDK_POINTER_TO_ATOM (p->data),
633                                            time);
634
635                         return TRUE;
636                 }
637
638                 g_free (possible_type);
639         }
640
641         return FALSE;
642 }
643
644 static void
645 avatar_chooser_drag_data_received_cb (GtkWidget          *widget,
646                                      GdkDragContext     *context,
647                                      gint                x,
648                                      gint                y,
649                                      GtkSelectionData   *selection_data,
650                                      guint               info,
651                                      guint               time,
652                                      EmpathyAvatarChooser *chooser)
653 {
654         gchar    *target_type;
655         gboolean  handled = FALSE;
656
657         target_type = gdk_atom_name (selection_data->target);
658         if (!strcmp (target_type, URI_LIST_TYPE)) {
659                 GFile            *file;
660                 GFileInputStream *input_stream;
661                 gchar            *nl;
662                 gchar            *data = NULL;
663
664                 nl = strstr (selection_data->data, "\r\n");
665                 if (nl) {
666                         gchar *uri;
667
668                         uri = g_strndup (selection_data->data,
669                                          nl - (gchar*) selection_data->data);
670
671                         file = g_file_new_for_uri (uri);
672                         g_free (uri);
673                 } else {
674                         file = g_file_new_for_uri (selection_data->data);
675                 }
676
677                 input_stream = g_file_read (file, NULL, NULL);
678
679                 if (input_stream != NULL) {
680                         GFileInfo *info;
681                         
682                         info = g_file_query_info (file,
683                                                   G_FILE_ATTRIBUTE_STANDARD_SIZE,
684                                                   0, NULL, NULL);
685                         if (info != NULL) {
686                                 goffset size;
687                                 gssize bytes_read;
688                                 
689                                 size = g_file_info_get_size (info);
690                                 data = g_malloc (size);
691
692                                 bytes_read = g_input_stream_read (G_INPUT_STREAM (input_stream),
693                                                                   data, size,
694                                                                   NULL, NULL);
695                                 if (bytes_read != -1) {
696                                         avatar_chooser_set_image (chooser,
697                                                                   data,
698                                                                   (gsize) bytes_read,
699                                                                   TRUE);
700                                         handled = TRUE;
701                                 }
702
703                                 g_free (data);
704                                 g_object_unref (info);
705                         }
706
707                         g_object_unref (input_stream);
708                 }
709                 
710                 g_object_unref (file);
711         }
712
713         gtk_drag_finish (context, handled, FALSE, time);
714 }
715
716 static void
717 avatar_chooser_update_preview_cb (GtkFileChooser       *file_chooser,
718                                   EmpathyAvatarChooser *chooser)
719 {
720         gchar *filename;
721
722         filename = gtk_file_chooser_get_preview_filename (file_chooser);
723
724         if (filename) {
725                 GtkWidget *image;
726                 GdkPixbuf *pixbuf = NULL;
727                 GdkPixbuf *scaled_pixbuf;
728
729                 pixbuf = gdk_pixbuf_new_from_file (filename, NULL);
730
731                 image = gtk_file_chooser_get_preview_widget (file_chooser);
732
733                 if (pixbuf) {
734                         scaled_pixbuf = empathy_pixbuf_scale_down_if_necessary (pixbuf, AVATAR_SIZE_SAVE);
735                         gtk_image_set_from_pixbuf (GTK_IMAGE (image), scaled_pixbuf);
736                         g_object_unref (scaled_pixbuf);
737                         g_object_unref (pixbuf);
738                 } else {
739                         gtk_image_set_from_stock (GTK_IMAGE (image),
740                                                   "gtk-dialog-question",
741                                                   GTK_ICON_SIZE_DIALOG);
742                 }
743         }
744
745         gtk_file_chooser_set_preview_widget_active (file_chooser, TRUE);
746 }
747
748 static void
749 avatar_chooser_response_cb (GtkWidget            *widget,
750                             gint                  response,
751                             EmpathyAvatarChooser *chooser)
752 {
753         EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser);
754
755         if (response == GTK_RESPONSE_CANCEL) {
756                 goto out;
757         }
758
759         /* Check if we went non-ready since displaying the dialog. */
760         if (!empathy_tp_contact_factory_is_ready (priv->tp_contact_factory)) {
761                 DEBUG ("Can't set avatar when contact factory isn't ready.");
762                 goto out;
763         }
764
765         if (response == GTK_RESPONSE_OK) {
766                 gchar *filename;
767                 gchar *path;
768
769                 filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget));
770                 avatar_chooser_set_image_from_file (chooser, filename);
771                 g_free (filename);
772
773                 path = gtk_file_chooser_get_current_folder (GTK_FILE_CHOOSER (widget));
774                 if (path) {
775                         empathy_conf_set_string (empathy_conf_get (),
776                                                  EMPATHY_PREFS_UI_AVATAR_DIRECTORY,
777                                                  path);
778                         g_free (path);
779                 }
780         }
781         else if (response == GTK_RESPONSE_NO) {
782                 /* This corresponds to "No Image", not to "Cancel" */
783                 avatar_chooser_clear_image (chooser);
784         }
785
786 out:
787         gtk_widget_destroy (widget);
788 }
789
790 static void
791 avatar_chooser_clicked_cb (GtkWidget            *button,
792                            EmpathyAvatarChooser *chooser)
793 {
794         GtkFileChooser *chooser_dialog;
795         GtkWidget      *image;
796         gchar          *saved_dir = NULL;
797         const gchar    *default_dir = DEFAULT_DIR;
798         const gchar    *pics_dir;
799         GtkFileFilter  *filter;
800
801         chooser_dialog = GTK_FILE_CHOOSER (
802                 gtk_file_chooser_dialog_new (_("Select Your Avatar Image"),
803                                              empathy_get_toplevel_window (GTK_WIDGET (chooser)),
804                                              GTK_FILE_CHOOSER_ACTION_OPEN,
805                                              _("No Image"),
806                                              GTK_RESPONSE_NO,
807                                              GTK_STOCK_CANCEL,
808                                              GTK_RESPONSE_CANCEL,
809                                              GTK_STOCK_OPEN,
810                                              GTK_RESPONSE_OK,
811                                              NULL));
812
813         /* Get special dirs */
814         empathy_conf_get_string (empathy_conf_get (),
815                                  EMPATHY_PREFS_UI_AVATAR_DIRECTORY,
816                                  &saved_dir);
817         if (saved_dir && !g_file_test (saved_dir, G_FILE_TEST_IS_DIR)) {
818                 g_free (saved_dir);
819                 saved_dir = NULL;
820         }
821         if (!g_file_test (default_dir, G_FILE_TEST_IS_DIR)) {
822                 default_dir = NULL;
823         }
824         pics_dir = g_get_user_special_dir (G_USER_DIRECTORY_PICTURES);
825         if (pics_dir && !g_file_test (pics_dir, G_FILE_TEST_IS_DIR)) {
826                 pics_dir = NULL;
827         }
828
829         /* Set current dir to the last one or to DEFAULT_DIR or to home */
830         if (saved_dir) {
831                 gtk_file_chooser_set_current_folder (chooser_dialog, saved_dir);
832         }
833         else if (pics_dir) {
834                 gtk_file_chooser_set_current_folder (chooser_dialog, pics_dir);
835         }
836         else if (default_dir) {
837                 gtk_file_chooser_set_current_folder (chooser_dialog, default_dir);
838         } else {
839                 gtk_file_chooser_set_current_folder (chooser_dialog, g_get_home_dir ());
840         }
841
842         /* Add shortcuts to special dirs */
843         if (saved_dir) {
844                 gtk_file_chooser_add_shortcut_folder (chooser_dialog, saved_dir, NULL);
845         }
846         else if (pics_dir) {
847                 gtk_file_chooser_add_shortcut_folder (chooser_dialog, pics_dir, NULL);
848         }
849         if (default_dir) {
850                 gtk_file_chooser_add_shortcut_folder (chooser_dialog, default_dir, NULL);
851         }
852
853         /* Setup preview image */
854         image = gtk_image_new ();
855         gtk_file_chooser_set_preview_widget (chooser_dialog, image);
856         gtk_widget_set_size_request (image, AVATAR_SIZE_SAVE, AVATAR_SIZE_SAVE);
857         gtk_widget_show (image);
858         gtk_file_chooser_set_use_preview_label (chooser_dialog, FALSE);
859         g_signal_connect (chooser_dialog, "update-preview",
860                           G_CALLBACK (avatar_chooser_update_preview_cb),
861                           chooser);
862
863         /* Setup filers */
864         filter = gtk_file_filter_new ();
865         gtk_file_filter_set_name (filter, _("Images"));
866         gtk_file_filter_add_pixbuf_formats (filter);
867         gtk_file_chooser_add_filter (chooser_dialog, filter);
868         filter = gtk_file_filter_new ();
869         gtk_file_filter_set_name (filter, _("All Files"));
870         gtk_file_filter_add_pattern(filter, "*");
871         gtk_file_chooser_add_filter (chooser_dialog, filter);
872
873         /* Setup response */
874         gtk_dialog_set_default_response (GTK_DIALOG (chooser_dialog), GTK_RESPONSE_OK);
875         g_signal_connect (chooser_dialog, "response",
876                           G_CALLBACK (avatar_chooser_response_cb),
877                           chooser);
878
879         gtk_widget_show (GTK_WIDGET (chooser_dialog));
880         g_free (saved_dir);
881 }
882
883 GtkWidget *
884 empathy_avatar_chooser_new ()
885 {
886         return g_object_new (EMPATHY_TYPE_AVATAR_CHOOSER, NULL);
887 }
888
889 /* FIXME: when the avatar passed to this function actually can be relied upon to
890  * contain a mime type, we can probably just ref it and store it.
891  */
892 void
893 empathy_avatar_chooser_set (EmpathyAvatarChooser *chooser,
894                             EmpathyAvatar        *avatar)
895 {
896         g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (chooser));
897
898         if (avatar != NULL) {
899                 gchar *data = g_memdup (avatar->data, avatar->len);
900                 avatar_chooser_set_image (chooser, data, avatar->len, FALSE);
901         } else {
902                 avatar_chooser_clear_image (chooser);
903         }
904 }
905
906 void
907 empathy_avatar_chooser_get_image_data (EmpathyAvatarChooser  *chooser,
908                                        const gchar          **data,
909                                        gsize                 *data_size,
910                                        const gchar          **mime_type)
911 {
912         EmpathyAvatarChooserPriv *priv;
913
914         g_return_if_fail (EMPATHY_IS_AVATAR_CHOOSER (chooser));
915
916         priv = GET_PRIV (chooser);
917
918         if (priv->avatar != NULL) {
919                 if (data != NULL) {
920                         *data = priv->avatar->data;
921                 }
922                 if (data_size != NULL) {
923                         *data_size = priv->avatar->len;
924                 }
925                 if (mime_type != NULL) {
926                         *mime_type = priv->avatar->format;
927                 }
928         } else {
929                 if (data != NULL) {
930                         *data = NULL;
931                 }
932                 if (data_size != NULL) {
933                         *data_size = 0;
934                 }
935                 if (mime_type != NULL) {
936                         *mime_type = NULL;
937                 }
938         }
939 }
940