]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-widget.c
Clarify that toggling a group in the EmpathyContactWidget actually toggles it.
[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       FolksIndividual *individual = folks_individual_from_empathy_contact (
583           information->contact);
584
585       if (individual != NULL)
586         {
587           folks_groups_change_group (FOLKS_GROUPS (individual), group,
588               !was_enabled);
589           g_object_unref (individual);
590         }
591
592       g_free (group);
593     }
594 }
595
596 static void
597 contact_widget_model_populate_columns (EmpathyContactWidget *information)
598 {
599   GtkTreeView *view;
600   GtkTreeModel *model;
601   GtkTreeViewColumn *column;
602   GtkCellRenderer  *renderer;
603   guint col_offset;
604
605   view = GTK_TREE_VIEW (information->treeview_groups);
606   model = gtk_tree_view_get_model (view);
607
608   renderer = gtk_cell_renderer_toggle_new ();
609   g_signal_connect (renderer, "toggled",
610       G_CALLBACK (contact_widget_cell_toggled), information);
611
612   column = gtk_tree_view_column_new_with_attributes (_("Select"), renderer,
613       "active", COL_ENABLED, NULL);
614
615   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
616   gtk_tree_view_column_set_fixed_width (column, 50);
617   gtk_tree_view_append_column (view, column);
618
619   renderer = gtk_cell_renderer_text_new ();
620   col_offset = gtk_tree_view_insert_column_with_attributes (view,
621       -1, _("Group"),
622       renderer,
623       "text", COL_NAME,
624       /* "editable", COL_EDITABLE, */
625       NULL);
626
627   g_object_set_data (G_OBJECT (renderer),
628       "column", GINT_TO_POINTER (COL_NAME));
629
630   column = gtk_tree_view_get_column (view, col_offset - 1);
631   gtk_tree_view_column_set_sort_column_id (column, COL_NAME);
632   gtk_tree_view_column_set_resizable (column,FALSE);
633   gtk_tree_view_column_set_clickable (GTK_TREE_VIEW_COLUMN (column), TRUE);
634 }
635
636 static void
637 contact_widget_model_setup (EmpathyContactWidget *information)
638 {
639   GtkTreeView *view;
640   GtkListStore *store;
641   GtkTreeSelection *selection;
642
643   view = GTK_TREE_VIEW (information->treeview_groups);
644
645   store = gtk_list_store_new (COL_COUNT,
646       G_TYPE_STRING,   /* name */
647       G_TYPE_BOOLEAN,  /* enabled */
648       G_TYPE_BOOLEAN); /* editable */
649
650   gtk_tree_view_set_model (view, GTK_TREE_MODEL (store));
651
652   selection = gtk_tree_view_get_selection (view);
653   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
654
655   contact_widget_model_populate_columns (information);
656
657   gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
658       COL_NAME, GTK_SORT_ASCENDING);
659
660   g_object_unref (store);
661 }
662
663 static void
664 contact_widget_groups_populate_data (EmpathyContactWidget *information)
665 {
666   GtkTreeView *view;
667   GtkListStore *store;
668   GtkTreeIter iter;
669   GList *my_groups, *l;
670   GList *all_groups;
671
672   view = GTK_TREE_VIEW (information->treeview_groups);
673   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
674   gtk_list_store_clear (store);
675
676   all_groups = empathy_contact_list_get_all_groups (
677       EMPATHY_CONTACT_LIST (information->manager));
678   my_groups = empathy_contact_list_get_groups (
679       EMPATHY_CONTACT_LIST (information->manager),
680       information->contact);
681
682   for (l = all_groups; l; l = l->next)
683     {
684       const gchar *group_str;
685       gboolean enabled;
686
687       group_str = l->data;
688
689       enabled = g_list_find_custom (my_groups,
690           group_str, (GCompareFunc) strcmp) != NULL;
691
692       gtk_list_store_append (store, &iter);
693       gtk_list_store_set (store, &iter,
694           COL_NAME, group_str,
695           COL_EDITABLE, TRUE,
696           COL_ENABLED, enabled,
697           -1);
698     }
699
700   g_list_foreach (all_groups, (GFunc) g_free, NULL);
701   g_list_foreach (my_groups, (GFunc) g_free, NULL);
702   g_list_free (all_groups);
703   g_list_free (my_groups);
704 }
705
706 static gboolean
707 contact_widget_model_find_name_foreach (GtkTreeModel *model,
708                                         GtkTreePath *path,
709                                         GtkTreeIter *iter,
710                                         FindName *data)
711 {
712   gchar *name;
713
714   gtk_tree_model_get (model, iter,
715       COL_NAME, &name,
716       -1);
717
718   if (!name)
719       return FALSE;
720
721   if (data->name && strcmp (data->name, name) == 0)
722     {
723       data->found = TRUE;
724       data->found_iter = *iter;
725
726       g_free (name);
727
728       return TRUE;
729     }
730
731   g_free (name);
732
733   return FALSE;
734 }
735
736 static gboolean
737 contact_widget_model_find_name (EmpathyContactWidget *information,
738                                 const gchar *name,
739                                 GtkTreeIter *iter)
740 {
741   GtkTreeView *view;
742   GtkTreeModel *model;
743   FindName data;
744
745   if (EMP_STR_EMPTY (name))
746       return FALSE;
747
748   data.information = information;
749   data.name = name;
750   data.found = FALSE;
751
752   view = GTK_TREE_VIEW (information->treeview_groups);
753   model = gtk_tree_view_get_model (view);
754
755   gtk_tree_model_foreach (model,
756       (GtkTreeModelForeachFunc) contact_widget_model_find_name_foreach,
757       &data);
758
759   if (data.found == TRUE)
760     {
761       *iter = data.found_iter;
762       return TRUE;
763     }
764
765   return FALSE;
766 }
767
768 static void
769 contact_widget_entry_group_changed_cb (GtkEditable *editable,
770                                        EmpathyContactWidget *information)
771 {
772   GtkTreeIter iter;
773   const gchar *group;
774
775   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
776
777   if (contact_widget_model_find_name (information, group, &iter))
778       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group), FALSE);
779   else
780       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group),
781           !EMP_STR_EMPTY (group));
782 }
783
784 static void
785 contact_widget_entry_group_activate_cb (GtkEntry *entry,
786                                         EmpathyContactWidget  *information)
787 {
788   gtk_widget_activate (GTK_WIDGET (information->button_group));
789 }
790
791 static void
792 contact_widget_button_group_clicked_cb (GtkButton *button,
793                                         EmpathyContactWidget *information)
794 {
795   GtkTreeView *view;
796   GtkListStore *store;
797   GtkTreeIter iter;
798   FolksIndividual *individual;
799   const gchar *group;
800
801   view = GTK_TREE_VIEW (information->treeview_groups);
802   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
803
804   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
805
806   gtk_list_store_append (store, &iter);
807   gtk_list_store_set (store, &iter,
808       COL_NAME, group,
809       COL_ENABLED, TRUE,
810       -1);
811
812   individual = folks_individual_from_empathy_contact (information->contact);
813
814   if (individual != NULL)
815     {
816       folks_groups_change_group (FOLKS_GROUPS (individual), group, TRUE);
817       g_object_unref (individual);
818     }
819 }
820
821 static void
822 contact_widget_groups_notify_cb (EmpathyContactWidget *information)
823 {
824   /* FIXME: not implemented */
825 }
826
827 static void
828 contact_widget_groups_setup (EmpathyContactWidget *information)
829 {
830   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS)
831     {
832       contact_widget_model_setup (information);
833     }
834 }
835
836 static void
837 contact_widget_groups_update (EmpathyContactWidget *information)
838 {
839   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS &&
840       information->contact)
841     {
842       g_signal_connect_swapped (information->contact, "notify::groups",
843           G_CALLBACK (contact_widget_groups_notify_cb), information);
844       contact_widget_groups_populate_data (information);
845
846       gtk_widget_show (information->vbox_groups);
847     }
848   else
849       gtk_widget_hide (information->vbox_groups);
850 }
851
852 /* Converts the Location's GHashTable's key to a user readable string */
853 static const gchar *
854 location_key_to_label (const gchar *key)
855 {
856   if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY_CODE) == FALSE)
857     return _("Country ISO Code:");
858   else if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY) == FALSE)
859     return _("Country:");
860   else if (tp_strdiff (key, EMPATHY_LOCATION_REGION) == FALSE)
861     return _("State:");
862   else if (tp_strdiff (key, EMPATHY_LOCATION_LOCALITY) == FALSE)
863     return _("City:");
864   else if (tp_strdiff (key, EMPATHY_LOCATION_AREA) == FALSE)
865     return _("Area:");
866   else if (tp_strdiff (key, EMPATHY_LOCATION_POSTAL_CODE) == FALSE)
867     return _("Postal Code:");
868   else if (tp_strdiff (key, EMPATHY_LOCATION_STREET) == FALSE)
869     return _("Street:");
870   else if (tp_strdiff (key, EMPATHY_LOCATION_BUILDING) == FALSE)
871     return _("Building:");
872   else if (tp_strdiff (key, EMPATHY_LOCATION_FLOOR) == FALSE)
873     return _("Floor:");
874   else if (tp_strdiff (key, EMPATHY_LOCATION_ROOM) == FALSE)
875     return _("Room:");
876   else if (tp_strdiff (key, EMPATHY_LOCATION_TEXT) == FALSE)
877     return _("Text:");
878   else if (tp_strdiff (key, EMPATHY_LOCATION_DESCRIPTION) == FALSE)
879     return _("Description:");
880   else if (tp_strdiff (key, EMPATHY_LOCATION_URI) == FALSE)
881     return _("URI:");
882   else if (tp_strdiff (key, EMPATHY_LOCATION_ACCURACY_LEVEL) == FALSE)
883     return _("Accuracy Level:");
884   else if (tp_strdiff (key, EMPATHY_LOCATION_ERROR) == FALSE)
885     return _("Error:");
886   else if (tp_strdiff (key, EMPATHY_LOCATION_VERTICAL_ERROR_M) == FALSE)
887     return _("Vertical Error (meters):");
888   else if (tp_strdiff (key, EMPATHY_LOCATION_HORIZONTAL_ERROR_M) == FALSE)
889     return _("Horizontal Error (meters):");
890   else if (tp_strdiff (key, EMPATHY_LOCATION_SPEED) == FALSE)
891     return _("Speed:");
892   else if (tp_strdiff (key, EMPATHY_LOCATION_BEARING) == FALSE)
893     return _("Bearing:");
894   else if (tp_strdiff (key, EMPATHY_LOCATION_CLIMB) == FALSE)
895     return _("Climb Speed:");
896   else if (tp_strdiff (key, EMPATHY_LOCATION_TIMESTAMP) == FALSE)
897     return _("Last Updated on:");
898   else if (tp_strdiff (key, EMPATHY_LOCATION_LON) == FALSE)
899     return _("Longitude:");
900   else if (tp_strdiff (key, EMPATHY_LOCATION_LAT) == FALSE)
901     return _("Latitude:");
902   else if (tp_strdiff (key, EMPATHY_LOCATION_ALT) == FALSE)
903     return _("Altitude:");
904   else
905   {
906     DEBUG ("Unexpected Location key: %s", key);
907     return key;
908   }
909 }
910
911 static void
912 contact_widget_location_update (EmpathyContactWidget *information)
913 {
914   GHashTable *location;
915   GValue *value;
916   gdouble lat = 0.0, lon = 0.0;
917   gboolean has_position = TRUE;
918   GtkWidget *label;
919   guint row = 0;
920   static const gchar* ordered_geolocation_keys[] = {
921     EMPATHY_LOCATION_TEXT,
922     EMPATHY_LOCATION_URI,
923     EMPATHY_LOCATION_DESCRIPTION,
924     EMPATHY_LOCATION_BUILDING,
925     EMPATHY_LOCATION_FLOOR,
926     EMPATHY_LOCATION_ROOM,
927     EMPATHY_LOCATION_STREET,
928     EMPATHY_LOCATION_AREA,
929     EMPATHY_LOCATION_LOCALITY,
930     EMPATHY_LOCATION_REGION,
931     EMPATHY_LOCATION_COUNTRY,
932     NULL
933   };
934   int i;
935   const gchar *skey;
936   gboolean display_map = FALSE;
937
938   if (!(information->flags & EMPATHY_CONTACT_WIDGET_SHOW_LOCATION))
939     {
940       gtk_widget_hide (information->vbox_location);
941       return;
942     }
943
944   location = empathy_contact_get_location (information->contact);
945   if (location == NULL || g_hash_table_size (location) == 0)
946     {
947       gtk_widget_hide (information->vbox_location);
948       return;
949     }
950
951   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LAT);
952   if (value == NULL)
953       has_position = FALSE;
954   else
955       lat = g_value_get_double (value);
956
957   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LON);
958   if (value == NULL)
959       has_position = FALSE;
960   else
961       lon = g_value_get_double (value);
962
963   value = g_hash_table_lookup (location, EMPATHY_LOCATION_TIMESTAMP);
964   if (value == NULL)
965     {
966       gchar *loc = g_strdup_printf ("<b>%s</b>", _("Location"));
967       gtk_label_set_markup (GTK_LABEL (information->label_location), loc);
968       g_free (loc);
969     }
970   else
971     {
972       gchar *user_date;
973       gchar *text;
974       gint64 stamp;
975       time_t time_;
976
977       stamp = g_value_get_int64 (value);
978       time_ = stamp;
979
980       user_date = empathy_time_to_string_relative (time_);
981
982       text = g_strconcat ( _("<b>Location</b>, "), user_date, NULL);
983       gtk_label_set_markup (GTK_LABEL (information->label_location), text);
984       g_free (user_date);
985       g_free (text);
986     }
987
988
989   /* Prepare the location information table */
990   if (information->table_location != NULL)
991     {
992       gtk_widget_destroy (information->table_location);
993     }
994
995   information->table_location = gtk_table_new (1, 2, FALSE);
996   gtk_box_pack_start (GTK_BOX (information->subvbox_location),
997       information->table_location, FALSE, FALSE, 5);
998
999
1000   for (i = 0; (skey = ordered_geolocation_keys[i]); i++)
1001     {
1002       const gchar* user_label;
1003       GValue *gvalue;
1004       char *svalue = NULL;
1005
1006       gvalue = g_hash_table_lookup (location, (gpointer) skey);
1007       if (gvalue == NULL)
1008         continue;
1009
1010       user_label = location_key_to_label (skey);
1011
1012       label = gtk_label_new (user_label);
1013       gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
1014       gtk_table_attach (GTK_TABLE (information->table_location),
1015           label, 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 10, 0);
1016       gtk_widget_show (label);
1017
1018       if (G_VALUE_TYPE (gvalue) == G_TYPE_DOUBLE)
1019         {
1020           gdouble dvalue;
1021           dvalue = g_value_get_double (gvalue);
1022           svalue = g_strdup_printf ("%f", dvalue);
1023         }
1024       else if (G_VALUE_TYPE (gvalue) == G_TYPE_STRING)
1025         {
1026           svalue = g_value_dup_string (gvalue);
1027         }
1028       else if (G_VALUE_TYPE (gvalue) == G_TYPE_INT64)
1029         {
1030           time_t time_;
1031
1032           time_ = g_value_get_int64 (value);
1033           svalue = empathy_time_to_string_utc (time_, _("%B %e, %Y at %R UTC"));
1034         }
1035
1036       if (svalue != NULL)
1037         {
1038           label = gtk_label_new (svalue);
1039           gtk_table_attach_defaults (GTK_TABLE (information->table_location),
1040               label, 1, 2, row, row + 1);
1041           gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
1042           gtk_widget_show (label);
1043
1044           if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1045             gtk_label_set_selectable (GTK_LABEL (label), TRUE);
1046         }
1047
1048       g_free (svalue);
1049       row++;
1050     }
1051
1052 #if HAVE_LIBCHAMPLAIN
1053   if (has_position &&
1054       !(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1055     {
1056       /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such
1057        * windows */
1058       display_map = TRUE;
1059     }
1060 #endif
1061
1062   if (row > 0)
1063     {
1064       /* We can display some fields */
1065       gtk_widget_show (information->table_location);
1066     }
1067   else if (!display_map)
1068     {
1069       /* Can't display either fields or map */
1070       gtk_widget_hide (information->vbox_location);
1071       return;
1072     }
1073
1074 #if HAVE_LIBCHAMPLAIN
1075   if (display_map)
1076     {
1077       ClutterActor *marker;
1078       ChamplainLayer *layer;
1079
1080       information->map_view_embed = gtk_champlain_embed_new ();
1081       information->map_view = gtk_champlain_embed_get_view (
1082           GTK_CHAMPLAIN_EMBED (information->map_view_embed));
1083
1084       gtk_container_add (GTK_CONTAINER (information->viewport_map),
1085           information->map_view_embed);
1086       g_object_set (G_OBJECT (information->map_view),
1087           "show-license", TRUE,
1088           "scroll-mode", CHAMPLAIN_SCROLL_MODE_KINETIC,
1089           "zoom-level", 10,
1090           NULL);
1091
1092       layer = champlain_layer_new ();
1093       champlain_view_add_layer (information->map_view, layer);
1094
1095       marker = champlain_marker_new_with_text (
1096           empathy_contact_get_name (information->contact), NULL, NULL, NULL);
1097       champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), lat, lon);
1098       clutter_container_add (CLUTTER_CONTAINER (layer), marker, NULL);
1099
1100       champlain_view_center_on (information->map_view, lat, lon);
1101       gtk_widget_show_all (information->viewport_map);
1102     }
1103 #endif
1104
1105     gtk_widget_show (information->vbox_location);
1106 }
1107
1108 static void
1109 save_avatar_menu_activate_cb (GtkWidget *widget,
1110                               EmpathyContactWidget *information)
1111 {
1112   GtkWidget *dialog;
1113   EmpathyAvatar *avatar;
1114   gchar *ext = NULL, *filename;
1115
1116   dialog = gtk_file_chooser_dialog_new (_("Save Avatar"),
1117       NULL,
1118       GTK_FILE_CHOOSER_ACTION_SAVE,
1119       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1120       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
1121       NULL);
1122
1123   gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
1124       TRUE);
1125
1126   /* look for the avatar extension */
1127   avatar = empathy_contact_get_avatar (information->contact);
1128   if (avatar->format != NULL)
1129     {
1130       gchar **splitted;
1131
1132       splitted = g_strsplit (avatar->format, "/", 2);
1133       if (splitted[0] != NULL && splitted[1] != NULL)
1134           ext = g_strdup (splitted[1]);
1135
1136       g_strfreev (splitted);
1137     }
1138   else
1139     {
1140       /* Avatar was loaded from the cache so was converted to PNG */
1141       ext = g_strdup ("png");
1142     }
1143
1144   if (ext != NULL)
1145     {
1146       gchar *id;
1147
1148       id = tp_escape_as_identifier (empathy_contact_get_id (
1149             information->contact));
1150
1151       filename = g_strdup_printf ("%s.%s", id, ext);
1152       gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), filename);
1153
1154       g_free (id);
1155       g_free (ext);
1156       g_free (filename);
1157     }
1158
1159   if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
1160     {
1161       GError *error = NULL;
1162
1163       filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
1164
1165       if (!empathy_avatar_save_to_file (avatar, filename, &error))
1166         {
1167           /* Save error */
1168           GtkWidget *error_dialog;
1169
1170           error_dialog = gtk_message_dialog_new (NULL, 0,
1171               GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
1172               _("Unable to save avatar"));
1173
1174           gtk_message_dialog_format_secondary_text (
1175               GTK_MESSAGE_DIALOG (error_dialog), "%s", error->message);
1176
1177           g_signal_connect (error_dialog, "response",
1178               G_CALLBACK (gtk_widget_destroy), NULL);
1179
1180           gtk_window_present (GTK_WINDOW (error_dialog));
1181
1182           g_clear_error (&error);
1183         }
1184
1185       g_free (filename);
1186     }
1187
1188   gtk_widget_destroy (dialog);
1189 }
1190
1191 static void
1192 popup_avatar_menu (EmpathyContactWidget *information,
1193                    GtkWidget *parent,
1194                    GdkEventButton *event)
1195 {
1196   GtkWidget *menu, *item;
1197   gint button, event_time;
1198
1199   if (information->contact == NULL ||
1200       empathy_contact_get_avatar (information->contact) == NULL)
1201       return;
1202
1203   menu = gtk_menu_new ();
1204
1205   /* Add "Save as..." entry */
1206   item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SAVE_AS, NULL);
1207   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
1208   gtk_widget_show (item);
1209
1210   g_signal_connect (item, "activate",
1211       G_CALLBACK (save_avatar_menu_activate_cb), information);
1212
1213   if (event)
1214     {
1215       button = event->button;
1216       event_time = event->time;
1217     }
1218   else
1219     {
1220       button = 0;
1221       event_time = gtk_get_current_event_time ();
1222     }
1223
1224   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
1225       button, event_time);
1226   g_object_ref_sink (menu);
1227   g_object_unref (menu);
1228 }
1229
1230 static gboolean
1231 widget_avatar_popup_menu_cb (GtkWidget *widget,
1232                              EmpathyContactWidget *information)
1233 {
1234   popup_avatar_menu (information, widget, NULL);
1235
1236   return TRUE;
1237 }
1238
1239 static gboolean
1240 widget_avatar_button_press_event_cb (GtkWidget *widget,
1241                                      GdkEventButton *event,
1242                                      EmpathyContactWidget *information)
1243 {
1244   /* Ignore double-clicks and triple-clicks */
1245   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
1246     {
1247       popup_avatar_menu (information, widget, event);
1248       return TRUE;
1249     }
1250
1251   return FALSE;
1252 }
1253
1254 static void
1255 set_avatar_cb (GObject *source,
1256     GAsyncResult *res,
1257     gpointer user_data)
1258 {
1259   GError *error = NULL;
1260
1261   if (!tp_account_set_avatar_finish (TP_ACCOUNT (source), res, &error)) {
1262       DEBUG ("Failed to set Account.Avatar: %s", error->message);
1263       g_error_free (error);
1264   }
1265 }
1266
1267 static void
1268 set_avatar_on_account (TpAccount *account,
1269     const gchar *data,
1270     gsize size,
1271     const gchar *mime_type)
1272 {
1273   DEBUG ("%s Account.Avatar on %s", size > 0 ? "Set": "Clear",
1274       tp_proxy_get_object_path (account));
1275
1276   tp_account_set_avatar_async (account, (const guchar *) data, size,
1277       mime_type, set_avatar_cb, NULL);
1278 }
1279
1280 static void
1281 contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
1282                                   EmpathyContactWidget *information)
1283 {
1284   const gchar *data;
1285   gsize size;
1286   const gchar *mime_type;
1287   TpAccount *account;
1288
1289   empathy_avatar_chooser_get_image_data (
1290       EMPATHY_AVATAR_CHOOSER (information->widget_avatar),
1291       &data, &size, &mime_type);
1292
1293   account = empathy_contact_get_account (information->contact);
1294   set_avatar_on_account (account, data, size, mime_type);
1295 }
1296
1297 static void
1298 set_nickname_cb (GObject *source,
1299     GAsyncResult *res,
1300     gpointer user_data)
1301 {
1302   GError *error = NULL;
1303
1304   if (!tp_account_set_nickname_finish (TP_ACCOUNT (source), res, &error))
1305     {
1306       DEBUG ("Failed to set Account.Nickname: %s", error->message);
1307       g_error_free (error);
1308     }
1309 }
1310
1311 static void
1312 set_alias_on_account (TpAccount *account,
1313     const gchar *alias)
1314 {
1315   DEBUG ("Set Account.Nickname to %s", alias);
1316
1317   tp_account_set_nickname_async (account, alias, set_nickname_cb, NULL);
1318 }
1319
1320 static gboolean
1321 contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
1322                                            GdkEventFocus *event,
1323                                            EmpathyContactWidget *information)
1324 {
1325   if (information->contact)
1326     {
1327       const gchar *alias;
1328
1329       alias = gtk_entry_get_text (GTK_ENTRY (editable));
1330
1331       if (empathy_contact_is_user (information->contact))
1332         {
1333           TpAccount * account;
1334
1335           account = empathy_contact_get_account (information->contact);
1336           set_alias_on_account (account, alias);
1337         }
1338       else
1339         {
1340           FolksIndividual *individual = folks_individual_from_empathy_contact (
1341               information->contact);
1342
1343           if (individual != NULL)
1344             {
1345               folks_alias_set_alias (FOLKS_ALIAS (individual), alias);
1346               g_object_unref (individual);
1347             }
1348         }
1349     }
1350
1351   return FALSE;
1352 }
1353
1354 static void
1355 update_avatar_chooser_account_cb (EmpathyAccountChooser *account_chooser,
1356                                   EmpathyAvatarChooser *avatar_chooser)
1357 {
1358   TpAccount *account;
1359
1360   account = empathy_account_chooser_get_account (account_chooser);
1361   if (account == NULL)
1362     return;
1363
1364   empathy_avatar_chooser_set_account (avatar_chooser, account);
1365 }
1366
1367 static void
1368 contact_widget_avatar_notify_cb (EmpathyContactWidget *information)
1369 {
1370   EmpathyAvatar *avatar = NULL;
1371
1372   if (information->contact)
1373       avatar = empathy_contact_get_avatar (information->contact);
1374
1375   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
1376     {
1377       g_signal_handlers_block_by_func (information->widget_avatar,
1378           contact_widget_avatar_changed_cb,
1379           information);
1380       empathy_avatar_chooser_set (
1381           EMPATHY_AVATAR_CHOOSER (information->widget_avatar), avatar);
1382       g_signal_handlers_unblock_by_func (information->widget_avatar,
1383           contact_widget_avatar_changed_cb, information);
1384     }
1385   else
1386       empathy_avatar_image_set (
1387           EMPATHY_AVATAR_IMAGE (information->widget_avatar), avatar);
1388 }
1389
1390 static void
1391 contact_widget_name_notify_cb (EmpathyContactWidget *information)
1392 {
1393   if (GTK_IS_ENTRY (information->widget_alias))
1394       gtk_entry_set_text (GTK_ENTRY (information->widget_alias),
1395           empathy_contact_get_name (information->contact));
1396   else
1397       gtk_label_set_label (GTK_LABEL (information->widget_alias),
1398           empathy_contact_get_name (information->contact));
1399 }
1400
1401 static void
1402 contact_widget_presence_notify_cb (EmpathyContactWidget *information)
1403 {
1404   const gchar *status;
1405   gchar *markup_text = NULL;
1406
1407   status = empathy_contact_get_status (information->contact);
1408   if (status != NULL)
1409     markup_text = empathy_add_link_markup (status);
1410   gtk_label_set_markup (GTK_LABEL (information->label_status), markup_text);
1411   g_free (markup_text);
1412
1413   gtk_image_set_from_icon_name (GTK_IMAGE (information->image_state),
1414       empathy_icon_name_for_contact (information->contact),
1415       GTK_ICON_SIZE_BUTTON);
1416   gtk_widget_show (information->image_state);
1417 }
1418
1419 static void
1420 contact_widget_favourites_changed_cb (EmpathyContactManager *manager,
1421     EmpathyContact *contact,
1422     gboolean is_favourite,
1423     EmpathyContactWidget *information)
1424 {
1425   if (contact != information->contact)
1426     return;
1427
1428   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (
1429             information->favourite_checkbox), is_favourite);
1430 }
1431
1432 static void
1433 contact_widget_remove_contact (EmpathyContactWidget *information)
1434 {
1435   if (information->contact)
1436     {
1437       TpContact *tp_contact;
1438
1439       contact_widget_save (information);
1440
1441       g_signal_handlers_disconnect_by_func (information->contact,
1442           contact_widget_name_notify_cb, information);
1443       g_signal_handlers_disconnect_by_func (information->contact,
1444           contact_widget_presence_notify_cb, information);
1445       g_signal_handlers_disconnect_by_func (information->contact,
1446           contact_widget_avatar_notify_cb, information);
1447       g_signal_handlers_disconnect_by_func (information->contact,
1448           contact_widget_groups_notify_cb, information);
1449
1450       tp_contact = empathy_contact_get_tp_contact (information->contact);
1451       if (tp_contact != NULL)
1452         {
1453           g_signal_handlers_disconnect_by_func (tp_contact,
1454               contact_widget_details_notify_cb, information);
1455         }
1456
1457       g_object_unref (information->contact);
1458       information->contact = NULL;
1459     }
1460
1461   if (information->details_cancellable != NULL)
1462     {
1463       g_cancellable_cancel (information->details_cancellable);
1464       g_object_unref (information->details_cancellable);
1465       information->details_cancellable = NULL;
1466     }
1467 }
1468
1469 static void contact_widget_change_contact (EmpathyContactWidget *information);
1470
1471 static void
1472 contact_widget_contact_update (EmpathyContactWidget *information)
1473 {
1474   TpAccount *account = NULL;
1475   const gchar *id = NULL;
1476
1477   /* Connect and get info from new contact */
1478   if (information->contact)
1479     {
1480       g_signal_connect_swapped (information->contact, "notify::name",
1481           G_CALLBACK (contact_widget_name_notify_cb), information);
1482       g_signal_connect_swapped (information->contact, "notify::presence",
1483           G_CALLBACK (contact_widget_presence_notify_cb), information);
1484       g_signal_connect_swapped (information->contact,
1485           "notify::presence-message",
1486           G_CALLBACK (contact_widget_presence_notify_cb), information);
1487       g_signal_connect_swapped (information->contact, "notify::avatar",
1488           G_CALLBACK (contact_widget_avatar_notify_cb), information);
1489
1490       account = empathy_contact_get_account (information->contact);
1491       id = empathy_contact_get_id (information->contact);
1492     }
1493
1494   /* Update account widget */
1495   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
1496     {
1497       if (account)
1498         {
1499           g_signal_handlers_block_by_func (information->widget_account,
1500                    contact_widget_change_contact,
1501                    information);
1502           empathy_account_chooser_set_account (
1503               EMPATHY_ACCOUNT_CHOOSER (information->widget_account), account);
1504           g_signal_handlers_unblock_by_func (information->widget_account,
1505               contact_widget_change_contact, information);
1506         }
1507     }
1508   else
1509     {
1510       if (account)
1511         {
1512           const gchar *name;
1513
1514           name = tp_account_get_display_name (account);
1515           gtk_label_set_label (GTK_LABEL (information->label_account), name);
1516
1517           name = tp_account_get_icon_name (account);
1518           gtk_image_set_from_icon_name (GTK_IMAGE (information->image_account),
1519               name, GTK_ICON_SIZE_MENU);
1520         }
1521     }
1522
1523   /* Update id widget */
1524   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1525       gtk_entry_set_text (GTK_ENTRY (information->widget_id), id ? id : "");
1526   else
1527       gtk_label_set_label (GTK_LABEL (information->widget_id), id ? id : "");
1528
1529   /* Update other widgets */
1530   if (information->contact)
1531     {
1532       contact_widget_name_notify_cb (information);
1533       contact_widget_presence_notify_cb (information);
1534       contact_widget_avatar_notify_cb (information);
1535
1536       if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_FAVOURITE)
1537         {
1538           FolksIndividual *individual = folks_individual_from_empathy_contact (
1539               information->contact);
1540
1541           if (individual != NULL)
1542             {
1543               gboolean is_favourite = folks_favourite_get_is_favourite (
1544                   FOLKS_FAVOURITE (individual));
1545               contact_widget_favourites_changed_cb (information->manager,
1546                   information->contact, is_favourite, information);
1547
1548               g_object_unref (individual);
1549             }
1550         }
1551
1552       gtk_widget_show (information->label_alias);
1553       gtk_widget_show (information->widget_alias);
1554       gtk_widget_show (information->hbox_presence);
1555       gtk_widget_show (information->widget_avatar);
1556     }
1557   else
1558     {
1559       gtk_widget_hide (information->label_alias);
1560       gtk_widget_hide (information->widget_alias);
1561       gtk_widget_hide (information->hbox_presence);
1562       gtk_widget_hide (information->widget_avatar);
1563     }
1564 }
1565
1566 static void
1567 contact_widget_set_contact (EmpathyContactWidget *information,
1568                             EmpathyContact *contact)
1569 {
1570   if (contact == information->contact)
1571     return;
1572
1573   contact_widget_remove_contact (information);
1574   if (contact)
1575     information->contact = g_object_ref (contact);
1576
1577   /* set the selected account to be the account this contact came from */
1578   if (contact && EMPATHY_IS_ACCOUNT_CHOOSER (information->widget_account)) {
1579       empathy_account_chooser_set_account (
1580                       EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
1581                       empathy_contact_get_account (contact));
1582   }
1583
1584   /* Update information for widgets */
1585   contact_widget_contact_update (information);
1586   contact_widget_groups_update (information);
1587   contact_widget_details_update (information);
1588   contact_widget_client_update (information);
1589   contact_widget_location_update (information);
1590 }
1591
1592 static void
1593 contact_widget_got_contact_cb (TpConnection *connection,
1594                                EmpathyContact *contact,
1595                                const GError *error,
1596                                gpointer user_data,
1597                                GObject *weak_object)
1598 {
1599   EmpathyContactWidget *information = user_data;
1600
1601   if (error != NULL)
1602     {
1603       DEBUG ("Error: %s", error->message);
1604       return;
1605     }
1606
1607   contact_widget_set_contact (information, contact);
1608 }
1609
1610 static void
1611 contact_widget_change_contact (EmpathyContactWidget *information)
1612 {
1613   TpConnection *connection;
1614
1615   connection = empathy_account_chooser_get_connection (
1616       EMPATHY_ACCOUNT_CHOOSER (information->widget_account));
1617   if (!connection)
1618       return;
1619
1620   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1621     {
1622       const gchar *id;
1623
1624       id = gtk_entry_get_text (GTK_ENTRY (information->widget_id));
1625       if (!EMP_STR_EMPTY (id))
1626         {
1627           empathy_tp_contact_factory_get_from_id (connection, id,
1628               contact_widget_got_contact_cb, information, NULL,
1629               G_OBJECT (information->vbox_contact_widget));
1630         }
1631     }
1632   else
1633     {
1634       empathy_tp_contact_factory_get_from_handle (connection,
1635           tp_connection_get_self_handle (connection),
1636           contact_widget_got_contact_cb, information, NULL,
1637           G_OBJECT (information->vbox_contact_widget));
1638     }
1639 }
1640
1641 static gboolean
1642 contact_widget_id_activate_timeout (EmpathyContactWidget *self)
1643 {
1644   contact_widget_change_contact (self);
1645   return FALSE;
1646 }
1647
1648 static void
1649 contact_widget_id_changed_cb (GtkEntry *entry,
1650                               EmpathyContactWidget *self)
1651 {
1652   if (self->widget_id_timeout != 0)
1653     {
1654       g_source_remove (self->widget_id_timeout);
1655     }
1656
1657   self->widget_id_timeout =
1658     g_timeout_add_seconds (ID_CHANGED_TIMEOUT,
1659         (GSourceFunc) contact_widget_id_activate_timeout, self);
1660 }
1661
1662 static gboolean
1663 contact_widget_id_focus_out_cb (GtkWidget *widget,
1664                                 GdkEventFocus *event,
1665                                 EmpathyContactWidget *information)
1666 {
1667   contact_widget_change_contact (information);
1668   return FALSE;
1669 }
1670
1671 static void
1672 favourite_toggled_cb (GtkToggleButton *button,
1673     EmpathyContactWidget *information)
1674 {
1675   FolksIndividual *individual = folks_individual_from_empathy_contact (
1676       information->contact);
1677
1678   if (individual != NULL)
1679     {
1680       gboolean active = gtk_toggle_button_get_active (button);
1681       folks_favourite_set_is_favourite (FOLKS_FAVOURITE (individual), active);
1682       g_object_unref (individual);
1683     }
1684 }
1685
1686 static void
1687 contact_widget_contact_setup (EmpathyContactWidget *information)
1688 {
1689   /* Setup label_status as a KludgeLabel */
1690   information->label_status = empathy_kludge_label_new ("");
1691   gtk_label_set_line_wrap_mode (GTK_LABEL (information->label_status),
1692                                 PANGO_WRAP_WORD_CHAR);
1693   gtk_label_set_line_wrap (GTK_LABEL (information->label_status),
1694                            TRUE);
1695
1696   if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1697     gtk_label_set_selectable (GTK_LABEL (information->label_status), TRUE);
1698
1699   gtk_box_pack_start (GTK_BOX (information->hbox_presence),
1700         information->label_status, TRUE, TRUE, 0);
1701   gtk_widget_show (information->label_status);
1702
1703   /* Setup account label/chooser */
1704   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
1705     {
1706       information->widget_account = empathy_account_chooser_new ();
1707
1708       g_signal_connect_swapped (information->widget_account, "changed",
1709             G_CALLBACK (contact_widget_change_contact),
1710             information);
1711     }
1712   else
1713     {
1714       /* Pack the protocol icon with the account name in an hbox */
1715       information->widget_account = gtk_hbox_new (FALSE, 6);
1716
1717       information->label_account = gtk_label_new (NULL);
1718       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
1719         gtk_label_set_selectable (GTK_LABEL (information->label_account), TRUE);
1720       }
1721       gtk_misc_set_alignment (GTK_MISC (information->label_account), 0, 0.5);
1722       gtk_widget_show (information->label_account);
1723
1724       information->image_account = gtk_image_new ();
1725       gtk_widget_show (information->image_account);
1726
1727       gtk_box_pack_start (GTK_BOX (information->widget_account),
1728           information->image_account, FALSE, FALSE, 0);
1729       gtk_box_pack_start (GTK_BOX (information->widget_account),
1730           information->label_account, FALSE, TRUE, 0);
1731     }
1732   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1733            information->widget_account,
1734            1, 2, 0, 1);
1735   gtk_widget_show (information->widget_account);
1736
1737   /* Set up avatar chooser/display */
1738   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
1739     {
1740       information->widget_avatar = empathy_avatar_chooser_new ();
1741       g_signal_connect (information->widget_avatar, "changed",
1742             G_CALLBACK (contact_widget_avatar_changed_cb),
1743             information);
1744       if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
1745         {
1746           g_signal_connect (information->widget_account, "changed",
1747               G_CALLBACK (update_avatar_chooser_account_cb),
1748               information->widget_avatar);
1749           update_avatar_chooser_account_cb (
1750               EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
1751               EMPATHY_AVATAR_CHOOSER (information->widget_avatar));
1752         }
1753     }
1754   else
1755     {
1756       information->widget_avatar = empathy_avatar_image_new ();
1757
1758       g_signal_connect (information->widget_avatar, "popup-menu",
1759           G_CALLBACK (widget_avatar_popup_menu_cb), information);
1760       g_signal_connect (information->widget_avatar, "button-press-event",
1761           G_CALLBACK (widget_avatar_button_press_event_cb), information);
1762     }
1763
1764   gtk_box_pack_start (GTK_BOX (information->vbox_avatar),
1765           information->widget_avatar,
1766           FALSE, FALSE,
1767           6);
1768   gtk_widget_show (information->widget_avatar);
1769
1770   /* Setup id label/entry */
1771   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1772     {
1773       information->widget_id = gtk_entry_new ();
1774       g_signal_connect (information->widget_id, "focus-out-event",
1775             G_CALLBACK (contact_widget_id_focus_out_cb),
1776             information);
1777       g_signal_connect (information->widget_id, "changed",
1778             G_CALLBACK (contact_widget_id_changed_cb),
1779             information);
1780     }
1781   else
1782     {
1783       information->widget_id = gtk_label_new (NULL);
1784       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
1785         gtk_label_set_selectable (GTK_LABEL (information->widget_id), TRUE);
1786       }
1787       gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5);
1788     }
1789   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1790            information->widget_id,
1791            1, 2, 1, 2);
1792   gtk_widget_show (information->widget_id);
1793
1794   /* Setup alias label/entry */
1795   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ALIAS)
1796     {
1797       information->widget_alias = gtk_entry_new ();
1798
1799       if (!(information->flags & EMPATHY_CONTACT_WIDGET_NO_SET_ALIAS))
1800         g_signal_connect (information->widget_alias, "focus-out-event",
1801               G_CALLBACK (contact_widget_entry_alias_focus_event_cb),
1802               information);
1803
1804       /* Make return activate the window default (the Close button) */
1805       gtk_entry_set_activates_default (GTK_ENTRY (information->widget_alias),
1806           TRUE);
1807     }
1808   else
1809     {
1810       information->widget_alias = gtk_label_new (NULL);
1811       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
1812         gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE);
1813       }
1814       gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5);
1815     }
1816   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1817            information->widget_alias,
1818            1, 2, 2, 3);
1819   if (information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) {
1820     gtk_label_set_selectable (GTK_LABEL (information->label_status), FALSE);
1821   }
1822   gtk_widget_show (information->widget_alias);
1823
1824   /* Favorite */
1825   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_FAVOURITE)
1826     {
1827       information->favourite_checkbox = gtk_check_button_new_with_label (
1828           _("Favorite"));
1829
1830       g_signal_connect (information->favourite_checkbox, "toggled",
1831           G_CALLBACK (favourite_toggled_cb), information);
1832
1833       gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
1834            information->favourite_checkbox, 0, 2, 3, 4);
1835
1836       information->fav_sig_id = g_signal_connect (information->manager,
1837           "favourites-changed",
1838           G_CALLBACK (contact_widget_favourites_changed_cb), information);
1839
1840       gtk_widget_show (information->favourite_checkbox);
1841     }
1842 }
1843
1844 static void
1845 contact_widget_destroy_cb (GtkWidget *widget,
1846                            EmpathyContactWidget *information)
1847 {
1848   contact_widget_remove_contact (information);
1849
1850   if (information->widget_id_timeout != 0)
1851     {
1852       g_source_remove (information->widget_id_timeout);
1853     }
1854
1855   if (information->fav_sig_id != 0)
1856     g_signal_handler_disconnect (information->manager, information->fav_sig_id);
1857
1858   g_object_unref (information->manager);
1859
1860   g_slice_free (EmpathyContactWidget, information);
1861 }
1862
1863 /**
1864  * empathy_contact_widget_new:
1865  * @contact: an #EmpathyContact
1866  * @flags: #EmpathyContactWidgetFlags for the new contact widget
1867  *
1868  * Creates a new #EmpathyContactWidget.
1869  *
1870  * Return value: a new #EmpathyContactWidget
1871  */
1872 GtkWidget *
1873 empathy_contact_widget_new (EmpathyContact *contact,
1874                             EmpathyContactWidgetFlags flags)
1875 {
1876   EmpathyContactWidget *information;
1877   GtkBuilder *gui;
1878   gchar *filename;
1879
1880   g_return_val_if_fail (contact == NULL || EMPATHY_IS_CONTACT (contact), NULL);
1881
1882   information = g_slice_new0 (EmpathyContactWidget);
1883   information->flags = flags;
1884
1885   filename = empathy_file_lookup ("empathy-contact-widget.ui",
1886       "libempathy-gtk");
1887   gui = empathy_builder_get_file (filename,
1888        "vbox_contact_widget", &information->vbox_contact_widget,
1889        "hbox_contact", &information->hbox_contact,
1890        "hbox_presence", &information->hbox_presence,
1891        "label_alias", &information->label_alias,
1892        "image_state", &information->image_state,
1893        "table_contact", &information->table_contact,
1894        "vbox_avatar", &information->vbox_avatar,
1895        "vbox_location", &information->vbox_location,
1896        "subvbox_location", &information->subvbox_location,
1897        "label_location", &information->label_location,
1898 #if HAVE_LIBCHAMPLAIN
1899        "viewport_map", &information->viewport_map,
1900 #endif
1901        "vbox_groups", &information->vbox_groups,
1902        "entry_group", &information->entry_group,
1903        "button_group", &information->button_group,
1904        "treeview_groups", &information->treeview_groups,
1905        "vbox_details", &information->vbox_details,
1906        "table_details", &information->table_details,
1907        "hbox_details_requested", &information->hbox_details_requested,
1908        "vbox_client", &information->vbox_client,
1909        "table_client", &information->table_client,
1910        "hbox_client_requested", &information->hbox_client_requested,
1911        NULL);
1912   g_free (filename);
1913
1914   empathy_builder_connect (gui, information,
1915       "vbox_contact_widget", "destroy", contact_widget_destroy_cb,
1916       "entry_group", "changed", contact_widget_entry_group_changed_cb,
1917       "entry_group", "activate", contact_widget_entry_group_activate_cb,
1918       "button_group", "clicked", contact_widget_button_group_clicked_cb,
1919       NULL);
1920   information->table_location = NULL;
1921
1922   g_object_set_data (G_OBJECT (information->vbox_contact_widget),
1923       "EmpathyContactWidget",
1924       information);
1925
1926   information->manager = empathy_contact_manager_dup_singleton ();
1927
1928   /* Create widgets */
1929   contact_widget_contact_setup (information);
1930   contact_widget_groups_setup (information);
1931   contact_widget_details_setup (information);
1932   contact_widget_client_setup (information);
1933
1934   if (contact != NULL)
1935     contact_widget_set_contact (information, contact);
1936   else if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT ||
1937       information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
1938     contact_widget_change_contact (information);
1939
1940   return empathy_builder_unref_and_keep_widget (gui,
1941     information->vbox_contact_widget);
1942 }
1943
1944 /**
1945  * empathy_contact_widget_get_contact:
1946  * @widget: an #EmpathyContactWidget
1947  *
1948  * Get the #EmpathyContact related with the #EmpathyContactWidget @widget.
1949  *
1950  * Returns: the #EmpathyContact associated with @widget
1951  */
1952 EmpathyContact *
1953 empathy_contact_widget_get_contact (GtkWidget *widget)
1954 {
1955   EmpathyContactWidget *information;
1956
1957   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
1958
1959   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
1960   if (!information)
1961       return NULL;
1962
1963   return information->contact;
1964 }
1965
1966 const gchar *
1967 empathy_contact_widget_get_alias (GtkWidget *widget)
1968 {
1969   EmpathyContactWidget *information;
1970
1971   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
1972
1973   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
1974   if (!information)
1975       return NULL;
1976
1977   return gtk_entry_get_text (GTK_ENTRY (information->widget_alias));
1978 }
1979
1980 /**
1981  * empathy_contact_widget_set_contact:
1982  * @widget: an #EmpathyContactWidget
1983  * @contact: a different #EmpathyContact
1984  *
1985  * Change the #EmpathyContact related with the #EmpathyContactWidget @widget.
1986  */
1987 void
1988 empathy_contact_widget_set_contact (GtkWidget *widget,
1989                                     EmpathyContact *contact)
1990 {
1991   EmpathyContactWidget *information;
1992
1993   g_return_if_fail (GTK_IS_WIDGET (widget));
1994   g_return_if_fail (EMPATHY_IS_CONTACT (contact));
1995
1996   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
1997   if (!information)
1998     return;
1999
2000   contact_widget_set_contact (information, contact);
2001 }
2002
2003 /**
2004  * empathy_contact_widget_set_account_filter:
2005  * @widget: an #EmpathyContactWidget
2006  * @filter: a #EmpathyAccountChooserFilterFunc
2007  * @user_data: user data to pass to @filter, or %NULL
2008  *
2009  * Set a filter on the #EmpathyAccountChooser included in the
2010  * #EmpathyContactWidget.
2011  */
2012 void
2013 empathy_contact_widget_set_account_filter (
2014     GtkWidget *widget,
2015     EmpathyAccountChooserFilterFunc filter,
2016     gpointer user_data)
2017 {
2018   EmpathyContactWidget *information;
2019   EmpathyAccountChooser *chooser;
2020
2021   g_return_if_fail (GTK_IS_WIDGET (widget));
2022
2023   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
2024   if (!information)
2025     return;
2026
2027   chooser = EMPATHY_ACCOUNT_CHOOSER (information->widget_account);
2028   if (chooser)
2029       empathy_account_chooser_set_filter (chooser, filter, user_data);
2030 }
2031