]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-widget.c
Merge branch 'folks-async-and-prepare'
[empathy.git] / libempathy-gtk / empathy-contact-widget.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2009 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library 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  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include <config.h>
23
24 #include <string.h>
25 #include <stdlib.h>
26
27 #include <gtk/gtk.h>
28 #include <glib/gi18n-lib.h>
29
30 #if HAVE_LIBCHAMPLAIN
31 #include <champlain/champlain.h>
32 #include <champlain-gtk/champlain-gtk.h>
33 #endif
34
35 #include <telepathy-glib/account.h>
36 #include <telepathy-glib/util.h>
37 #include <telepathy-glib/interfaces.h>
38
39 #include <libempathy/empathy-tp-contact-factory.h>
40 #include <libempathy/empathy-contact-manager.h>
41 #include <libempathy/empathy-contact-list.h>
42 #include <libempathy/empathy-location.h>
43 #include <libempathy/empathy-time.h>
44 #include <libempathy/empathy-utils.h>
45
46 #include "empathy-contact-widget.h"
47 #include "empathy-account-chooser.h"
48 #include "empathy-avatar-chooser.h"
49 #include "empathy-avatar-image.h"
50 #include "empathy-ui-utils.h"
51 #include "empathy-string-parser.h"
52 #include "empathy-kludge-label.h"
53
54 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
55 #include <libempathy/empathy-debug.h>
56
57 /**
58  * SECTION:empathy-contact-widget
59  * @title:EmpathyContactWidget
60  * @short_description: A widget used to display and edit details about a contact
61  * @include: libempathy-empathy-contact-widget.h
62  *
63  * #EmpathyContactWidget is a widget which displays appropriate widgets
64  * with details about a contact, also allowing changing these details,
65  * if desired.
66  */
67
68 /**
69  * EmpathyContactWidget:
70  * @parent: parent object
71  *
72  * Widget which displays appropriate widgets with details about a contact,
73  * also allowing changing these details, if desired.
74  */
75
76 /* Delay before updating the widget when the id entry changed (seconds) */
77 #define ID_CHANGED_TIMEOUT 1
78
79 typedef struct
80 {
81   EmpathyContactManager *manager;
82   EmpathyContact *contact;
83   EmpathyContactWidgetFlags flags;
84   guint widget_id_timeout;
85   gulong fav_sig_id;
86
87   GtkWidget *vbox_contact_widget;
88
89   /* Contact */
90   GtkWidget *hbox_contact;
91   GtkWidget *widget_avatar;
92   GtkWidget *widget_account;
93   GtkWidget *image_account;
94   GtkWidget *label_account;
95   GtkWidget *widget_id;
96   GtkWidget *widget_alias;
97   GtkWidget *label_alias;
98   GtkWidget *hbox_presence;
99   GtkWidget *image_state;
100   GtkWidget *label_status;
101   GtkWidget *table_contact;
102   GtkWidget *vbox_avatar;
103   GtkWidget *favourite_checkbox;
104
105   /* Location */
106   GtkWidget *vbox_location;
107   GtkWidget *subvbox_location;
108   GtkWidget *table_location;
109   GtkWidget *label_location;
110 #if HAVE_LIBCHAMPLAIN
111   GtkWidget *viewport_map;
112   GtkWidget *map_view_embed;
113   ChamplainView *map_view;
114 #endif
115
116   /* Groups */
117   GtkWidget *vbox_groups;
118   GtkWidget *entry_group;
119   GtkWidget *button_group;
120   GtkWidget *treeview_groups;
121
122   /* Details */
123   GtkWidget *vbox_details;
124   GtkWidget *table_details;
125   GtkWidget *hbox_details_requested;
126   GtkWidget *spinner_details;
127   GList *details_to_set;
128   GCancellable *details_cancellable;
129
130   /* Client */
131   GtkWidget *vbox_client;
132   GtkWidget *table_client;
133   GtkWidget *hbox_client_requested;
134 } EmpathyContactWidget;
135
136 typedef struct
137 {
138   EmpathyContactWidget *information;
139   const gchar *name;
140   gboolean found;
141   GtkTreeIter found_iter;
142 } FindName;
143
144 enum
145 {
146   COL_NAME,
147   COL_ENABLED,
148   COL_EDITABLE,
149   COL_COUNT
150 };
151
152 static void
153 contact_widget_save (EmpathyContactWidget *information)
154 {
155   TpConnection *connection;
156   GList *l, *next;
157
158   connection = empathy_contact_get_connection (information->contact);
159
160   /* Remove empty fields */
161   for (l = information->details_to_set; l != NULL; l = next)
162     {
163       TpContactInfoField *field = l->data;
164
165       next = l->next;
166       if (field->field_value == NULL || EMP_STR_EMPTY (field->field_value[0]))
167         {
168           DEBUG ("Drop empty field: %s", field->field_name);
169           tp_contact_info_field_free (field);
170           information->details_to_set =
171               g_list_delete_link (information->details_to_set, l);
172         }
173     }
174
175   if (information->details_to_set != NULL)
176     {
177       tp_connection_set_contact_info_async (connection,
178           information->details_to_set, NULL, NULL);
179       tp_contact_info_list_free (information->details_to_set);
180       information->details_to_set = NULL;
181     }
182 }
183
184 static void
185 contact_widget_details_setup (EmpathyContactWidget *information)
186 {
187   gtk_widget_hide (information->vbox_details);
188
189   information->spinner_details = gtk_spinner_new ();
190   gtk_box_pack_end (GTK_BOX (information->hbox_details_requested),
191       information->spinner_details, TRUE, TRUE, 0);
192   gtk_widget_show (information->spinner_details);
193 }
194
195 static void
196 contact_widget_details_changed_cb (GtkEntry *entry,
197     TpContactInfoField *field)
198 {
199   const gchar *strv[] = { NULL, NULL };
200
201   strv[0] = gtk_entry_get_text (entry);
202
203   if (field->field_value != NULL)
204     g_strfreev (field->field_value);
205   field->field_value = g_strdupv ((GStrv) strv);
206 }
207
208 static void contact_widget_details_notify_cb (EmpathyContactWidget *information);
209
210 typedef struct
211 {
212   const gchar *field_name;
213   const gchar *title;
214   gboolean linkify;
215 } InfoFieldData;
216
217 static InfoFieldData info_field_datas[] =
218 {
219   { "fn",    N_("Full name:"),      FALSE },
220   { "tel",   N_("Phone number:"),   FALSE },
221   { "email", N_("E-mail address:"), TRUE },
222   { "url",   N_("Website:"),        TRUE },
223   { "bday",  N_("Birthday:"),       FALSE },
224   { NULL, NULL }
225 };
226
227 static InfoFieldData *
228 find_info_field_data (const gchar *field_name)
229 {
230   guint i;
231
232   for (i = 0; info_field_datas[i].field_name != NULL; i++)
233     {
234       if (!tp_strdiff (info_field_datas[i].field_name, field_name))
235         return info_field_datas + i;
236     }
237   return NULL;
238 }
239
240 static gint
241 contact_info_field_name_cmp (const gchar *name1,
242     const gchar *name2)
243 {
244   guint i;
245
246   if (!tp_strdiff (name1, name2))
247     return 0;
248
249   /* We use the order of info_field_datas */
250   for (i = 0; info_field_datas[i].field_name != NULL; i++)
251     {
252       if (!tp_strdiff (info_field_datas[i].field_name, name1))
253         return -1;
254       if (!tp_strdiff (info_field_datas[i].field_name, name2))
255         return +1;
256     }
257
258   return g_strcmp0 (name1, name2);
259 }
260
261 static gint
262 contact_info_field_cmp (TpContactInfoField *field1,
263     TpContactInfoField *field2)
264 {
265   return contact_info_field_name_cmp (field1->field_name, field2->field_name);
266 }
267
268 static gint
269 contact_info_field_spec_cmp (TpContactInfoFieldSpec *spec1,
270     TpContactInfoFieldSpec *spec2)
271 {
272   return contact_info_field_name_cmp (spec1->name, spec2->name);
273 }
274
275 static guint
276 contact_widget_details_update_edit (EmpathyContactWidget *information)
277 {
278   TpContact *contact;
279   TpConnection *connection;
280   GList *specs, *l;
281   guint n_rows = 0;
282
283   g_assert (information->details_to_set == NULL);
284
285   contact = empathy_contact_get_tp_contact (information->contact);
286   connection = tp_contact_get_connection (contact);
287
288   specs = tp_connection_get_contact_info_supported_fields (connection);
289   specs = g_list_sort (specs, (GCompareFunc) contact_info_field_spec_cmp);
290   for (l = specs; l != NULL; l = l->next)
291     {
292       TpContactInfoFieldSpec *spec = l->data;
293       TpContactInfoField *field;
294       InfoFieldData *field_data;
295       GList *info, *ll;
296       GStrv value = NULL;
297       GtkWidget *w;
298
299       field_data = find_info_field_data (spec->name);
300       if (field_data == NULL)
301         {
302           DEBUG ("Unhandled ContactInfo field spec: %s", spec->name);
303           continue;
304         }
305
306       /* Search initial value */
307       info = tp_contact_get_contact_info (contact);
308       for (ll = info; ll != NULL; ll = ll->next)
309         {
310           field = ll->data;
311           if (!tp_strdiff (field->field_name, spec->name))
312             {
313               value = field->field_value;
314               break;
315             }
316         }
317
318       field = tp_contact_info_field_new (spec->name, spec->parameters, value);
319       information->details_to_set = g_list_prepend (information->details_to_set,
320           field);
321
322       /* Add Title */
323       w = gtk_label_new (_(field_data->title));
324       gtk_table_attach (GTK_TABLE (information->table_details),
325           w, 0, 1, n_rows, n_rows + 1, GTK_FILL, 0, 0, 0);
326       gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5);
327       gtk_widget_show (w);
328
329       /* Add Value */
330       w = gtk_entry_new ();
331       gtk_entry_set_text (GTK_ENTRY (w),
332           field->field_value[0] ? field->field_value[0] : "");
333       gtk_table_attach_defaults (GTK_TABLE (information->table_details),
334           w, 1, 2, n_rows, n_rows + 1);
335       gtk_widget_show (w);
336
337       g_signal_connect (w, "changed",
338         G_CALLBACK (contact_widget_details_changed_cb), field);
339
340       n_rows++;
341     }
342   g_list_free (specs);
343
344   return n_rows;
345 }
346
347 static guint
348 contact_widget_details_update_show (EmpathyContactWidget *information)
349 {
350   TpContact *contact;
351   GList *info, *l;
352   guint n_rows = 0;
353
354   contact = empathy_contact_get_tp_contact (information->contact);
355   info = tp_contact_get_contact_info (contact);
356   info = g_list_sort (info, (GCompareFunc) contact_info_field_cmp);
357   for (l = info; l != NULL; l = l->next)
358     {
359       TpContactInfoField *field = l->data;
360       InfoFieldData *field_data;
361       const gchar *value;
362       GtkWidget *w;
363
364       if (field->field_value == NULL || field->field_value[0] == NULL)
365         continue;
366
367       value = field->field_value[0];
368
369       field_data = find_info_field_data (field->field_name);
370       if (field_data == NULL)
371         {
372           DEBUG ("Unhandled ContactInfo field: %s", field->field_name);
373           continue;
374         }
375
376       /* Add Title */
377       w = gtk_label_new (_(field_data->title));
378       gtk_table_attach (GTK_TABLE (information->table_details),
379           w, 0, 1, n_rows, n_rows + 1, GTK_FILL, 0, 0, 0);
380       gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5);
381       gtk_widget_show (w);
382
383       /* Add Value */
384       w = gtk_label_new (value);
385       if (field_data->linkify)
386         {
387           gchar *markup;
388
389           markup = empathy_add_link_markup (value);
390           gtk_label_set_markup (GTK_LABEL (w), markup);
391           g_free (markup);
392         }
393
394       if ((information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) == 0)
395         gtk_label_set_selectable (GTK_LABEL (w), TRUE);
396
397       gtk_table_attach_defaults (GTK_TABLE (information->table_details),
398           w, 1, 2, n_rows, n_rows + 1);
399       gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5);
400       gtk_widget_show (w);
401
402       n_rows++;
403     }
404   g_list_free (info);
405
406   return n_rows;
407 }
408
409 static void
410 contact_widget_details_notify_cb (EmpathyContactWidget *information)
411 {
412   guint n_rows;
413
414   gtk_container_foreach (GTK_CONTAINER (information->table_details),
415       (GtkCallback) gtk_widget_destroy, NULL);
416
417   if ((information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) != 0)
418     n_rows = contact_widget_details_update_edit (information);
419   else
420     n_rows = contact_widget_details_update_show (information);
421
422   if (n_rows > 0)
423     {
424       gtk_widget_show (information->vbox_details);
425       gtk_widget_show (information->table_details);
426     }
427   else
428     {
429       gtk_widget_hide (information->vbox_details);
430     }
431
432   gtk_widget_hide (information->hbox_details_requested);
433   gtk_spinner_stop (GTK_SPINNER (information->spinner_details));
434 }
435
436 static void
437 contact_widget_details_request_cb (GObject *object,
438     GAsyncResult *res,
439     gpointer user_data)
440 {
441   TpContact *contact = TP_CONTACT (object);
442   EmpathyContactWidget *information = user_data;
443   GError *error = NULL;
444
445   if (!tp_contact_request_contact_info_finish (contact, res, &error))
446     {
447       /* If the request got cancelled it could mean the contact widget is
448        * destroyed, so we should not dereference information */
449       if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
450         {
451           g_clear_error (&error);
452           return;
453         }
454
455       gtk_widget_hide (information->vbox_details);
456       g_clear_error (&error);
457     }
458   else
459     {
460       contact_widget_details_notify_cb (information);
461     }
462
463   /* If we are going to edit ContactInfo, we don't want live updates */
464   if ((information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) == 0)
465     {
466       g_signal_connect_swapped (contact, "notify::contact-info",
467           G_CALLBACK (contact_widget_details_notify_cb), information);
468     }
469
470   g_object_unref (information->details_cancellable);
471   information->details_cancellable = NULL;
472 }
473
474 static void
475 contact_widget_details_feature_prepared_cb (GObject *object,
476     GAsyncResult *res,
477     gpointer user_data)
478 {
479   TpConnection *connection = TP_CONNECTION (object);
480   EmpathyContactWidget *information = user_data;
481   TpContact *contact;
482   TpContactInfoFlags flags;
483
484   if (!tp_proxy_prepare_finish (connection, res, NULL))
485     {
486       gtk_widget_hide (information->vbox_details);
487       return;
488     }
489
490   /* If we want to edit info, but connection does not support that, stop */
491   flags = tp_connection_get_contact_info_flags (connection);
492   if ((flags & TP_CONTACT_INFO_FLAG_CAN_SET) == 0 &&
493       (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) != 0)
494     {
495       gtk_widget_hide (information->vbox_details);
496       return;
497     }
498
499   /* Request the contact's info */
500   gtk_widget_show (information->vbox_details);
501   gtk_widget_show (information->hbox_details_requested);
502   gtk_widget_hide (information->table_details);
503   gtk_spinner_start (GTK_SPINNER (information->spinner_details));
504
505   contact = empathy_contact_get_tp_contact (information->contact);
506   g_assert (information->details_cancellable == NULL);
507   information->details_cancellable = g_cancellable_new ();
508   tp_contact_request_contact_info_async (contact,
509       information->details_cancellable, contact_widget_details_request_cb,
510       information);
511 }
512
513 static void
514 contact_widget_details_update (EmpathyContactWidget *information)
515 {
516   TpContact *tp_contact = NULL;
517
518   if ((information->flags & EMPATHY_CONTACT_WIDGET_SHOW_DETAILS) == 0 &&
519       (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) == 0)
520     return;
521
522   gtk_widget_hide (information->vbox_details);
523
524   if (information->contact != NULL)
525     tp_contact = empathy_contact_get_tp_contact (information->contact);
526
527   if (tp_contact != NULL)
528     {
529       GQuark features[] = { TP_CONNECTION_FEATURE_CONTACT_INFO, 0 };
530       TpConnection *connection;
531
532       /* First, make sure the CONTACT_INFO feature is ready on the connection */
533       connection = tp_contact_get_connection (tp_contact);
534       tp_proxy_prepare_async (connection, features,
535           contact_widget_details_feature_prepared_cb, information);
536     }
537 }
538
539 static void
540 contact_widget_client_update (EmpathyContactWidget *information)
541 {
542   /* FIXME: Needs new telepathy spec */
543 }
544
545 static void
546 contact_widget_client_setup (EmpathyContactWidget *information)
547 {
548   /* FIXME: Needs new telepathy spec */
549   gtk_widget_hide (information->vbox_client);
550 }
551
552 static void
553 contact_widget_cell_toggled (GtkCellRendererToggle *cell,
554                              gchar *path_string,
555                              EmpathyContactWidget *information)
556 {
557   GtkTreeView *view;
558   GtkTreeModel *model;
559   GtkListStore *store;
560   GtkTreePath *path;
561   GtkTreeIter iter;
562   gboolean was_enabled;
563   gchar *group;
564
565   view = GTK_TREE_VIEW (information->treeview_groups);
566   model = gtk_tree_view_get_model (view);
567   store = GTK_LIST_STORE (model);
568
569   path = gtk_tree_path_new_from_string (path_string);
570
571   gtk_tree_model_get_iter (model, &iter, path);
572   gtk_tree_model_get (model, &iter,
573       COL_ENABLED, &was_enabled,
574       COL_NAME, &group,
575       -1);
576
577   gtk_list_store_set (store, &iter, COL_ENABLED, !was_enabled, -1);
578   gtk_tree_path_free (path);
579
580   if (group != NULL)
581     {
582       empathy_contact_change_group (information->contact, group, !was_enabled);
583       g_free (group);
584     }
585 }
586
587 static void
588 contact_widget_model_populate_columns (EmpathyContactWidget *information)
589 {
590   GtkTreeView *view;
591   GtkTreeModel *model;
592   GtkTreeViewColumn *column;
593   GtkCellRenderer  *renderer;
594   guint col_offset;
595
596   view = GTK_TREE_VIEW (information->treeview_groups);
597   model = gtk_tree_view_get_model (view);
598
599   renderer = gtk_cell_renderer_toggle_new ();
600   g_signal_connect (renderer, "toggled",
601       G_CALLBACK (contact_widget_cell_toggled), information);
602
603   column = gtk_tree_view_column_new_with_attributes (_("Select"), renderer,
604       "active", COL_ENABLED, NULL);
605
606   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
607   gtk_tree_view_column_set_fixed_width (column, 50);
608   gtk_tree_view_append_column (view, column);
609
610   renderer = gtk_cell_renderer_text_new ();
611   col_offset = gtk_tree_view_insert_column_with_attributes (view,
612       -1, _("Group"),
613       renderer,
614       "text", COL_NAME,
615       /* "editable", COL_EDITABLE, */
616       NULL);
617
618   g_object_set_data (G_OBJECT (renderer),
619       "column", GINT_TO_POINTER (COL_NAME));
620
621   column = gtk_tree_view_get_column (view, col_offset - 1);
622   gtk_tree_view_column_set_sort_column_id (column, COL_NAME);
623   gtk_tree_view_column_set_resizable (column,FALSE);
624   gtk_tree_view_column_set_clickable (GTK_TREE_VIEW_COLUMN (column), TRUE);
625 }
626
627 static void
628 contact_widget_model_setup (EmpathyContactWidget *information)
629 {
630   GtkTreeView *view;
631   GtkListStore *store;
632   GtkTreeSelection *selection;
633
634   view = GTK_TREE_VIEW (information->treeview_groups);
635
636   store = gtk_list_store_new (COL_COUNT,
637       G_TYPE_STRING,   /* name */
638       G_TYPE_BOOLEAN,  /* enabled */
639       G_TYPE_BOOLEAN); /* editable */
640
641   gtk_tree_view_set_model (view, GTK_TREE_MODEL (store));
642
643   selection = gtk_tree_view_get_selection (view);
644   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
645
646   contact_widget_model_populate_columns (information);
647
648   gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
649       COL_NAME, GTK_SORT_ASCENDING);
650
651   g_object_unref (store);
652 }
653
654 static void
655 contact_widget_groups_populate_data (EmpathyContactWidget *information)
656 {
657   GtkTreeView *view;
658   GtkListStore *store;
659   GtkTreeIter iter;
660   GList *my_groups, *l;
661   GList *all_groups;
662
663   view = GTK_TREE_VIEW (information->treeview_groups);
664   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
665   gtk_list_store_clear (store);
666
667   all_groups = empathy_contact_list_get_all_groups (
668       EMPATHY_CONTACT_LIST (information->manager));
669   my_groups = empathy_contact_list_get_groups (
670       EMPATHY_CONTACT_LIST (information->manager),
671       information->contact);
672
673   for (l = all_groups; l; l = l->next)
674     {
675       const gchar *group_str;
676       gboolean enabled;
677
678       group_str = l->data;
679
680       enabled = g_list_find_custom (my_groups,
681           group_str, (GCompareFunc) strcmp) != NULL;
682
683       gtk_list_store_append (store, &iter);
684       gtk_list_store_set (store, &iter,
685           COL_NAME, group_str,
686           COL_EDITABLE, TRUE,
687           COL_ENABLED, enabled,
688           -1);
689     }
690
691   g_list_foreach (all_groups, (GFunc) g_free, NULL);
692   g_list_foreach (my_groups, (GFunc) g_free, NULL);
693   g_list_free (all_groups);
694   g_list_free (my_groups);
695 }
696
697 static gboolean
698 contact_widget_model_find_name_foreach (GtkTreeModel *model,
699                                         GtkTreePath *path,
700                                         GtkTreeIter *iter,
701                                         FindName *data)
702 {
703   gchar *name;
704
705   gtk_tree_model_get (model, iter,
706       COL_NAME, &name,
707       -1);
708
709   if (!name)
710       return FALSE;
711
712   if (data->name && strcmp (data->name, name) == 0)
713     {
714       data->found = TRUE;
715       data->found_iter = *iter;
716
717       g_free (name);
718
719       return TRUE;
720     }
721
722   g_free (name);
723
724   return FALSE;
725 }
726
727 static gboolean
728 contact_widget_model_find_name (EmpathyContactWidget *information,
729                                 const gchar *name,
730                                 GtkTreeIter *iter)
731 {
732   GtkTreeView *view;
733   GtkTreeModel *model;
734   FindName data;
735
736   if (EMP_STR_EMPTY (name))
737       return FALSE;
738
739   data.information = information;
740   data.name = name;
741   data.found = FALSE;
742
743   view = GTK_TREE_VIEW (information->treeview_groups);
744   model = gtk_tree_view_get_model (view);
745
746   gtk_tree_model_foreach (model,
747       (GtkTreeModelForeachFunc) contact_widget_model_find_name_foreach,
748       &data);
749
750   if (data.found == TRUE)
751     {
752       *iter = data.found_iter;
753       return TRUE;
754     }
755
756   return FALSE;
757 }
758
759 static void
760 contact_widget_entry_group_changed_cb (GtkEditable *editable,
761                                        EmpathyContactWidget *information)
762 {
763   GtkTreeIter iter;
764   const gchar *group;
765
766   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
767
768   if (contact_widget_model_find_name (information, group, &iter))
769       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group), FALSE);
770   else
771       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group),
772           !EMP_STR_EMPTY (group));
773 }
774
775 static void
776 contact_widget_entry_group_activate_cb (GtkEntry *entry,
777                                         EmpathyContactWidget  *information)
778 {
779   gtk_widget_activate (GTK_WIDGET (information->button_group));
780 }
781
782 static void
783 contact_widget_button_group_clicked_cb (GtkButton *button,
784                                         EmpathyContactWidget *information)
785 {
786   GtkTreeView *view;
787   GtkListStore *store;
788   GtkTreeIter iter;
789   const gchar *group;
790
791   view = GTK_TREE_VIEW (information->treeview_groups);
792   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
793
794   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
795
796   gtk_list_store_append (store, &iter);
797   gtk_list_store_set (store, &iter,
798       COL_NAME, group,
799       COL_ENABLED, TRUE,
800       -1);
801
802   empathy_contact_change_group (information->contact, group, TRUE);
803 }
804
805 static void
806 contact_widget_groups_notify_cb (EmpathyContactWidget *information)
807 {
808   /* FIXME: not implemented */
809 }
810
811 static void
812 contact_widget_groups_setup (EmpathyContactWidget *information)
813 {
814   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS)
815     {
816       contact_widget_model_setup (information);
817     }
818 }
819
820 static void
821 contact_widget_groups_update (EmpathyContactWidget *information)
822 {
823   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS &&
824       information->contact)
825     {
826       g_signal_connect_swapped (information->contact, "notify::groups",
827           G_CALLBACK (contact_widget_groups_notify_cb), information);
828       contact_widget_groups_populate_data (information);
829
830       gtk_widget_show (information->vbox_groups);
831     }
832   else
833       gtk_widget_hide (information->vbox_groups);
834 }
835
836 /* Converts the Location's GHashTable's key to a user readable string */
837 static const gchar *
838 location_key_to_label (const gchar *key)
839 {
840   if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY_CODE) == FALSE)
841     return _("Country ISO Code:");
842   else if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY) == FALSE)
843     return _("Country:");
844   else if (tp_strdiff (key, EMPATHY_LOCATION_REGION) == FALSE)
845     return _("State:");
846   else if (tp_strdiff (key, EMPATHY_LOCATION_LOCALITY) == FALSE)
847     return _("City:");
848   else if (tp_strdiff (key, EMPATHY_LOCATION_AREA) == FALSE)
849     return _("Area:");
850   else if (tp_strdiff (key, EMPATHY_LOCATION_POSTAL_CODE) == FALSE)
851     return _("Postal Code:");
852   else if (tp_strdiff (key, EMPATHY_LOCATION_STREET) == FALSE)
853     return _("Street:");
854   else if (tp_strdiff (key, EMPATHY_LOCATION_BUILDING) == FALSE)
855     return _("Building:");
856   else if (tp_strdiff (key, EMPATHY_LOCATION_FLOOR) == FALSE)
857     return _("Floor:");
858   else if (tp_strdiff (key, EMPATHY_LOCATION_ROOM) == FALSE)
859     return _("Room:");
860   else if (tp_strdiff (key, EMPATHY_LOCATION_TEXT) == FALSE)
861     return _("Text:");
862   else if (tp_strdiff (key, EMPATHY_LOCATION_DESCRIPTION) == FALSE)
863     return _("Description:");
864   else if (tp_strdiff (key, EMPATHY_LOCATION_URI) == FALSE)
865     return _("URI:");
866   else if (tp_strdiff (key, EMPATHY_LOCATION_ACCURACY_LEVEL) == FALSE)
867     return _("Accuracy Level:");
868   else if (tp_strdiff (key, EMPATHY_LOCATION_ERROR) == FALSE)
869     return _("Error:");
870   else if (tp_strdiff (key, EMPATHY_LOCATION_VERTICAL_ERROR_M) == FALSE)
871     return _("Vertical Error (meters):");
872   else if (tp_strdiff (key, EMPATHY_LOCATION_HORIZONTAL_ERROR_M) == FALSE)
873     return _("Horizontal Error (meters):");
874   else if (tp_strdiff (key, EMPATHY_LOCATION_SPEED) == FALSE)
875     return _("Speed:");
876   else if (tp_strdiff (key, EMPATHY_LOCATION_BEARING) == FALSE)
877     return _("Bearing:");
878   else if (tp_strdiff (key, EMPATHY_LOCATION_CLIMB) == FALSE)
879     return _("Climb Speed:");
880   else if (tp_strdiff (key, EMPATHY_LOCATION_TIMESTAMP) == FALSE)
881     return _("Last Updated on:");
882   else if (tp_strdiff (key, EMPATHY_LOCATION_LON) == FALSE)
883     return _("Longitude:");
884   else if (tp_strdiff (key, EMPATHY_LOCATION_LAT) == FALSE)
885     return _("Latitude:");
886   else if (tp_strdiff (key, EMPATHY_LOCATION_ALT) == FALSE)
887     return _("Altitude:");
888   else
889   {
890     DEBUG ("Unexpected Location key: %s", key);
891     return key;
892   }
893 }
894
895 static void
896 contact_widget_location_update (EmpathyContactWidget *information)
897 {
898   GHashTable *location;
899   GValue *value;
900   gdouble lat = 0.0, lon = 0.0;
901   gboolean has_position = TRUE;
902   GtkWidget *label;
903   guint row = 0;
904   static const gchar* ordered_geolocation_keys[] = {
905     EMPATHY_LOCATION_TEXT,
906     EMPATHY_LOCATION_URI,
907     EMPATHY_LOCATION_DESCRIPTION,
908     EMPATHY_LOCATION_BUILDING,
909     EMPATHY_LOCATION_FLOOR,
910     EMPATHY_LOCATION_ROOM,
911     EMPATHY_LOCATION_STREET,
912     EMPATHY_LOCATION_AREA,
913     EMPATHY_LOCATION_LOCALITY,
914     EMPATHY_LOCATION_REGION,
915     EMPATHY_LOCATION_COUNTRY,
916     NULL
917   };
918   int i;
919   const gchar *skey;
920   gboolean display_map = FALSE;
921
922   if (!(information->flags & EMPATHY_CONTACT_WIDGET_SHOW_LOCATION))
923     {
924       gtk_widget_hide (information->vbox_location);
925       return;
926     }
927
928   location = empathy_contact_get_location (information->contact);
929   if (location == NULL || g_hash_table_size (location) == 0)
930     {
931       gtk_widget_hide (information->vbox_location);
932       return;
933     }
934
935   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LAT);
936   if (value == NULL)
937       has_position = FALSE;
938   else
939       lat = g_value_get_double (value);
940
941   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LON);
942   if (value == NULL)
943       has_position = FALSE;
944   else
945       lon = g_value_get_double (value);
946
947   value = g_hash_table_lookup (location, EMPATHY_LOCATION_TIMESTAMP);
948   if (value == NULL)
949     {
950       gchar *loc = g_strdup_printf ("<b>%s</b>", _("Location"));
951       gtk_label_set_markup (GTK_LABEL (information->label_location), loc);
952       g_free (loc);
953     }
954   else
955     {
956       gchar *user_date;
957       gchar *text;
958       gint64 stamp;
959       time_t time_;
960
961       stamp = g_value_get_int64 (value);
962       time_ = stamp;
963
964       user_date = empathy_time_to_string_relative (time_);
965
966       text = g_strconcat ( _("<b>Location</b>, "), user_date, NULL);
967       gtk_label_set_markup (GTK_LABEL (information->label_location), text);
968       g_free (user_date);
969       g_free (text);
970     }
971
972
973   /* Prepare the location information table */
974   if (information->table_location != NULL)
975     {
976       gtk_widget_destroy (information->table_location);
977     }
978
979   information->table_location = gtk_table_new (1, 2, FALSE);
980   gtk_box_pack_start (GTK_BOX (information->subvbox_location),
981       information->table_location, FALSE, FALSE, 5);
982
983
984   for (i = 0; (skey = ordered_geolocation_keys[i]); i++)
985     {
986       const gchar* user_label;
987       GValue *gvalue;
988       char *svalue = NULL;
989
990       gvalue = g_hash_table_lookup (location, (gpointer) skey);
991       if (gvalue == NULL)
992         continue;
993
994       user_label = location_key_to_label (skey);
995
996       label = gtk_label_new (user_label);
997       gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
998       gtk_table_attach (GTK_TABLE (information->table_location),
999           label, 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 10, 0);
1000       gtk_widget_show (label);
1001
1002       if (G_VALUE_TYPE (gvalue) == G_TYPE_DOUBLE)
1003         {
1004           gdouble dvalue;
1005           dvalue = g_value_get_double (gvalue);
1006           svalue = g_strdup_printf ("%f", dvalue);
1007         }
1008       else if (G_VALUE_TYPE (gvalue) == G_TYPE_STRING)
1009         {
1010           svalue = g_value_dup_string (gvalue);
1011         }
1012       else if (G_VALUE_TYPE (gvalue) == G_TYPE_INT64)
1013         {
1014           time_t time_;
1015
1016           time_ = g_value_get_int64 (value);
1017           svalue = empathy_time_to_string_utc (time_, _("%B %e, %Y at %R UTC"));
1018         }
1019
1020       if (svalue != NULL)
1021         {
1022           label = gtk_label_new (svalue);
1023           gtk_table_attach_defaults (GTK_TABLE (information->table_location),
1024               label, 1, 2, row, row + 1);
1025           gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
1026           gtk_widget_show (label);
1027
1028           if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1029             gtk_label_set_selectable (GTK_LABEL (label), TRUE);
1030         }
1031
1032       g_free (svalue);
1033       row++;
1034     }
1035
1036 #if HAVE_LIBCHAMPLAIN
1037   if (has_position &&
1038       !(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1039     {
1040       /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such
1041        * windows */
1042       display_map = TRUE;
1043     }
1044 #endif
1045
1046   if (row > 0)
1047     {
1048       /* We can display some fields */
1049       gtk_widget_show (information->table_location);
1050     }
1051   else if (!display_map)
1052     {
1053       /* Can't display either fields or map */
1054       gtk_widget_hide (information->vbox_location);
1055       return;
1056     }
1057
1058 #if HAVE_LIBCHAMPLAIN
1059   if (display_map)
1060     {
1061       ClutterActor *marker;
1062       ChamplainLayer *layer;
1063
1064       information->map_view_embed = gtk_champlain_embed_new ();
1065       information->map_view = gtk_champlain_embed_get_view (
1066           GTK_CHAMPLAIN_EMBED (information->map_view_embed));
1067
1068       gtk_container_add (GTK_CONTAINER (information->viewport_map),
1069           information->map_view_embed);
1070       g_object_set (G_OBJECT (information->map_view),
1071           "show-license", TRUE,
1072           "scroll-mode", CHAMPLAIN_SCROLL_MODE_KINETIC,
1073           "zoom-level", 10,
1074           NULL);
1075
1076       layer = champlain_layer_new ();
1077       champlain_view_add_layer (information->map_view, layer);
1078
1079       marker = champlain_marker_new_with_text (
1080           empathy_contact_get_alias (information->contact), NULL, NULL, NULL);
1081       champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), lat, lon);
1082       clutter_container_add (CLUTTER_CONTAINER (layer), marker, NULL);
1083
1084       champlain_view_center_on (information->map_view, lat, lon);
1085       gtk_widget_show_all (information->viewport_map);
1086     }
1087 #endif
1088
1089     gtk_widget_show (information->vbox_location);
1090 }
1091
1092 static void
1093 save_avatar_menu_activate_cb (GtkWidget *widget,
1094                               EmpathyContactWidget *information)
1095 {
1096   GtkWidget *dialog;
1097   EmpathyAvatar *avatar;
1098   gchar *ext = NULL, *filename;
1099
1100   dialog = gtk_file_chooser_dialog_new (_("Save Avatar"),
1101       NULL,
1102       GTK_FILE_CHOOSER_ACTION_SAVE,
1103       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1104       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
1105       NULL);
1106
1107   gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
1108       TRUE);
1109
1110   /* look for the avatar extension */
1111   avatar = empathy_contact_get_avatar (information->contact);
1112   if (avatar->format != NULL)
1113     {
1114       gchar **splitted;
1115
1116       splitted = g_strsplit (avatar->format, "/", 2);
1117       if (splitted[0] != NULL && splitted[1] != NULL)
1118           ext = g_strdup (splitted[1]);
1119
1120       g_strfreev (splitted);
1121     }
1122   else
1123     {
1124       /* Avatar was loaded from the cache so was converted to PNG */
1125       ext = g_strdup ("png");
1126     }
1127
1128   if (ext != NULL)
1129     {
1130       gchar *id;
1131
1132       id = tp_escape_as_identifier (empathy_contact_get_id (
1133             information->contact));
1134
1135       filename = g_strdup_printf ("%s.%s", id, ext);
1136       gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), filename);
1137
1138       g_free (id);
1139       g_free (ext);
1140       g_free (filename);
1141     }
1142
1143   if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
1144     {
1145       GError *error = NULL;
1146
1147       filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
1148
1149       if (!empathy_avatar_save_to_file (avatar, filename, &error))
1150         {
1151           /* Save error */
1152           GtkWidget *error_dialog;
1153
1154           error_dialog = gtk_message_dialog_new (NULL, 0,
1155               GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
1156               _("Unable to save avatar"));
1157
1158           gtk_message_dialog_format_secondary_text (
1159               GTK_MESSAGE_DIALOG (error_dialog), "%s", error->message);
1160
1161           g_signal_connect (error_dialog, "response",
1162               G_CALLBACK (gtk_widget_destroy), NULL);
1163
1164           gtk_window_present (GTK_WINDOW (error_dialog));
1165
1166           g_clear_error (&error);
1167         }
1168
1169       g_free (filename);
1170     }
1171
1172   gtk_widget_destroy (dialog);
1173 }
1174
1175 static void
1176 popup_avatar_menu (EmpathyContactWidget *information,
1177                    GtkWidget *parent,
1178                    GdkEventButton *event)
1179 {
1180   GtkWidget *menu, *item;
1181   gint button, event_time;
1182
1183   if (information->contact == NULL ||
1184       empathy_contact_get_avatar (information->contact) == NULL)
1185       return;
1186
1187   menu = gtk_menu_new ();
1188
1189   /* Add "Save as..." entry */
1190   item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SAVE_AS, NULL);
1191   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
1192   gtk_widget_show (item);
1193
1194   g_signal_connect (item, "activate",
1195       G_CALLBACK (save_avatar_menu_activate_cb), information);
1196
1197   if (event)
1198     {
1199       button = event->button;
1200       event_time = event->time;
1201     }
1202   else
1203     {
1204       button = 0;
1205       event_time = gtk_get_current_event_time ();
1206     }
1207
1208   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
1209       button, event_time);
1210   g_object_ref_sink (menu);
1211   g_object_unref (menu);
1212 }
1213
1214 static gboolean
1215 widget_avatar_popup_menu_cb (GtkWidget *widget,
1216                              EmpathyContactWidget *information)
1217 {
1218   popup_avatar_menu (information, widget, NULL);
1219
1220   return TRUE;
1221 }
1222
1223 static gboolean
1224 widget_avatar_button_press_event_cb (GtkWidget *widget,
1225                                      GdkEventButton *event,
1226                                      EmpathyContactWidget *information)
1227 {
1228   /* Ignore double-clicks and triple-clicks */
1229   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
1230     {
1231       popup_avatar_menu (information, widget, event);
1232       return TRUE;
1233     }
1234
1235   return FALSE;
1236 }
1237
1238 static void
1239 set_avatar_cb (GObject *source,
1240     GAsyncResult *res,
1241     gpointer user_data)
1242 {
1243   GError *error = NULL;
1244
1245   if (!tp_account_set_avatar_finish (TP_ACCOUNT (source), res, &error)) {
1246       DEBUG ("Failed to set Account.Avatar: %s", error->message);
1247       g_error_free (error);
1248   }
1249 }
1250
1251 static void
1252 set_avatar_on_account (TpAccount *account,
1253     const gchar *data,
1254     gsize size,
1255     const gchar *mime_type)
1256 {
1257   DEBUG ("%s Account.Avatar on %s", size > 0 ? "Set": "Clear",
1258       tp_proxy_get_object_path (account));
1259
1260   tp_account_set_avatar_async (account, (const guchar *) data, size,
1261       mime_type, set_avatar_cb, NULL);
1262 }
1263
1264 static void
1265 contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
1266                                   EmpathyContactWidget *information)
1267 {
1268   const gchar *data;
1269   gsize size;
1270   const gchar *mime_type;
1271   TpAccount *account;
1272
1273   empathy_avatar_chooser_get_image_data (
1274       EMPATHY_AVATAR_CHOOSER (information->widget_avatar),
1275       &data, &size, &mime_type);
1276
1277   account = empathy_contact_get_account (information->contact);
1278   set_avatar_on_account (account, data, size, mime_type);
1279 }
1280
1281 static void
1282 set_nickname_cb (GObject *source,
1283     GAsyncResult *res,
1284     gpointer user_data)
1285 {
1286   GError *error = NULL;
1287
1288   if (!tp_account_set_nickname_finish (TP_ACCOUNT (source), res, &error))
1289     {
1290       DEBUG ("Failed to set Account.Nickname: %s", error->message);
1291       g_error_free (error);
1292     }
1293 }
1294
1295 static void
1296 set_alias_on_account (TpAccount *account,
1297     const gchar *alias)
1298 {
1299   DEBUG ("Set Account.Nickname to %s", alias);
1300
1301   tp_account_set_nickname_async (account, alias, set_nickname_cb, NULL);
1302 }
1303
1304 static gboolean
1305 contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
1306                                            GdkEventFocus *event,
1307                                            EmpathyContactWidget *information)
1308 {
1309   if (information->contact)
1310     {
1311       const gchar *alias;
1312
1313       alias = gtk_entry_get_text (GTK_ENTRY (editable));
1314
1315       if (empathy_contact_is_user (information->contact))
1316         {
1317           TpAccount * account;
1318
1319           account = empathy_contact_get_account (information->contact);
1320           set_alias_on_account (account, alias);
1321         }
1322       else
1323         {
1324           empathy_contact_set_alias (information->contact, alias);
1325         }
1326     }
1327
1328   return FALSE;
1329 }
1330
1331 static void
1332 update_avatar_chooser_account_cb (EmpathyAccountChooser *account_chooser,
1333                                   EmpathyAvatarChooser *avatar_chooser)
1334 {
1335   TpAccount *account;
1336
1337   account = empathy_account_chooser_get_account (account_chooser);
1338   if (account == NULL)
1339     return;
1340
1341   empathy_avatar_chooser_set_account (avatar_chooser, account);
1342 }
1343
1344 static void
1345 contact_widget_avatar_notify_cb (EmpathyContactWidget *information)
1346 {
1347   EmpathyAvatar *avatar = NULL;
1348
1349   if (information->contact)
1350       avatar = empathy_contact_get_avatar (information->contact);
1351
1352   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
1353     {
1354       g_signal_handlers_block_by_func (information->widget_avatar,
1355           contact_widget_avatar_changed_cb,
1356           information);
1357       empathy_avatar_chooser_set (
1358           EMPATHY_AVATAR_CHOOSER (information->widget_avatar), avatar);
1359       g_signal_handlers_unblock_by_func (information->widget_avatar,
1360           contact_widget_avatar_changed_cb, information);
1361     }
1362   else
1363       empathy_avatar_image_set (
1364           EMPATHY_AVATAR_IMAGE (information->widget_avatar), avatar);
1365 }
1366
1367 static void
1368 contact_widget_name_notify_cb (EmpathyContactWidget *information)
1369 {
1370   if (GTK_IS_ENTRY (information->widget_alias))
1371       gtk_entry_set_text (GTK_ENTRY (information->widget_alias),
1372           empathy_contact_get_alias (information->contact));
1373   else
1374       gtk_label_set_label (GTK_LABEL (information->widget_alias),
1375           empathy_contact_get_alias (information->contact));
1376 }
1377
1378 static void
1379 contact_widget_presence_notify_cb (EmpathyContactWidget *information)
1380 {
1381   const gchar *status;
1382   gchar *markup_text = NULL;
1383
1384   status = empathy_contact_get_status (information->contact);
1385   if (status != NULL)
1386     markup_text = empathy_add_link_markup (status);
1387   gtk_label_set_markup (GTK_LABEL (information->label_status), markup_text);
1388   g_free (markup_text);
1389
1390   gtk_image_set_from_icon_name (GTK_IMAGE (information->image_state),
1391       empathy_icon_name_for_contact (information->contact),
1392       GTK_ICON_SIZE_BUTTON);
1393   gtk_widget_show (information->image_state);
1394 }
1395
1396 static void
1397 contact_widget_favourites_changed_cb (EmpathyContactManager *manager,
1398     EmpathyContact *contact,
1399     gboolean is_favourite,
1400     EmpathyContactWidget *information)
1401 {
1402   if (contact != information->contact)
1403     return;
1404
1405   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (
1406             information->favourite_checkbox), is_favourite);
1407 }
1408
1409 static void
1410 contact_widget_remove_contact (EmpathyContactWidget *information)
1411 {
1412   if (information->contact)
1413     {
1414       TpContact *tp_contact;
1415
1416       contact_widget_save (information);
1417
1418       g_signal_handlers_disconnect_by_func (information->contact,
1419           contact_widget_name_notify_cb, information);
1420       g_signal_handlers_disconnect_by_func (information->contact,
1421           contact_widget_presence_notify_cb, information);
1422       g_signal_handlers_disconnect_by_func (information->contact,
1423           contact_widget_avatar_notify_cb, information);
1424       g_signal_handlers_disconnect_by_func (information->contact,
1425           contact_widget_groups_notify_cb, information);
1426
1427       tp_contact = empathy_contact_get_tp_contact (information->contact);
1428       if (tp_contact != NULL)
1429         {
1430           g_signal_handlers_disconnect_by_func (tp_contact,
1431               contact_widget_details_notify_cb, information);
1432         }
1433
1434       g_object_unref (information->contact);
1435       information->contact = NULL;
1436     }
1437
1438   if (information->details_cancellable != NULL)
1439     {
1440       /* The cancellable will be unreffed and cleared in
1441        * contact_widget_details_request_cb */
1442       g_cancellable_cancel (information->details_cancellable);
1443     }
1444 }
1445
1446 static void contact_widget_change_contact (EmpathyContactWidget *information);
1447
1448 static void
1449 contact_widget_contact_update (EmpathyContactWidget *information)
1450 {
1451   TpAccount *account = NULL;
1452   const gchar *id = NULL;
1453
1454   /* Connect and get info from new contact */
1455   if (information->contact)
1456     {
1457       g_signal_connect_swapped (information->contact, "notify::name",
1458           G_CALLBACK (contact_widget_name_notify_cb), information);
1459       g_signal_connect_swapped (information->contact, "notify::presence",
1460           G_CALLBACK (contact_widget_presence_notify_cb), information);
1461       g_signal_connect_swapped (information->contact,
1462           "notify::presence-message",
1463           G_CALLBACK (contact_widget_presence_notify_cb), information);
1464       g_signal_connect_swapped (information->contact, "notify::avatar",
1465           G_CALLBACK (contact_widget_avatar_notify_cb), information);
1466
1467       account = empathy_contact_get_account (information->contact);
1468       id = empathy_contact_get_id (information->contact);
1469     }
1470
1471   /* Update account widget */
1472   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
1473     {
1474       if (account)
1475         {
1476           g_signal_handlers_block_by_func (information->widget_account,
1477                    contact_widget_change_contact,
1478                    information);
1479           empathy_account_chooser_set_account (
1480               EMPATHY_ACCOUNT_CHOOSER (information->widget_account), account);
1481           g_signal_handlers_unblock_by_func (information->widget_account,
1482               contact_widget_change_contact, information);
1483         }
1484     }
1485   else
1486     {
1487       if (account)
1488         {
1489           const gchar *name;
1490
1491           name = tp_account_get_display_name (account);
1492           gtk_label_set_label (GTK_LABEL (information->label_account), name);
1493
1494           name = tp_account_get_icon_name (account);
1495           gtk_image_set_from_icon_name (GTK_IMAGE (information->image_account),
1496               name, GTK_ICON_SIZE_MENU);
1497         }
1498     }
1499
1500   /* Update id widget */
1501   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1502       gtk_entry_set_text (GTK_ENTRY (information->widget_id), id ? id : "");
1503   else
1504       gtk_label_set_label (GTK_LABEL (information->widget_id), id ? id : "");
1505
1506   /* Update other widgets */
1507   if (information->contact)
1508     {
1509       contact_widget_name_notify_cb (information);
1510       contact_widget_presence_notify_cb (information);
1511       contact_widget_avatar_notify_cb (information);
1512
1513       if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_FAVOURITE)
1514         {
1515           FolksPersona *persona = empathy_contact_get_persona (
1516               information->contact);
1517
1518           if (persona != NULL && FOLKS_IS_FAVOURITE (persona))
1519             {
1520               gboolean is_favourite = folks_favourite_get_is_favourite (
1521                   FOLKS_FAVOURITE (persona));
1522               contact_widget_favourites_changed_cb (information->manager,
1523                   information->contact, is_favourite, information);
1524             }
1525         }
1526
1527       gtk_widget_show (information->label_alias);
1528       gtk_widget_show (information->widget_alias);
1529       gtk_widget_show (information->hbox_presence);
1530       gtk_widget_show (information->widget_avatar);
1531     }
1532   else
1533     {
1534       gtk_widget_hide (information->label_alias);
1535       gtk_widget_hide (information->widget_alias);
1536       gtk_widget_hide (information->hbox_presence);
1537       gtk_widget_hide (information->widget_avatar);
1538     }
1539 }
1540
1541 static void
1542 contact_widget_set_contact (EmpathyContactWidget *information,
1543                             EmpathyContact *contact)
1544 {
1545   if (contact == information->contact)
1546     return;
1547
1548   contact_widget_remove_contact (information);
1549   if (contact)
1550     information->contact = g_object_ref (contact);
1551
1552   /* set the selected account to be the account this contact came from */
1553   if (contact && EMPATHY_IS_ACCOUNT_CHOOSER (information->widget_account)) {
1554       empathy_account_chooser_set_account (
1555                       EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
1556                       empathy_contact_get_account (contact));
1557   }
1558
1559   /* Update information for widgets */
1560   contact_widget_contact_update (information);
1561   contact_widget_groups_update (information);
1562   contact_widget_details_update (information);
1563   contact_widget_client_update (information);
1564   contact_widget_location_update (information);
1565 }
1566
1567 static void
1568 contact_widget_got_contact_cb (TpConnection *connection,
1569                                EmpathyContact *contact,
1570                                const GError *error,
1571                                gpointer user_data,
1572                                GObject *weak_object)
1573 {
1574   EmpathyContactWidget *information = user_data;
1575
1576   if (error != NULL)
1577     {
1578       DEBUG ("Error: %s", error->message);
1579       return;
1580     }
1581
1582   contact_widget_set_contact (information, contact);
1583 }
1584
1585 static void
1586 contact_widget_change_contact (EmpathyContactWidget *information)
1587 {
1588   TpConnection *connection;
1589
1590   connection = empathy_account_chooser_get_connection (
1591       EMPATHY_ACCOUNT_CHOOSER (information->widget_account));
1592   if (!connection)
1593       return;
1594
1595   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1596     {
1597       const gchar *id;
1598
1599       id = gtk_entry_get_text (GTK_ENTRY (information->widget_id));
1600       if (!EMP_STR_EMPTY (id))
1601         {
1602           empathy_tp_contact_factory_get_from_id (connection, id,
1603               contact_widget_got_contact_cb, information, NULL,
1604               G_OBJECT (information->vbox_contact_widget));
1605         }
1606     }
1607   else
1608     {
1609       empathy_tp_contact_factory_get_from_handle (connection,
1610           tp_connection_get_self_handle (connection),
1611           contact_widget_got_contact_cb, information, NULL,
1612           G_OBJECT (information->vbox_contact_widget));
1613     }
1614 }
1615
1616 static gboolean
1617 contact_widget_id_activate_timeout (EmpathyContactWidget *self)
1618 {
1619   contact_widget_change_contact (self);
1620   return FALSE;
1621 }
1622
1623 static void
1624 contact_widget_id_changed_cb (GtkEntry *entry,
1625                               EmpathyContactWidget *self)
1626 {
1627   if (self->widget_id_timeout != 0)
1628     {
1629       g_source_remove (self->widget_id_timeout);
1630     }
1631
1632   self->widget_id_timeout =
1633     g_timeout_add_seconds (ID_CHANGED_TIMEOUT,
1634         (GSourceFunc) contact_widget_id_activate_timeout, self);
1635 }
1636
1637 static gboolean
1638 contact_widget_id_focus_out_cb (GtkWidget *widget,
1639                                 GdkEventFocus *event,
1640                                 EmpathyContactWidget *information)
1641 {
1642   contact_widget_change_contact (information);
1643   return FALSE;
1644 }
1645
1646 static void
1647 favourite_toggled_cb (GtkToggleButton *button,
1648     EmpathyContactWidget *information)
1649 {
1650   FolksPersona *persona = empathy_contact_get_persona (information->contact);
1651
1652   if (persona != NULL && FOLKS_IS_FAVOURITE (persona))
1653     {
1654       gboolean active = gtk_toggle_button_get_active (button);
1655       folks_favourite_set_is_favourite (FOLKS_FAVOURITE (persona), active);
1656     }
1657 }
1658
1659 static void
1660 contact_widget_contact_setup (EmpathyContactWidget *information)
1661 {
1662   /* Setup label_status as a KludgeLabel */
1663   information->label_status = empathy_kludge_label_new ("");
1664   gtk_label_set_line_wrap_mode (GTK_LABEL (information->label_status),
1665                                 PANGO_WRAP_WORD_CHAR);
1666   gtk_label_set_line_wrap (GTK_LABEL (information->label_status),
1667                            TRUE);
1668
1669   if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1670     gtk_label_set_selectable (GTK_LABEL (information->label_status), TRUE);
1671
1672   gtk_box_pack_start (GTK_BOX (information->hbox_presence),
1673         information->label_status, TRUE, TRUE, 0);
1674   gtk_widget_show (information->label_status);
1675
1676   /* Setup account label/chooser */
1677   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
1678     {
1679       information->widget_account = empathy_account_chooser_new ();
1680
1681       g_signal_connect_swapped (information->widget_account, "changed",
1682             G_CALLBACK (contact_widget_change_contact),
1683             information);
1684     }
1685   else
1686     {
1687       /* Pack the protocol icon with the account name in an hbox */
1688       information->widget_account = gtk_hbox_new (FALSE, 6);
1689
1690       information->label_account = gtk_label_new (NULL);
1691       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
1692         gtk_label_set_selectable (GTK_LABEL (information->label_account), TRUE);
1693       }
1694       gtk_misc_set_alignment (GTK_MISC (information->label_account), 0, 0.5);
1695       gtk_widget_show (information->label_account);
1696
1697       information->image_account = gtk_image_new ();
1698       gtk_widget_show (information->image_account);
1699
1700       gtk_box_pack_start (GTK_BOX (information->widget_account),
1701           information->image_account, FALSE, FALSE, 0);
1702       gtk_box_pack_start (GTK_BOX (information->widget_account),
1703           information->label_account, FALSE, TRUE, 0);
1704     }
1705   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1706            information->widget_account,
1707            1, 2, 0, 1);
1708   gtk_widget_show (information->widget_account);
1709
1710   /* Set up avatar chooser/display */
1711   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
1712     {
1713       information->widget_avatar = empathy_avatar_chooser_new ();
1714       g_signal_connect (information->widget_avatar, "changed",
1715             G_CALLBACK (contact_widget_avatar_changed_cb),
1716             information);
1717       if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
1718         {
1719           g_signal_connect (information->widget_account, "changed",
1720               G_CALLBACK (update_avatar_chooser_account_cb),
1721               information->widget_avatar);
1722           update_avatar_chooser_account_cb (
1723               EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
1724               EMPATHY_AVATAR_CHOOSER (information->widget_avatar));
1725         }
1726     }
1727   else
1728     {
1729       information->widget_avatar = empathy_avatar_image_new ();
1730
1731       g_signal_connect (information->widget_avatar, "popup-menu",
1732           G_CALLBACK (widget_avatar_popup_menu_cb), information);
1733       g_signal_connect (information->widget_avatar, "button-press-event",
1734           G_CALLBACK (widget_avatar_button_press_event_cb), information);
1735     }
1736
1737   gtk_box_pack_start (GTK_BOX (information->vbox_avatar),
1738           information->widget_avatar,
1739           FALSE, FALSE,
1740           6);
1741   gtk_widget_show (information->widget_avatar);
1742
1743   /* Setup id label/entry */
1744   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1745     {
1746       information->widget_id = gtk_entry_new ();
1747       g_signal_connect (information->widget_id, "focus-out-event",
1748             G_CALLBACK (contact_widget_id_focus_out_cb),
1749             information);
1750       g_signal_connect (information->widget_id, "changed",
1751             G_CALLBACK (contact_widget_id_changed_cb),
1752             information);
1753     }
1754   else
1755     {
1756       information->widget_id = gtk_label_new (NULL);
1757       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
1758         gtk_label_set_selectable (GTK_LABEL (information->widget_id), TRUE);
1759       }
1760       gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5);
1761     }
1762   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1763            information->widget_id,
1764            1, 2, 1, 2);
1765   gtk_widget_show (information->widget_id);
1766
1767   /* Setup alias label/entry */
1768   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ALIAS)
1769     {
1770       information->widget_alias = gtk_entry_new ();
1771
1772       if (!(information->flags & EMPATHY_CONTACT_WIDGET_NO_SET_ALIAS))
1773         g_signal_connect (information->widget_alias, "focus-out-event",
1774               G_CALLBACK (contact_widget_entry_alias_focus_event_cb),
1775               information);
1776
1777       /* Make return activate the window default (the Close button) */
1778       gtk_entry_set_activates_default (GTK_ENTRY (information->widget_alias),
1779           TRUE);
1780     }
1781   else
1782     {
1783       information->widget_alias = gtk_label_new (NULL);
1784       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
1785         gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE);
1786       }
1787       gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5);
1788     }
1789   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1790            information->widget_alias,
1791            1, 2, 2, 3);
1792   if (information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) {
1793     gtk_label_set_selectable (GTK_LABEL (information->label_status), FALSE);
1794   }
1795   gtk_widget_show (information->widget_alias);
1796
1797   /* Favorite */
1798   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_FAVOURITE)
1799     {
1800       information->favourite_checkbox = gtk_check_button_new_with_label (
1801           _("Favorite"));
1802
1803       g_signal_connect (information->favourite_checkbox, "toggled",
1804           G_CALLBACK (favourite_toggled_cb), information);
1805
1806       gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1807            information->favourite_checkbox, 0, 2, 3, 4);
1808
1809       information->fav_sig_id = g_signal_connect (information->manager,
1810           "favourites-changed",
1811           G_CALLBACK (contact_widget_favourites_changed_cb), information);
1812
1813       gtk_widget_show (information->favourite_checkbox);
1814     }
1815 }
1816
1817 static void
1818 contact_widget_destroy_cb (GtkWidget *widget,
1819                            EmpathyContactWidget *information)
1820 {
1821   contact_widget_remove_contact (information);
1822
1823   if (information->widget_id_timeout != 0)
1824     {
1825       g_source_remove (information->widget_id_timeout);
1826     }
1827
1828   if (information->fav_sig_id != 0)
1829     g_signal_handler_disconnect (information->manager, information->fav_sig_id);
1830
1831   g_object_unref (information->manager);
1832
1833   g_slice_free (EmpathyContactWidget, information);
1834 }
1835
1836 /**
1837  * empathy_contact_widget_new:
1838  * @contact: an #EmpathyContact
1839  * @flags: #EmpathyContactWidgetFlags for the new contact widget
1840  *
1841  * Creates a new #EmpathyContactWidget.
1842  *
1843  * Return value: a new #EmpathyContactWidget
1844  */
1845 GtkWidget *
1846 empathy_contact_widget_new (EmpathyContact *contact,
1847                             EmpathyContactWidgetFlags flags)
1848 {
1849   EmpathyContactWidget *information;
1850   GtkBuilder *gui;
1851   gchar *filename;
1852
1853   g_return_val_if_fail (contact == NULL || EMPATHY_IS_CONTACT (contact), NULL);
1854
1855   information = g_slice_new0 (EmpathyContactWidget);
1856   information->flags = flags;
1857
1858   filename = empathy_file_lookup ("empathy-contact-widget.ui",
1859       "libempathy-gtk");
1860   gui = empathy_builder_get_file (filename,
1861        "vbox_contact_widget", &information->vbox_contact_widget,
1862        "hbox_contact", &information->hbox_contact,
1863        "hbox_presence", &information->hbox_presence,
1864        "label_alias", &information->label_alias,
1865        "image_state", &information->image_state,
1866        "table_contact", &information->table_contact,
1867        "vbox_avatar", &information->vbox_avatar,
1868        "vbox_location", &information->vbox_location,
1869        "subvbox_location", &information->subvbox_location,
1870        "label_location", &information->label_location,
1871 #if HAVE_LIBCHAMPLAIN
1872        "viewport_map", &information->viewport_map,
1873 #endif
1874        "vbox_groups", &information->vbox_groups,
1875        "entry_group", &information->entry_group,
1876        "button_group", &information->button_group,
1877        "treeview_groups", &information->treeview_groups,
1878        "vbox_details", &information->vbox_details,
1879        "table_details", &information->table_details,
1880        "hbox_details_requested", &information->hbox_details_requested,
1881        "vbox_client", &information->vbox_client,
1882        "table_client", &information->table_client,
1883        "hbox_client_requested", &information->hbox_client_requested,
1884        NULL);
1885   g_free (filename);
1886
1887   empathy_builder_connect (gui, information,
1888       "vbox_contact_widget", "destroy", contact_widget_destroy_cb,
1889       "entry_group", "changed", contact_widget_entry_group_changed_cb,
1890       "entry_group", "activate", contact_widget_entry_group_activate_cb,
1891       "button_group", "clicked", contact_widget_button_group_clicked_cb,
1892       NULL);
1893   information->table_location = NULL;
1894
1895   g_object_set_data (G_OBJECT (information->vbox_contact_widget),
1896       "EmpathyContactWidget",
1897       information);
1898
1899   information->manager = empathy_contact_manager_dup_singleton ();
1900
1901   /* Create widgets */
1902   contact_widget_contact_setup (information);
1903   contact_widget_groups_setup (information);
1904   contact_widget_details_setup (information);
1905   contact_widget_client_setup (information);
1906
1907   if (contact != NULL)
1908     contact_widget_set_contact (information, contact);
1909   else if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT ||
1910       information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1911     contact_widget_change_contact (information);
1912
1913   return empathy_builder_unref_and_keep_widget (gui,
1914     information->vbox_contact_widget);
1915 }
1916
1917 /**
1918  * empathy_contact_widget_get_contact:
1919  * @widget: an #EmpathyContactWidget
1920  *
1921  * Get the #EmpathyContact related with the #EmpathyContactWidget @widget.
1922  *
1923  * Returns: the #EmpathyContact associated with @widget
1924  */
1925 EmpathyContact *
1926 empathy_contact_widget_get_contact (GtkWidget *widget)
1927 {
1928   EmpathyContactWidget *information;
1929
1930   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
1931
1932   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
1933   if (!information)
1934       return NULL;
1935
1936   return information->contact;
1937 }
1938
1939 const gchar *
1940 empathy_contact_widget_get_alias (GtkWidget *widget)
1941 {
1942   EmpathyContactWidget *information;
1943
1944   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
1945
1946   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
1947   if (!information)
1948       return NULL;
1949
1950   return gtk_entry_get_text (GTK_ENTRY (information->widget_alias));
1951 }
1952
1953 /**
1954  * empathy_contact_widget_set_contact:
1955  * @widget: an #EmpathyContactWidget
1956  * @contact: a different #EmpathyContact
1957  *
1958  * Change the #EmpathyContact related with the #EmpathyContactWidget @widget.
1959  */
1960 void
1961 empathy_contact_widget_set_contact (GtkWidget *widget,
1962                                     EmpathyContact *contact)
1963 {
1964   EmpathyContactWidget *information;
1965
1966   g_return_if_fail (GTK_IS_WIDGET (widget));
1967   g_return_if_fail (EMPATHY_IS_CONTACT (contact));
1968
1969   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
1970   if (!information)
1971     return;
1972
1973   contact_widget_set_contact (information, contact);
1974 }
1975
1976 /**
1977  * empathy_contact_widget_set_account_filter:
1978  * @widget: an #EmpathyContactWidget
1979  * @filter: a #EmpathyAccountChooserFilterFunc
1980  * @user_data: user data to pass to @filter, or %NULL
1981  *
1982  * Set a filter on the #EmpathyAccountChooser included in the
1983  * #EmpathyContactWidget.
1984  */
1985 void
1986 empathy_contact_widget_set_account_filter (
1987     GtkWidget *widget,
1988     EmpathyAccountChooserFilterFunc filter,
1989     gpointer user_data)
1990 {
1991   EmpathyContactWidget *information;
1992   EmpathyAccountChooser *chooser;
1993
1994   g_return_if_fail (GTK_IS_WIDGET (widget));
1995
1996   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
1997   if (!information)
1998     return;
1999
2000   chooser = EMPATHY_ACCOUNT_CHOOSER (information->widget_account);
2001   if (chooser)
2002       empathy_account_chooser_set_filter (chooser, filter, user_data);
2003 }
2004