]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-individual-widget.c
Adjust for Folks PresenceOwner -> PresenceDetails rename
[empathy.git] / libempathy-gtk / empathy-individual-widget.c
1 /*
2  * Copyright (C) 2007-2010 Collabora Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Xavier Claessens <xclaesse@gmail.com>
19  *          Philip Withnall <philip.withnall@collabora.co.uk>
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 #include <telepathy-glib/util.h>
31
32 #include <folks/folks.h>
33 #include <folks/folks-telepathy.h>
34
35 #ifdef HAVE_LIBCHAMPLAIN
36 #include <champlain/champlain.h>
37 #include <champlain-gtk/champlain-gtk.h>
38 #endif
39
40 #include <libempathy/empathy-utils.h>
41 #include <libempathy/empathy-location.h>
42 #include <libempathy/empathy-time.h>
43
44 #include "empathy-avatar-image.h"
45 #include "empathy-groups-widget.h"
46 #include "empathy-gtk-enum-types.h"
47 #include "empathy-individual-widget.h"
48 #include "empathy-string-parser.h"
49 #include "empathy-ui-utils.h"
50
51 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
52 #include <libempathy/empathy-debug.h>
53
54 /**
55  * SECTION:empathy-individual-widget
56  * @title:EmpathyIndividualWidget
57  * @short_description: A widget used to display and edit details about an
58  * individual
59  * @include: libempathy-empathy-individual-widget.h
60  *
61  * #EmpathyIndividualWidget is a widget which displays appropriate widgets
62  * with details about an individual, also allowing changing these details,
63  * if desired.
64  */
65
66 /**
67  * EmpathyIndividualWidget:
68  * @parent: parent object
69  *
70  * Widget which displays appropriate widgets with details about an individual,
71  * also allowing changing these details, if desired.
72  */
73
74 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyIndividualWidget)
75
76 typedef struct {
77   FolksIndividual *individual; /* owned */
78   EmpathyIndividualWidgetFlags flags;
79
80   /* weak pointer to the contact whose contact details we're displaying */
81   TpContact *contact;
82
83   /* unowned Persona (borrowed from priv->individual) -> GtkTable child */
84   GHashTable *persona_tables;
85   /* Table containing the information for the individual as whole, or NULL */
86   GtkTable *individual_table;
87
88   /* Individual */
89   GtkWidget *hbox_presence;
90   GtkWidget *vbox_individual_widget;
91   GtkWidget *scrolled_window_individual;
92   GtkWidget *viewport_individual;
93   GtkWidget *vbox_individual;
94
95   /* Location */
96   GtkWidget *vbox_location;
97   GtkWidget *subvbox_location;
98   GtkWidget *table_location;
99   GtkWidget *label_location;
100 #ifdef HAVE_LIBCHAMPLAIN
101   GtkWidget *viewport_map;
102   GtkWidget *map_view_embed;
103   ChamplainView *map_view;
104 #endif
105
106   /* Groups */
107   GtkWidget *groups_widget;
108
109   /* Client types */
110   GtkWidget *hbox_client_types;
111
112   /* Details */
113   GtkWidget *vbox_details;
114   GtkWidget *table_details;
115   GtkWidget *hbox_details_requested;
116   GtkWidget *details_spinner;
117   GCancellable *details_cancellable; /* owned */
118 } EmpathyIndividualWidgetPriv;
119
120 G_DEFINE_TYPE (EmpathyIndividualWidget, empathy_individual_widget,
121     GTK_TYPE_BOX);
122
123 enum {
124   PROP_INDIVIDUAL = 1,
125   PROP_FLAGS
126 };
127
128 static void client_types_update (EmpathyIndividualWidget *self);
129 static void remove_weak_contact (EmpathyIndividualWidget *self);
130
131 static void
132 details_set_up (EmpathyIndividualWidget *self)
133 {
134   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
135
136   gtk_widget_hide (priv->vbox_details);
137
138   priv->details_spinner = gtk_spinner_new ();
139   gtk_box_pack_end (GTK_BOX (priv->hbox_details_requested),
140       priv->details_spinner, TRUE, TRUE, 0);
141   gtk_widget_show (priv->details_spinner);
142 }
143
144 typedef struct
145 {
146   const gchar *field_name;
147   const gchar *title;
148   gboolean linkify;
149 } InfoFieldData;
150
151 static InfoFieldData info_field_data[] =
152 {
153   { "fn",    N_("Full name:"),      FALSE },
154   { "tel",   N_("Phone number:"),   FALSE },
155   { "email", N_("E-mail address:"), TRUE },
156   { "url",   N_("Website:"),        TRUE },
157   { "bday",  N_("Birthday:"),       FALSE },
158   { NULL, NULL }
159 };
160
161 static InfoFieldData *
162 find_info_field_data (const gchar *field_name)
163 {
164   guint i;
165
166   for (i = 0; info_field_data[i].field_name != NULL; i++)
167     {
168       if (tp_strdiff (info_field_data[i].field_name, field_name) == FALSE)
169         return info_field_data + i;
170     }
171   return NULL;
172 }
173
174 static gint
175 contact_info_field_name_cmp (const gchar *name1,
176     const gchar *name2)
177 {
178   guint i;
179
180   if (tp_strdiff (name1, name2) == FALSE)
181     return 0;
182
183   /* We use the order of info_field_data */
184   for (i = 0; info_field_data[i].field_name != NULL; i++)
185     {
186       if (tp_strdiff (info_field_data[i].field_name, name1) == FALSE)
187         return -1;
188       if (tp_strdiff (info_field_data[i].field_name, name2) == FALSE)
189         return +1;
190     }
191
192   return g_strcmp0 (name1, name2);
193 }
194
195 static gint
196 contact_info_field_cmp (TpContactInfoField *field1,
197     TpContactInfoField *field2)
198 {
199   return contact_info_field_name_cmp (field1->field_name, field2->field_name);
200 }
201
202 static void
203 client_types_notify_cb (TpContact *contact,
204     GParamSpec *pspec,
205     EmpathyIndividualWidget *self)
206 {
207   client_types_update (self);
208 }
209
210 static void
211 update_weak_contact (EmpathyIndividualWidget *self)
212 {
213   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
214   TpContact *tp_contact = NULL;
215
216   remove_weak_contact (self);
217
218   if (priv->individual != NULL)
219     {
220       /* FIXME: We take the most available TpContact we find and only
221        * use its details. It would be a lot better if we would get the
222        * details for every TpContact in the Individual and merge them
223        * all, but that requires vCard support in libfolks for it to
224        * not be hideously complex.  (bgo#627399) */
225       GList *personas, *l;
226       FolksPresenceType presence_type = FOLKS_PRESENCE_TYPE_UNSET;
227
228       personas = folks_individual_get_personas (priv->individual);
229       for (l = personas; l != NULL; l = l->next)
230         {
231           FolksPresenceDetails *presence;
232
233           /* We only want personas which implement FolksPresence */
234           if (!FOLKS_IS_PRESENCE_DETAILS (l->data))
235             continue;
236
237           presence = FOLKS_PRESENCE_DETAILS (l->data);
238
239           if (folks_presence_details_typecmp (
240                   folks_presence_details_get_presence_type (presence),
241                   presence_type) > 0 &&
242               empathy_folks_persona_is_interesting (FOLKS_PERSONA (presence)))
243             {
244               presence_type = folks_presence_details_get_presence_type (
245                   presence);
246               tp_contact = tpf_persona_get_contact (TPF_PERSONA (l->data));
247             }
248         }
249     }
250
251   if (tp_contact != NULL)
252     {
253       priv->contact = tp_contact;
254       g_object_add_weak_pointer (G_OBJECT (tp_contact),
255           (gpointer *) &priv->contact);
256
257       g_signal_connect (priv->contact, "notify::client-types",
258           (GCallback) client_types_notify_cb, self);
259     }
260 }
261
262 typedef struct {
263   EmpathyIndividualWidget *widget; /* weak */
264   TpContact *contact; /* owned */
265 } DetailsData;
266
267 static void
268 details_data_free (DetailsData *data)
269 {
270   if (data->widget != NULL)
271     {
272       g_object_remove_weak_pointer (G_OBJECT (data->widget),
273           (gpointer *) &data->widget);
274     }
275   g_object_unref (data->contact);
276   g_slice_free (DetailsData, data);
277 }
278
279 static guint
280 details_update_show (EmpathyIndividualWidget *self,
281     TpContact *contact)
282 {
283   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
284   GList *info, *l;
285   guint n_rows = 0;
286
287   info = tp_contact_get_contact_info (contact);
288   info = g_list_sort (info, (GCompareFunc) contact_info_field_cmp);
289   for (l = info; l != NULL; l = l->next)
290     {
291       TpContactInfoField *field = l->data;
292       InfoFieldData *field_data;
293       const gchar *value;
294       GtkWidget *w;
295
296       if (field->field_value == NULL || field->field_value[0] == NULL)
297         continue;
298
299       value = field->field_value[0];
300
301       field_data = find_info_field_data (field->field_name);
302       if (field_data == NULL)
303         {
304           DEBUG ("Unhandled ContactInfo field: %s", field->field_name);
305           continue;
306         }
307
308       /* Add Title */
309       w = gtk_label_new (_(field_data->title));
310       gtk_table_attach (GTK_TABLE (priv->table_details),
311           w, 0, 1, n_rows, n_rows + 1, GTK_FILL, 0, 0, 0);
312       gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5);
313       gtk_widget_show (w);
314
315       /* Add Value */
316       w = gtk_label_new (value);
317       if (field_data->linkify == TRUE)
318         {
319           gchar *markup;
320
321           markup = empathy_add_link_markup (value);
322           gtk_label_set_markup (GTK_LABEL (w), markup);
323           g_free (markup);
324         }
325
326       gtk_label_set_selectable (GTK_LABEL (w),
327           (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP) ? FALSE : TRUE);
328
329       gtk_table_attach_defaults (GTK_TABLE (priv->table_details),
330           w, 1, 2, n_rows, n_rows + 1);
331       gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5);
332       gtk_widget_show (w);
333
334       n_rows++;
335     }
336   g_list_free (info);
337
338   return n_rows;
339 }
340
341 static void
342 details_notify_cb (TpContact *contact,
343     GParamSpec *pspec,
344     EmpathyIndividualWidget *self)
345 {
346   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
347   guint n_rows;
348
349   gtk_container_foreach (GTK_CONTAINER (priv->table_details),
350       (GtkCallback) gtk_widget_destroy, NULL);
351
352   n_rows = details_update_show (self, contact);
353
354   if (n_rows > 0)
355     {
356       gtk_widget_show (priv->vbox_details);
357       gtk_widget_show (priv->table_details);
358     }
359   else
360     {
361       gtk_widget_hide (priv->vbox_details);
362     }
363
364   gtk_widget_hide (priv->hbox_details_requested);
365   gtk_spinner_stop (GTK_SPINNER (priv->details_spinner));
366 }
367
368 static void
369 details_request_cb (TpContact *contact,
370     GAsyncResult *res,
371     DetailsData *data)
372 {
373   EmpathyIndividualWidget *self = data->widget;
374   gboolean hide_widget = FALSE;
375   GError *error = NULL;
376
377   if (tp_contact_request_contact_info_finish (contact, res, &error) == TRUE)
378     details_notify_cb (contact, NULL, self);
379   else
380     hide_widget = TRUE;
381
382   g_clear_error (&error);
383
384   if (self != NULL)
385     {
386       EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
387
388       if (hide_widget == TRUE)
389         gtk_widget_hide (GET_PRIV (self)->vbox_details);
390
391       tp_clear_object (&priv->details_cancellable);
392
393       g_signal_connect (contact, "notify::contact-info",
394           (GCallback) details_notify_cb, self);
395     }
396
397   details_data_free (data);
398 }
399
400 static void
401 details_feature_prepared_cb (TpConnection *connection,
402     GAsyncResult *res,
403     DetailsData *data)
404 {
405   EmpathyIndividualWidget *self = data->widget;
406   EmpathyIndividualWidgetPriv *priv = NULL;
407
408   if (tp_proxy_prepare_finish (connection, res, NULL) == FALSE || self == NULL)
409     {
410       if (self != NULL)
411         gtk_widget_hide (GET_PRIV (self)->vbox_details);
412       details_data_free (data);
413       return;
414     }
415
416   priv = GET_PRIV (self);
417
418   /* Request the Individual's info */
419   gtk_widget_show (priv->vbox_details);
420   gtk_widget_show (priv->hbox_details_requested);
421   gtk_widget_hide (priv->table_details);
422   gtk_spinner_start (GTK_SPINNER (priv->details_spinner));
423
424   if (priv->details_cancellable == NULL)
425     {
426       priv->details_cancellable = g_cancellable_new ();
427       tp_contact_request_contact_info_async (data->contact,
428           priv->details_cancellable, (GAsyncReadyCallback) details_request_cb,
429           data);
430     }
431 }
432
433 static void
434 details_update (EmpathyIndividualWidget *self)
435 {
436   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
437
438   if (!(priv->flags & EMPATHY_INDIVIDUAL_WIDGET_SHOW_DETAILS))
439     return;
440
441   gtk_widget_hide (priv->vbox_details);
442
443   if (priv->contact == NULL)
444     update_weak_contact (self);
445
446   if (priv->contact != NULL)
447     {
448       GQuark features[] = { TP_CONNECTION_FEATURE_CONTACT_INFO, 0 };
449       TpConnection *connection;
450       DetailsData *data;
451
452       data = g_slice_new (DetailsData);
453       data->widget = self;
454       g_object_add_weak_pointer (G_OBJECT (self), (gpointer *) &data->widget);
455       data->contact = g_object_ref (priv->contact);
456
457       /* First, make sure the CONTACT_INFO feature is ready on the connection */
458       connection = tp_contact_get_connection (priv->contact);
459       tp_proxy_prepare_async (connection, features,
460           (GAsyncReadyCallback) details_feature_prepared_cb, data);
461     }
462 }
463
464 static void
465 groups_update (EmpathyIndividualWidget *self)
466 {
467   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
468
469   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_GROUPS &&
470       priv->individual != NULL)
471     {
472       empathy_groups_widget_set_group_details (
473           EMPATHY_GROUPS_WIDGET (priv->groups_widget),
474           FOLKS_GROUP_DETAILS (priv->individual));
475       gtk_widget_show (priv->groups_widget);
476     }
477   else
478     {
479       gtk_widget_hide (priv->groups_widget);
480     }
481 }
482
483 /* Converts the Location's GHashTable's key to a user readable string */
484 static const gchar *
485 location_key_to_label (const gchar *key)
486 {
487   if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY_CODE) == FALSE)
488     return _("Country ISO Code:");
489   else if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY) == FALSE)
490     return _("Country:");
491   else if (tp_strdiff (key, EMPATHY_LOCATION_REGION) == FALSE)
492     return _("State:");
493   else if (tp_strdiff (key, EMPATHY_LOCATION_LOCALITY) == FALSE)
494     return _("City:");
495   else if (tp_strdiff (key, EMPATHY_LOCATION_AREA) == FALSE)
496     return _("Area:");
497   else if (tp_strdiff (key, EMPATHY_LOCATION_POSTAL_CODE) == FALSE)
498     return _("Postal Code:");
499   else if (tp_strdiff (key, EMPATHY_LOCATION_STREET) == FALSE)
500     return _("Street:");
501   else if (tp_strdiff (key, EMPATHY_LOCATION_BUILDING) == FALSE)
502     return _("Building:");
503   else if (tp_strdiff (key, EMPATHY_LOCATION_FLOOR) == FALSE)
504     return _("Floor:");
505   else if (tp_strdiff (key, EMPATHY_LOCATION_ROOM) == FALSE)
506     return _("Room:");
507   else if (tp_strdiff (key, EMPATHY_LOCATION_TEXT) == FALSE)
508     return _("Text:");
509   else if (tp_strdiff (key, EMPATHY_LOCATION_DESCRIPTION) == FALSE)
510     return _("Description:");
511   else if (tp_strdiff (key, EMPATHY_LOCATION_URI) == FALSE)
512     return _("URI:");
513   else if (tp_strdiff (key, EMPATHY_LOCATION_ACCURACY_LEVEL) == FALSE)
514     return _("Accuracy Level:");
515   else if (tp_strdiff (key, EMPATHY_LOCATION_ERROR) == FALSE)
516     return _("Error:");
517   else if (tp_strdiff (key, EMPATHY_LOCATION_VERTICAL_ERROR_M) == FALSE)
518     return _("Vertical Error (meters):");
519   else if (tp_strdiff (key, EMPATHY_LOCATION_HORIZONTAL_ERROR_M) == FALSE)
520     return _("Horizontal Error (meters):");
521   else if (tp_strdiff (key, EMPATHY_LOCATION_SPEED) == FALSE)
522     return _("Speed:");
523   else if (tp_strdiff (key, EMPATHY_LOCATION_BEARING) == FALSE)
524     return _("Bearing:");
525   else if (tp_strdiff (key, EMPATHY_LOCATION_CLIMB) == FALSE)
526     return _("Climb Speed:");
527   else if (tp_strdiff (key, EMPATHY_LOCATION_TIMESTAMP) == FALSE)
528     return _("Last Updated on:");
529   else if (tp_strdiff (key, EMPATHY_LOCATION_LON) == FALSE)
530     return _("Longitude:");
531   else if (tp_strdiff (key, EMPATHY_LOCATION_LAT) == FALSE)
532     return _("Latitude:");
533   else if (tp_strdiff (key, EMPATHY_LOCATION_ALT) == FALSE)
534     return _("Altitude:");
535   else
536   {
537     DEBUG ("Unexpected Location key: %s", key);
538     return key;
539   }
540 }
541
542 static void
543 location_update (EmpathyIndividualWidget *self)
544 {
545   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
546   EmpathyContact *contact = NULL;
547   GHashTable *location = NULL;
548   GValue *value;
549   GtkWidget *label;
550   guint row = 0;
551   static const gchar* ordered_geolocation_keys[] = {
552     EMPATHY_LOCATION_TEXT,
553     EMPATHY_LOCATION_URI,
554     EMPATHY_LOCATION_DESCRIPTION,
555     EMPATHY_LOCATION_BUILDING,
556     EMPATHY_LOCATION_FLOOR,
557     EMPATHY_LOCATION_ROOM,
558     EMPATHY_LOCATION_STREET,
559     EMPATHY_LOCATION_AREA,
560     EMPATHY_LOCATION_LOCALITY,
561     EMPATHY_LOCATION_REGION,
562     EMPATHY_LOCATION_COUNTRY,
563     NULL
564   };
565   int i;
566   const gchar *skey;
567   gboolean display_map = FALSE;
568   GList *personas, *l;
569
570   if (!(priv->flags & EMPATHY_INDIVIDUAL_WIDGET_SHOW_LOCATION) ||
571       priv->individual == NULL)
572     {
573       gtk_widget_hide (priv->vbox_location);
574       return;
575     }
576
577   /* FIXME: For the moment, we just display the first location data we can
578    * find amongst the Individual's Personas. Once libfolks grows a location
579    * interface, we can use that. (bgo#627400) */
580   personas = folks_individual_get_personas (priv->individual);
581   for (l = personas; l != NULL; l = l->next)
582     {
583       FolksPersona *persona = FOLKS_PERSONA (l->data);
584
585       if (empathy_folks_persona_is_interesting (persona))
586         {
587           TpContact *tp_contact;
588
589           /* Get the contact. If it turns out to have location information, we
590            * have to keep it alive for the duration of the function, since we're
591            * accessing its private data. */
592           tp_contact = tpf_persona_get_contact (TPF_PERSONA (persona));
593           contact = empathy_contact_dup_from_tp_contact (tp_contact);
594           empathy_contact_set_persona (contact, persona);
595
596           /* Try and get a location */
597           location = empathy_contact_get_location (contact);
598           if (location != NULL && g_hash_table_size (location) > 0)
599             break;
600
601           location = NULL;
602           tp_clear_object (&contact);
603         }
604     }
605
606   if (contact == NULL || location == NULL)
607     {
608       gtk_widget_hide (priv->vbox_location);
609       tp_clear_object (&contact);
610       return;
611     }
612
613   value = g_hash_table_lookup (location, EMPATHY_LOCATION_TIMESTAMP);
614   if (value == NULL)
615     {
616       gchar *loc = g_strdup_printf ("<b>%s</b>", _("Location"));
617       gtk_label_set_markup (GTK_LABEL (priv->label_location), loc);
618       g_free (loc);
619     }
620   else
621     {
622       gchar *user_date;
623       gchar *text;
624       gint64 stamp;
625       time_t time_;
626       gchar *tmp;
627
628       stamp = g_value_get_int64 (value);
629       time_ = stamp;
630
631       user_date = empathy_time_to_string_relative (time_);
632
633       tmp = g_strdup_printf ("<b>%s</b>", _("Location"));
634       /* translators: format is "Location, $date" */
635       text = g_strdup_printf (_("%s, %s"), tmp, user_date);
636       g_free (tmp);
637       gtk_label_set_markup (GTK_LABEL (priv->label_location), text);
638       g_free (user_date);
639       g_free (text);
640     }
641
642   /* Prepare the location information table */
643   if (priv->table_location != NULL)
644     gtk_widget_destroy (priv->table_location);
645
646   priv->table_location = gtk_table_new (1, 2, FALSE);
647   gtk_box_pack_start (GTK_BOX (priv->subvbox_location),
648       priv->table_location, FALSE, FALSE, 5);
649
650
651   for (i = 0; (skey = ordered_geolocation_keys[i]); i++)
652     {
653       const gchar* user_label;
654       GValue *gvalue;
655       char *svalue = NULL;
656
657       gvalue = g_hash_table_lookup (location, (gpointer) skey);
658       if (gvalue == NULL)
659         continue;
660
661       user_label = location_key_to_label (skey);
662
663       label = gtk_label_new (user_label);
664       gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
665       gtk_table_attach (GTK_TABLE (priv->table_location),
666           label, 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 10, 0);
667       gtk_widget_show (label);
668
669       if (G_VALUE_TYPE (gvalue) == G_TYPE_DOUBLE)
670         {
671           gdouble dvalue;
672           dvalue = g_value_get_double (gvalue);
673           svalue = g_strdup_printf ("%f", dvalue);
674         }
675       else if (G_VALUE_TYPE (gvalue) == G_TYPE_STRING)
676         {
677           svalue = g_value_dup_string (gvalue);
678         }
679       else if (G_VALUE_TYPE (gvalue) == G_TYPE_INT64)
680         {
681           time_t time_;
682
683           time_ = g_value_get_int64 (value);
684           svalue = empathy_time_to_string_utc (time_, _("%B %e, %Y at %R UTC"));
685         }
686
687       if (svalue != NULL)
688         {
689           label = gtk_label_new (svalue);
690           gtk_table_attach_defaults (GTK_TABLE (priv->table_location),
691               label, 1, 2, row, row + 1);
692           gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
693           gtk_widget_show (label);
694
695           gtk_label_set_selectable (GTK_LABEL (label),
696               (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP) ? FALSE :
697                   TRUE);
698         }
699
700       g_free (svalue);
701       row++;
702     }
703
704   tp_clear_object (&contact);
705
706 #ifdef HAVE_LIBCHAMPLAIN
707   if ((g_hash_table_lookup (location, EMPATHY_LOCATION_LAT) != NULL) &&
708       (g_hash_table_lookup (location, EMPATHY_LOCATION_LON) != NULL) &&
709       !(priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP))
710     {
711       /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such
712        * windows */
713       display_map = TRUE;
714     }
715 #endif
716
717   if (row > 0)
718     {
719       /* We can display some fields */
720       gtk_widget_show (priv->table_location);
721     }
722   else if (display_map == FALSE)
723     {
724       /* Can't display either fields or map */
725       gtk_widget_hide (priv->vbox_location);
726       return;
727     }
728
729 #ifdef HAVE_LIBCHAMPLAIN
730   if (display_map == TRUE)
731     {
732       ChamplainMarkerLayer *layer;
733
734       priv->map_view_embed = gtk_champlain_embed_new ();
735       priv->map_view = gtk_champlain_embed_get_view (
736           GTK_CHAMPLAIN_EMBED (priv->map_view_embed));
737
738       gtk_container_add (GTK_CONTAINER (priv->viewport_map),
739           priv->map_view_embed);
740       g_object_set (G_OBJECT (priv->map_view),
741           "kinetic-mode", TRUE,
742           "zoom-level", 10,
743           NULL);
744
745       layer = champlain_marker_layer_new ();
746       champlain_view_add_layer (priv->map_view, CHAMPLAIN_LAYER (layer));
747
748       /* FIXME: For now, we have to do this manually. Once libfolks grows a
749        * location interface, we can use that. (bgo#627400) */
750       personas = folks_individual_get_personas (priv->individual);
751       for (l = personas; l != NULL; l = l->next)
752         {
753           FolksPersona *persona = FOLKS_PERSONA (l->data);
754
755           if (empathy_folks_persona_is_interesting (persona))
756             {
757               gdouble lat = 0.0, lon = 0.0;
758               ClutterActor *marker;
759               TpContact *tp_contact;
760
761               /* Get the contact */
762               tp_contact = tpf_persona_get_contact (TPF_PERSONA (persona));
763               contact = empathy_contact_dup_from_tp_contact (tp_contact);
764               empathy_contact_set_persona (contact, persona);
765
766               /* Try and get a location */
767               location = empathy_contact_get_location (contact);
768               if (location == NULL || g_hash_table_size (location) == 0)
769                 {
770                   g_object_unref (contact);
771                   continue;
772                 }
773
774               /* Get this persona's latitude and longitude */
775               value = g_hash_table_lookup (location, EMPATHY_LOCATION_LAT);
776               if (value == NULL)
777                 {
778                   g_object_unref (contact);
779                   continue;
780                 }
781
782               lat = g_value_get_double (value);
783
784               value = g_hash_table_lookup (location, EMPATHY_LOCATION_LON);
785               if (value == NULL)
786                 {
787                   g_object_unref (contact);
788                   continue;
789                 }
790
791               lon = g_value_get_double (value);
792
793               /* Add a marker to the map */
794               marker = champlain_label_new_with_text (
795                   folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (persona)),
796                   NULL, NULL, NULL);
797               champlain_location_set_location (CHAMPLAIN_LOCATION (marker),
798                   lat, lon);
799               champlain_marker_layer_add_marker (layer,
800                   CHAMPLAIN_MARKER (marker));
801
802               g_object_unref (contact);
803             }
804         }
805
806       /* Zoom to show all of the markers */
807       champlain_view_ensure_layers_visible (priv->map_view, FALSE);
808
809       gtk_widget_show_all (priv->viewport_map);
810     }
811 #endif
812
813     gtk_widget_show (priv->vbox_location);
814 }
815
816 static void
817 client_types_update (EmpathyIndividualWidget *self)
818 {
819   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
820   const gchar * const *types;
821
822   if (!(priv->flags & EMPATHY_INDIVIDUAL_WIDGET_SHOW_CLIENT_TYPES) ||
823       priv->individual == NULL)
824     {
825       gtk_widget_hide (priv->hbox_client_types);
826       return;
827     }
828
829   if (priv->contact == NULL)
830     update_weak_contact (self);
831
832   /* let's try that again... */
833   if (priv->contact == NULL)
834     return;
835
836   types = tp_contact_get_client_types (priv->contact);
837
838   if (types != NULL
839       && g_strv_length ((gchar **) types) > 0
840       && !tp_strdiff (types[0], "phone"))
841     {
842       gtk_widget_show (priv->hbox_client_types);
843     }
844   else
845     {
846       gtk_widget_hide (priv->hbox_client_types);
847     }
848
849 }
850
851 static void
852 remove_weak_contact (EmpathyIndividualWidget *self)
853 {
854   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
855
856   if (priv->contact == NULL)
857     return;
858
859   g_signal_handlers_disconnect_by_func (priv->contact, client_types_notify_cb,
860       self);
861
862   g_object_remove_weak_pointer (G_OBJECT (priv->contact),
863       (gpointer *) &priv->contact);
864   priv->contact = NULL;
865 }
866
867 static EmpathyAvatar *
868 persona_dup_avatar (FolksPersona *persona)
869 {
870   TpContact *tp_contact;
871   EmpathyContact *contact;
872   EmpathyAvatar *avatar;
873
874   if (!empathy_folks_persona_is_interesting (persona))
875     return NULL;
876
877   tp_contact = tpf_persona_get_contact (TPF_PERSONA (persona));
878   contact = empathy_contact_dup_from_tp_contact (tp_contact);
879   empathy_contact_set_persona (contact, persona);
880
881   avatar = empathy_contact_get_avatar (contact);
882   if (avatar != NULL)
883     empathy_avatar_ref (avatar);
884   g_object_unref (contact);
885
886   return avatar;
887 }
888
889 static EmpathyAvatar *
890 individual_dup_avatar (FolksIndividual *individual)
891 {
892   GList *personas, *l;
893   EmpathyAvatar *avatar = NULL;
894
895   /* FIXME: We just choose the first Persona which has an avatar, and save that.
896    * The avatar handling in EmpathyContact needs to be moved into libfolks as
897    * much as possible, and this code rewritten to use FolksHasAvatar.
898    * (bgo#627401) */
899   personas = folks_individual_get_personas (individual);
900   for (l = personas; l != NULL; l = l->next)
901     {
902       avatar = persona_dup_avatar (FOLKS_PERSONA (l->data));
903       if (avatar != NULL)
904         break;
905     }
906
907   return avatar;
908 }
909
910 static void
911 save_avatar_menu_activate_cb (GtkWidget *widget,
912     EmpathyIndividualWidget *self)
913 {
914   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
915   GtkWidget *dialog;
916   EmpathyAvatar *avatar;
917   gchar *ext = NULL, *filename;
918
919   dialog = gtk_file_chooser_dialog_new (_("Save Avatar"),
920       NULL,
921       GTK_FILE_CHOOSER_ACTION_SAVE,
922       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
923       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
924       NULL);
925
926   gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
927       TRUE);
928
929   avatar = individual_dup_avatar (priv->individual);
930   if (avatar == NULL)
931     return;
932
933   /* look for the avatar extension */
934   if (avatar->format != NULL)
935     {
936       gchar **splitted;
937
938       splitted = g_strsplit (avatar->format, "/", 2);
939       if (splitted[0] != NULL && splitted[1] != NULL)
940           ext = g_strdup (splitted[1]);
941
942       g_strfreev (splitted);
943     }
944   else
945     {
946       /* Avatar was loaded from the cache so was converted to PNG */
947       ext = g_strdup ("png");
948     }
949
950   if (ext != NULL)
951     {
952       gchar *id;
953
954       id = tp_escape_as_identifier (folks_individual_get_id (priv->individual));
955
956       filename = g_strdup_printf ("%s.%s", id, ext);
957       gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), filename);
958
959       g_free (id);
960       g_free (ext);
961       g_free (filename);
962     }
963
964   if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
965     {
966       GError *error = NULL;
967
968       filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
969
970       if (empathy_avatar_save_to_file (avatar, filename, &error) == FALSE)
971         {
972           /* Save error */
973           GtkWidget *error_dialog;
974
975           error_dialog = gtk_message_dialog_new (NULL, 0,
976               GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
977               _("Unable to save avatar"));
978
979           gtk_message_dialog_format_secondary_text (
980               GTK_MESSAGE_DIALOG (error_dialog), "%s", error->message);
981
982           g_signal_connect (error_dialog, "response",
983               (GCallback) gtk_widget_destroy, NULL);
984
985           gtk_window_present (GTK_WINDOW (error_dialog));
986
987           g_clear_error (&error);
988         }
989
990       g_free (filename);
991     }
992
993   gtk_widget_destroy (dialog);
994   empathy_avatar_unref (avatar);
995 }
996
997 static gboolean
998 popup_avatar_menu (EmpathyIndividualWidget *self,
999     GtkWidget *parent,
1000     GdkEventButton *event)
1001 {
1002   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1003   GtkWidget *menu, *item;
1004   EmpathyAvatar *avatar;
1005   gint button, event_time;
1006
1007   if (priv->individual == NULL)
1008     return FALSE;
1009
1010   avatar = individual_dup_avatar (priv->individual);
1011   if (avatar == NULL)
1012     return FALSE;
1013   empathy_avatar_unref (avatar);
1014
1015   menu = empathy_context_menu_new (parent);
1016
1017   /* Add "Save as..." entry */
1018   item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SAVE_AS, NULL);
1019   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
1020   gtk_widget_show (item);
1021
1022   g_signal_connect (item, "activate",
1023       (GCallback) save_avatar_menu_activate_cb, self);
1024
1025   if (event != NULL)
1026     {
1027       button = event->button;
1028       event_time = event->time;
1029     }
1030   else
1031     {
1032       button = 0;
1033       event_time = gtk_get_current_event_time ();
1034     }
1035
1036   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, button, event_time);
1037
1038   return TRUE;
1039 }
1040
1041 static gboolean
1042 avatar_widget_popup_menu_cb (GtkWidget *widget,
1043     EmpathyIndividualWidget *self)
1044 {
1045   return popup_avatar_menu (self, widget, NULL);
1046 }
1047
1048 static gboolean
1049 avatar_widget_button_press_event_cb (GtkWidget *widget,
1050     GdkEventButton *event,
1051     EmpathyIndividualWidget *self)
1052 {
1053   /* Ignore double-clicks and triple-clicks */
1054   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
1055     return popup_avatar_menu (self, widget, event);
1056
1057   return FALSE;
1058 }
1059
1060 /* Returns the TpAccount for the user as a convenience. Note that it has a ref
1061  * added. */
1062 static TpAccount *
1063 individual_is_user (FolksIndividual *individual)
1064 {
1065   GList *personas, *l;
1066
1067   /* FIXME: This should move into libfolks when libfolks grows a way of
1068    * determining "self". (bgo#627402) */
1069   personas = folks_individual_get_personas (individual);
1070   for (l = personas; l != NULL; l = l->next)
1071     {
1072       FolksPersona *persona = FOLKS_PERSONA (l->data);
1073
1074       if (TPF_IS_PERSONA (persona))
1075         {
1076           TpContact *tp_contact;
1077           EmpathyContact *contact;
1078
1079           /* Get the contact */
1080           tp_contact = tpf_persona_get_contact (TPF_PERSONA (persona));
1081           contact = empathy_contact_dup_from_tp_contact (tp_contact);
1082           empathy_contact_set_persona (contact, persona);
1083
1084           /* Determine if the contact is the user */
1085           if (empathy_contact_is_user (contact))
1086             {
1087               g_object_unref (contact);
1088               return g_object_ref (empathy_contact_get_account (contact));
1089             }
1090
1091           g_object_unref (contact);
1092         }
1093     }
1094
1095   return NULL;
1096 }
1097
1098 static void
1099 set_nickname_cb (TpAccount *account,
1100     GAsyncResult *result,
1101     gpointer user_data)
1102 {
1103   GError *error = NULL;
1104
1105   if (tp_account_set_nickname_finish (account, result, &error) == FALSE)
1106     {
1107       DEBUG ("Failed to set Account.Nickname: %s", error->message);
1108       g_error_free (error);
1109     }
1110 }
1111
1112 static gboolean
1113 entry_alias_focus_event_cb (GtkEditable *editable,
1114     GdkEventFocus *event,
1115     EmpathyIndividualWidget *self)
1116 {
1117   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1118
1119   if (priv->individual != NULL)
1120     {
1121       const gchar *alias;
1122       TpAccount *account;
1123
1124       alias = gtk_entry_get_text (GTK_ENTRY (editable));
1125       account = individual_is_user (priv->individual);
1126
1127       if (account != NULL)
1128         {
1129           DEBUG ("Set Account.Nickname to %s", alias);
1130           tp_account_set_nickname_async (account, alias,
1131               (GAsyncReadyCallback) set_nickname_cb, NULL);
1132           g_object_unref (account);
1133         }
1134       else
1135         {
1136           folks_alias_details_set_alias (FOLKS_ALIAS_DETAILS (priv->individual),
1137               alias);
1138         }
1139     }
1140
1141   return FALSE;
1142 }
1143
1144 static void
1145 favourite_toggled_cb (GtkToggleButton *button,
1146     EmpathyIndividualWidget *self)
1147 {
1148   gboolean active = gtk_toggle_button_get_active (button);
1149   folks_favourite_details_set_is_favourite (
1150       FOLKS_FAVOURITE_DETAILS (GET_PRIV (self)->individual), active);
1151 }
1152
1153 static void
1154 notify_avatar_cb (gpointer folks_object,
1155     GParamSpec *pspec,
1156     EmpathyIndividualWidget *self)
1157 {
1158   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1159   EmpathyAvatar *avatar = NULL;
1160   GObject *table;
1161   GtkWidget *avatar_widget;
1162
1163   if (FOLKS_IS_INDIVIDUAL (folks_object))
1164     {
1165       avatar = individual_dup_avatar (FOLKS_INDIVIDUAL (folks_object));
1166       table = G_OBJECT (priv->individual_table);
1167     }
1168   else if (FOLKS_IS_PERSONA (folks_object))
1169     {
1170       avatar = persona_dup_avatar (FOLKS_PERSONA (folks_object));
1171       table = g_hash_table_lookup (priv->persona_tables, folks_object);
1172     }
1173   else
1174     {
1175       g_assert_not_reached ();
1176     }
1177
1178   if (table == NULL)
1179     return;
1180
1181   avatar_widget = g_object_get_data (table, "avatar-widget");
1182   empathy_avatar_image_set (EMPATHY_AVATAR_IMAGE (avatar_widget), avatar);
1183
1184   if (avatar != NULL)
1185     empathy_avatar_unref (avatar);
1186 }
1187
1188 static void
1189 notify_alias_cb (gpointer folks_object,
1190     GParamSpec *pspec,
1191     EmpathyIndividualWidget *self)
1192 {
1193   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1194   GObject *table;
1195   GtkWidget *alias_widget;
1196
1197   if (FOLKS_IS_INDIVIDUAL (folks_object))
1198     table = G_OBJECT (priv->individual_table);
1199   else if (FOLKS_IS_PERSONA (folks_object))
1200     table = g_hash_table_lookup (priv->persona_tables, folks_object);
1201   else
1202     g_assert_not_reached ();
1203
1204   if (table == NULL)
1205     return;
1206
1207   alias_widget = g_object_get_data (table, "alias-widget");
1208
1209   if (GTK_IS_ENTRY (alias_widget))
1210     {
1211       gtk_entry_set_text (GTK_ENTRY (alias_widget),
1212           folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (folks_object)));
1213     }
1214   else
1215     {
1216       gtk_label_set_label (GTK_LABEL (alias_widget),
1217           folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (folks_object)));
1218     }
1219 }
1220
1221 static void
1222 notify_presence_cb (gpointer folks_object,
1223     GParamSpec *pspec,
1224     EmpathyIndividualWidget *self)
1225 {
1226   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1227   GObject *table;
1228   GtkWidget *status_label, *state_image;
1229   const gchar *message;
1230   gchar *markup_text = NULL;
1231
1232   if (FOLKS_IS_INDIVIDUAL (folks_object))
1233     table = G_OBJECT (priv->individual_table);
1234   else if (FOLKS_IS_PERSONA (folks_object))
1235     table = g_hash_table_lookup (priv->persona_tables, folks_object);
1236   else
1237     g_assert_not_reached ();
1238
1239   if (table == NULL)
1240     return;
1241
1242   status_label = g_object_get_data (table, "status-label");
1243   state_image = g_object_get_data (table, "state-image");
1244
1245   /* FIXME: Default messages should be moved into libfolks (bgo#627403) */
1246   message = folks_presence_details_get_presence_message (
1247       FOLKS_PRESENCE_DETAILS (folks_object));
1248   if (EMP_STR_EMPTY (message))
1249     {
1250       message = empathy_presence_get_default_message (
1251           folks_presence_details_get_presence_type (
1252               FOLKS_PRESENCE_DETAILS (folks_object)));
1253     }
1254
1255   if (message != NULL)
1256     markup_text = empathy_add_link_markup (message);
1257   gtk_label_set_markup (GTK_LABEL (status_label), markup_text);
1258   g_free (markup_text);
1259
1260   gtk_image_set_from_icon_name (GTK_IMAGE (state_image),
1261       empathy_icon_name_for_presence (
1262           folks_presence_details_get_presence_type (
1263               FOLKS_PRESENCE_DETAILS (folks_object))),
1264       GTK_ICON_SIZE_BUTTON);
1265   gtk_widget_show (state_image);
1266 }
1267
1268 static void
1269 notify_is_favourite_cb (gpointer folks_object,
1270     GParamSpec *pspec,
1271     EmpathyIndividualWidget *self)
1272 {
1273   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1274   GObject *table;
1275   GtkWidget *favourite_widget;
1276
1277   if (FOLKS_IS_INDIVIDUAL (folks_object))
1278     table = G_OBJECT (priv->individual_table);
1279   else if (FOLKS_IS_PERSONA (folks_object))
1280     table = g_hash_table_lookup (priv->persona_tables, folks_object);
1281   else
1282     g_assert_not_reached ();
1283
1284   if (table == NULL)
1285     return;
1286
1287   favourite_widget = g_object_get_data (table, "favourite-widget");
1288
1289   if (GTK_IS_TOGGLE_BUTTON (favourite_widget))
1290     {
1291       gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (favourite_widget),
1292           folks_favourite_details_get_is_favourite (
1293               FOLKS_FAVOURITE_DETAILS (folks_object)));
1294     }
1295 }
1296
1297 static void
1298 alias_presence_avatar_favourite_set_up (EmpathyIndividualWidget *self,
1299     GtkTable *table,
1300     guint starting_row)
1301 {
1302   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1303   GtkWidget *label, *alias, *image, *avatar, *alignment;
1304   guint current_row = starting_row;
1305
1306   /* Alias */
1307   label = gtk_label_new (_("Alias:"));
1308   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
1309   gtk_table_attach (table, label, 0, 1, current_row, current_row + 1, GTK_FILL,
1310       GTK_FILL, 0, 0);
1311   gtk_widget_show (label);
1312
1313   /* Set up alias label/entry */
1314   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_ALIAS)
1315     {
1316       alias = gtk_entry_new ();
1317
1318       g_signal_connect (alias, "focus-out-event",
1319           (GCallback) entry_alias_focus_event_cb, self);
1320
1321       /* Make return activate the window default (the Close button) */
1322       gtk_entry_set_activates_default (GTK_ENTRY (alias), TRUE);
1323     }
1324   else
1325     {
1326       alias = gtk_label_new (NULL);
1327       gtk_label_set_selectable (GTK_LABEL (alias),
1328           (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP) ? FALSE : TRUE);
1329       gtk_misc_set_alignment (GTK_MISC (alias), 0.0, 0.5);
1330     }
1331
1332   g_object_set_data (G_OBJECT (table), "alias-widget", alias);
1333   gtk_table_attach (table, alias, 1, 2, current_row, current_row + 1,
1334       GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
1335   gtk_widget_show (alias);
1336
1337   current_row++;
1338
1339   /* Presence */
1340   priv->hbox_presence = gtk_hbox_new (FALSE, 6);
1341
1342   /* Presence image */
1343   image = gtk_image_new_from_stock (GTK_STOCK_MISSING_IMAGE,
1344       GTK_ICON_SIZE_BUTTON);
1345   g_object_set_data (G_OBJECT (table), "state-image", image);
1346   gtk_box_pack_start (GTK_BOX (priv->hbox_presence), image, FALSE,
1347       FALSE, 0);
1348   gtk_widget_show (image);
1349
1350   label = gtk_label_new ("");
1351   gtk_label_set_line_wrap_mode (GTK_LABEL (label), PANGO_WRAP_WORD_CHAR);
1352   gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1353   gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
1354
1355   gtk_label_set_selectable (GTK_LABEL (label),
1356       (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP) ? FALSE : TRUE);
1357
1358   g_object_set_data (G_OBJECT (table), "status-label", label);
1359   gtk_box_pack_start (GTK_BOX (priv->hbox_presence), label, TRUE,
1360       TRUE, 0);
1361   gtk_widget_show (label);
1362
1363   gtk_table_attach (table, priv->hbox_presence, 0, 2, current_row,
1364       current_row + 1, GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
1365   gtk_widget_show (priv->hbox_presence);
1366
1367   current_row++;
1368
1369   /* Set up favourite toggle button */
1370   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1371     {
1372       GtkWidget *favourite = gtk_check_button_new_with_label (_("Favorite"));
1373
1374       g_signal_connect (favourite, "toggled",
1375           (GCallback) favourite_toggled_cb, self);
1376
1377       g_object_set_data (G_OBJECT (table), "favourite-widget", favourite);
1378       gtk_table_attach (table, favourite, 0, 2, current_row, current_row + 1,
1379           GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
1380       gtk_widget_show (favourite);
1381
1382       current_row++;
1383     }
1384
1385   /* Set up avatar display */
1386   avatar = empathy_avatar_image_new ();
1387
1388   if (!(priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP))
1389     {
1390       g_signal_connect (avatar, "popup-menu",
1391           (GCallback) avatar_widget_popup_menu_cb, self);
1392       g_signal_connect (avatar, "button-press-event",
1393           (GCallback) avatar_widget_button_press_event_cb, self);
1394     }
1395
1396   g_object_set_data (G_OBJECT (table), "avatar-widget", avatar);
1397
1398   alignment = gtk_alignment_new (1.0, 0.0, 0.0, 0.0);
1399   gtk_container_add (GTK_CONTAINER (alignment), avatar);
1400   gtk_widget_show (avatar);
1401
1402   gtk_table_attach (table, alignment, 2, 3, 0, current_row,
1403       GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND, 6, 6);
1404   gtk_widget_show (alignment);
1405 }
1406
1407 static void
1408 update_persona (EmpathyIndividualWidget *self, FolksPersona *persona)
1409 {
1410   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1411   TpContact *tp_contact;
1412   EmpathyContact *contact;
1413   TpAccount *account;
1414   GtkTable *table;
1415   GtkLabel *label;
1416   GtkImage *image;
1417   const gchar *id;
1418
1419   table = g_hash_table_lookup (priv->persona_tables, persona);
1420
1421   g_assert (table != NULL);
1422
1423   tp_contact = tpf_persona_get_contact (TPF_PERSONA (persona));
1424   contact = empathy_contact_dup_from_tp_contact (tp_contact);
1425   empathy_contact_set_persona (contact, persona);
1426
1427   account = empathy_contact_get_account (contact);
1428
1429   /* Update account widget */
1430   if (account != NULL)
1431     {
1432       const gchar *name;
1433
1434       label = g_object_get_data (G_OBJECT (table), "account-label");
1435       image = g_object_get_data (G_OBJECT (table), "account-image");
1436
1437       name = tp_account_get_display_name (account);
1438       gtk_label_set_label (label, name);
1439
1440       name = tp_account_get_icon_name (account);
1441       gtk_image_set_from_icon_name (image, name, GTK_ICON_SIZE_MENU);
1442     }
1443
1444   /* Update id widget */
1445   label = g_object_get_data (G_OBJECT (table), "id-widget");
1446   id = folks_persona_get_display_id (persona);
1447   gtk_label_set_label (label, (id != NULL) ? id : "");
1448
1449   /* Update other widgets */
1450   notify_alias_cb (persona, NULL, self);
1451   notify_presence_cb (persona, NULL, self);
1452   notify_avatar_cb (persona, NULL, self);
1453
1454   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1455     notify_is_favourite_cb (persona, NULL, self);
1456
1457   g_object_unref (contact);
1458 }
1459
1460 static void
1461 add_persona (EmpathyIndividualWidget *self,
1462     FolksPersona *persona)
1463 {
1464   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1465   GtkBox *hbox;
1466   GtkTable *table;
1467   GtkWidget *label, *account_label, *account_image, *separator;
1468   guint current_row = 0;
1469
1470   if (!empathy_folks_persona_is_interesting (persona))
1471     return;
1472
1473   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1474     table = GTK_TABLE (gtk_table_new (5, 3, FALSE));
1475   else
1476     table = GTK_TABLE (gtk_table_new (4, 3, FALSE));
1477   gtk_table_set_row_spacings (table, 6);
1478   gtk_table_set_col_spacings (table, 6);
1479
1480   /* Account and Identifier */
1481   label = gtk_label_new (_("Account:"));
1482   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
1483   gtk_table_attach (table, label, 0, 1, current_row, current_row + 1,
1484       GTK_FILL, GTK_FILL, 0, 0);
1485   gtk_widget_show (label);
1486
1487   /* Pack the protocol icon with the account name in an hbox */
1488   hbox = GTK_BOX (gtk_hbox_new (FALSE, 6));
1489
1490   account_label = gtk_label_new (NULL);
1491   gtk_label_set_selectable (GTK_LABEL (account_label),
1492       (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP) ? FALSE : TRUE);
1493   gtk_misc_set_alignment (GTK_MISC (account_label), 0.0, 0.5);
1494   gtk_widget_show (account_label);
1495
1496   account_image = gtk_image_new ();
1497   gtk_widget_show (account_image);
1498
1499   gtk_box_pack_start (hbox, account_image, FALSE, FALSE, 0);
1500   gtk_box_pack_start (hbox, account_label, FALSE, TRUE, 0);
1501
1502   g_object_set_data (G_OBJECT (table), "account-image", account_image);
1503   g_object_set_data (G_OBJECT (table), "account-label", account_label);
1504   gtk_table_attach (table, GTK_WIDGET (hbox), 1, 2, current_row,
1505       current_row + 1, GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
1506   gtk_widget_show (GTK_WIDGET (hbox));
1507
1508   current_row++;
1509
1510   /* Translators: Identifier to connect to Instant Messaging network */
1511   label = gtk_label_new (_("Identifier:"));
1512   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
1513   gtk_table_attach (table, label, 0, 1, current_row, current_row + 1,
1514       GTK_FILL, GTK_FILL, 0, 0);
1515   gtk_widget_show (label);
1516
1517   /* Set up ID label */
1518   label = gtk_label_new (NULL);
1519   gtk_label_set_selectable (GTK_LABEL (label),
1520       (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP) ? FALSE : TRUE);
1521   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
1522
1523   g_object_set_data (G_OBJECT (table), "id-widget", label);
1524   gtk_table_attach (table, label, 1, 2, current_row, current_row + 1,
1525       GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
1526   gtk_widget_show (label);
1527
1528   current_row++;
1529
1530   alias_presence_avatar_favourite_set_up (self, table, current_row);
1531
1532   /* Connect to signals and display the table */
1533   g_signal_connect (persona, "notify::alias",
1534       (GCallback) notify_alias_cb, self);
1535   g_signal_connect (persona, "notify::avatar",
1536       (GCallback) notify_avatar_cb, self);
1537   g_signal_connect (persona, "notify::presence-type",
1538       (GCallback) notify_presence_cb, self);
1539   g_signal_connect (persona, "notify::presence-message",
1540       (GCallback) notify_presence_cb, self);
1541
1542   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1543     {
1544       g_signal_connect (persona, "notify::is-favourite",
1545           (GCallback) notify_is_favourite_cb, self);
1546     }
1547
1548   gtk_box_pack_start (GTK_BOX (priv->vbox_individual),
1549       GTK_WIDGET (table), FALSE, TRUE, 0);
1550   gtk_widget_show (GTK_WIDGET (table));
1551
1552   /* Pack a separator after the table */
1553   separator = gtk_hseparator_new ();
1554   g_object_set_data (G_OBJECT (table), "separator", separator);
1555   gtk_box_pack_start (GTK_BOX (priv->vbox_individual), separator, FALSE, FALSE,
1556       0);
1557   gtk_widget_show (separator);
1558
1559   g_hash_table_replace (priv->persona_tables, persona, table);
1560
1561   /* Update the new widgets */
1562   update_persona (self, persona);
1563 }
1564
1565 static void
1566 remove_persona (EmpathyIndividualWidget *self,
1567     FolksPersona *persona)
1568 {
1569   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1570   GtkWidget *separator;
1571   GtkTable *table;
1572
1573   if (!empathy_folks_persona_is_interesting (persona))
1574     return;
1575
1576   table = g_hash_table_lookup (priv->persona_tables, persona);
1577   if (table == NULL)
1578     return;
1579
1580   g_signal_handlers_disconnect_by_func (persona, notify_alias_cb, self);
1581   g_signal_handlers_disconnect_by_func (persona, notify_avatar_cb, self);
1582   g_signal_handlers_disconnect_by_func (persona, notify_presence_cb, self);
1583
1584   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1585     {
1586       g_signal_handlers_disconnect_by_func (persona, notify_is_favourite_cb,
1587           self);
1588     }
1589
1590   /* Remove the separator */
1591   separator = g_object_get_data (G_OBJECT (table), "separator");
1592   if (separator != NULL)
1593     gtk_container_remove (GTK_CONTAINER (priv->vbox_individual), separator);
1594
1595   /* Remove the widget */
1596   gtk_container_remove (GTK_CONTAINER (priv->vbox_individual),
1597       GTK_WIDGET (table));
1598
1599   g_hash_table_remove (priv->persona_tables, persona);
1600 }
1601
1602 static void
1603 update_individual_table (EmpathyIndividualWidget *self)
1604 {
1605   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1606
1607   notify_alias_cb (priv->individual, NULL, self);
1608   notify_presence_cb (priv->individual, NULL, self);
1609   notify_avatar_cb (priv->individual, NULL, self);
1610
1611   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1612     notify_is_favourite_cb (priv->individual, NULL, self);
1613 }
1614
1615 static void
1616 individual_table_set_up (EmpathyIndividualWidget *self)
1617 {
1618   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1619   GtkTable *table;
1620   guint current_row = 0;
1621   guint nb_rows = 2;
1622
1623   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1624     nb_rows++;
1625
1626   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP)
1627     nb_rows++;
1628
1629   table = GTK_TABLE (gtk_table_new (nb_rows, 3, FALSE));
1630   gtk_table_set_row_spacings (table, 6);
1631   gtk_table_set_col_spacings (table, 6);
1632
1633   /* We only display the number of personas in tooltips */
1634   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_FOR_TOOLTIP)
1635     {
1636       gchar *message;
1637       GtkWidget *label;
1638       GList *personas, *l;
1639       guint num_personas = 0;
1640
1641       /* Meta-contacts message displaying how many Telepathy personas we have */
1642       personas = folks_individual_get_personas (priv->individual);
1643       for (l = personas; l != NULL; l = l->next)
1644         {
1645           if (empathy_folks_persona_is_interesting (FOLKS_PERSONA (l->data)))
1646             num_personas++;
1647         }
1648
1649       /* Translators: the plurality applies to both instances of the word
1650        * "contact" */
1651       message = g_strdup_printf (
1652           ngettext ("Linked contact containing %u contact",
1653               "Linked contacts containing %u contacts", num_personas),
1654           num_personas);
1655       label = gtk_label_new (message);
1656       gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
1657       g_free (message);
1658
1659       gtk_table_attach (table, label, 0, 2, current_row, current_row + 1,
1660           GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
1661       gtk_widget_show (label);
1662
1663       current_row++;
1664     }
1665
1666   alias_presence_avatar_favourite_set_up (self, table, current_row);
1667
1668   /* Display the table */
1669   gtk_box_pack_start (GTK_BOX (priv->vbox_individual), GTK_WIDGET (table),
1670       FALSE, TRUE, 0);
1671   gtk_widget_show (GTK_WIDGET (table));
1672
1673   priv->individual_table = table;
1674
1675   /* Update the table */
1676   update_individual_table (self);
1677 }
1678
1679 static void
1680 individual_table_destroy (EmpathyIndividualWidget *self)
1681 {
1682   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1683
1684   if (priv->individual_table == NULL)
1685     return;
1686
1687   gtk_container_remove (GTK_CONTAINER (priv->vbox_individual),
1688       GTK_WIDGET (priv->individual_table));
1689   priv->individual_table = NULL;
1690 }
1691
1692 static void
1693 personas_changed_cb (FolksIndividual *individual,
1694     GList *added,
1695     GList *removed,
1696     EmpathyIndividualWidget *self)
1697 {
1698   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1699   GList *personas, *l, *children;
1700   gboolean show_personas, was_showing_personas, will_show_personas, is_last;
1701   guint old_num_personas, new_num_personas = 0;
1702
1703   personas = folks_individual_get_personas (individual);
1704
1705   /* Note that old_num_personas is the number of persona tables we were
1706    * displaying, not the number of Personas which were in the Individual
1707    * before. */
1708   old_num_personas = g_hash_table_size (priv->persona_tables);
1709
1710   for (l = personas; l != NULL; l = l->next)
1711     {
1712       if (empathy_folks_persona_is_interesting (FOLKS_PERSONA (l->data)))
1713         new_num_personas++;
1714     }
1715
1716   /*
1717    * What we display for various conditions:
1718    *  - "Personas": display the alias, avatar, presence account and identifier
1719    *                for each of the Individual's Personas. (i.e. One table per
1720    *                Persona.)
1721    *  - "Individual": display the alias, avatar and presence for the Individual,
1722    *                  and a label saying "Meta-contact containing x contacts".
1723    *                  (i.e. One table in total.)
1724    *
1725    *              | SHOW_PERSONAS | !SHOW_PERSONAS
1726    * -------------+---------------+---------------
1727    * > 1 Persona  | Personas      | Individual
1728    * -------------+---------------+---------------
1729    * == 1 Persona | Personas      | Personas
1730    */
1731   show_personas = (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_SHOW_PERSONAS) != 0;
1732   was_showing_personas = show_personas || old_num_personas == 1;
1733   will_show_personas = show_personas || new_num_personas == 1;
1734
1735   /* If both @added and @removed are NULL, we're being called manually, and we
1736    * need to set up the tables for the first time. We do this simply by
1737    * ensuring was_showing_personas and will_show_personas are different so that
1738    * the code resets the UI.
1739    */
1740   if (added == NULL && removed == NULL)
1741     was_showing_personas = !will_show_personas;
1742
1743   if (was_showing_personas && will_show_personas)
1744     {
1745       /* Remove outdated Personas */
1746       for (l = removed; l != NULL; l = l->next)
1747         remove_persona (self, FOLKS_PERSONA (l->data));
1748
1749       /* Add new Personas */
1750       for (l = added; l != NULL; l = l->next)
1751         add_persona (self, FOLKS_PERSONA (l->data));
1752     }
1753   else if (!was_showing_personas && will_show_personas)
1754     {
1755       /* Remove the old Individual table */
1756       individual_table_destroy (self);
1757
1758       /* Set up all the Persona tables instead */
1759       for (l = personas; l != NULL; l = l->next)
1760         add_persona (self, FOLKS_PERSONA (l->data));
1761     }
1762   else if (was_showing_personas && !will_show_personas)
1763     {
1764       /* Remove all Personas */
1765       for (l = personas; l != NULL; l = l->next)
1766         remove_persona (self, FOLKS_PERSONA (l->data));
1767       for (l = removed; l != NULL; l = l->next)
1768         remove_persona (self, FOLKS_PERSONA (l->data));
1769
1770       /* Set up the Individual table instead */
1771       individual_table_set_up (self);
1772     }
1773
1774   /* Hide the last separator and show the others */
1775   children = gtk_container_get_children (GTK_CONTAINER (priv->vbox_individual));
1776   children = g_list_reverse (children);
1777   is_last = TRUE;
1778
1779   for (l = children; l != NULL; l = l->next)
1780     {
1781       if (GTK_IS_SEPARATOR (l->data))
1782         {
1783           gtk_widget_set_visible (GTK_WIDGET (l->data), !is_last);
1784           is_last = FALSE;
1785         }
1786     }
1787
1788   g_list_free (children);
1789 }
1790
1791 static void
1792 individual_removed_cb (FolksIndividual *individual,
1793     FolksIndividual *replacement_individual,
1794     EmpathyIndividualWidget *self)
1795 {
1796   empathy_individual_widget_set_individual (self, replacement_individual);
1797 }
1798
1799 static void
1800 remove_individual (EmpathyIndividualWidget *self)
1801 {
1802   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1803   if (priv->individual != NULL)
1804     {
1805       GList *personas, *l;
1806
1807       g_signal_handlers_disconnect_by_func (priv->individual,
1808           notify_alias_cb, self);
1809       g_signal_handlers_disconnect_by_func (priv->individual,
1810           notify_presence_cb, self);
1811       g_signal_handlers_disconnect_by_func (priv->individual,
1812           notify_avatar_cb, self);
1813       g_signal_handlers_disconnect_by_func (priv->individual,
1814           personas_changed_cb, self);
1815       g_signal_handlers_disconnect_by_func (priv->individual,
1816           individual_removed_cb, self);
1817
1818       if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1819         {
1820           g_signal_handlers_disconnect_by_func (priv->individual,
1821               notify_is_favourite_cb, self);
1822         }
1823
1824       personas = folks_individual_get_personas (priv->individual);
1825       for (l = personas; l != NULL; l = l->next)
1826         remove_persona (self, FOLKS_PERSONA (l->data));
1827       individual_table_destroy (self);
1828
1829       if (priv->contact != NULL)
1830         remove_weak_contact (self);
1831
1832       tp_clear_object (&priv->individual);
1833     }
1834
1835   if (priv->details_cancellable != NULL)
1836     g_cancellable_cancel (priv->details_cancellable);
1837 }
1838
1839 static void
1840 individual_update (EmpathyIndividualWidget *self)
1841 {
1842   EmpathyIndividualWidgetPriv *priv = GET_PRIV (self);
1843
1844   /* Connect and get info from new Individual */
1845   if (priv->individual != NULL)
1846     {
1847       g_signal_connect (priv->individual, "notify::alias",
1848           (GCallback) notify_alias_cb, self);
1849       g_signal_connect (priv->individual, "notify::presence-type",
1850           (GCallback) notify_presence_cb, self);
1851       g_signal_connect (priv->individual, "notify::presence-message",
1852           (GCallback) notify_presence_cb, self);
1853       g_signal_connect (priv->individual, "notify::avatar",
1854           (GCallback) notify_avatar_cb, self);
1855       g_signal_connect (priv->individual, "personas-changed",
1856           (GCallback) personas_changed_cb, self);
1857       g_signal_connect (priv->individual, "removed",
1858           (GCallback) individual_removed_cb, self);
1859
1860       if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_EDIT_FAVOURITE)
1861         {
1862           g_signal_connect (priv->individual, "notify::is-favourite",
1863               (GCallback) notify_is_favourite_cb, self);
1864         }
1865
1866       /* Update individual table */
1867       personas_changed_cb (priv->individual, NULL, NULL, self);
1868     }
1869
1870   if (priv->individual == NULL)
1871     {
1872       gtk_widget_hide (priv->vbox_individual);
1873     }
1874   else if (priv->individual_table != NULL)
1875     {
1876       /* We only need to update the details for the Individual as a whole */
1877       update_individual_table (self);
1878       gtk_widget_show (priv->vbox_individual);
1879     }
1880   else
1881     {
1882       /* We need to update the details for every Persona in the Individual */
1883       GList *personas, *l;
1884
1885       personas = folks_individual_get_personas (priv->individual);
1886       for (l = personas; l != NULL; l = l->next)
1887         {
1888           if (!empathy_folks_persona_is_interesting (FOLKS_PERSONA (l->data)))
1889             continue;
1890
1891           update_persona (self, FOLKS_PERSONA (l->data));
1892         }
1893
1894       gtk_widget_show (priv->vbox_individual);
1895     }
1896 }
1897
1898 static void
1899 empathy_individual_widget_init (EmpathyIndividualWidget *self)
1900 {
1901   EmpathyIndividualWidgetPriv *priv;
1902   GtkBuilder *gui;
1903   gchar *filename;
1904
1905   priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
1906       EMPATHY_TYPE_INDIVIDUAL_WIDGET, EmpathyIndividualWidgetPriv);
1907   self->priv = priv;
1908
1909   gtk_orientable_set_orientation (GTK_ORIENTABLE (self),
1910       GTK_ORIENTATION_VERTICAL);
1911
1912   filename = empathy_file_lookup ("empathy-individual-widget.ui",
1913       "libempathy-gtk");
1914   gui = empathy_builder_get_file (filename,
1915       "scrolled_window_individual", &priv->scrolled_window_individual,
1916       "viewport_individual", &priv->viewport_individual,
1917       "vbox_individual_widget", &priv->vbox_individual_widget,
1918       "vbox_individual", &priv->vbox_individual,
1919       "vbox_location", &priv->vbox_location,
1920       "subvbox_location", &priv->subvbox_location,
1921       "label_location", &priv->label_location,
1922 #ifdef HAVE_LIBCHAMPLAIN
1923       "viewport_map", &priv->viewport_map,
1924 #endif
1925       "groups_widget", &priv->groups_widget,
1926       "vbox_details", &priv->vbox_details,
1927       "table_details", &priv->table_details,
1928       "hbox_details_requested", &priv->hbox_details_requested,
1929       "hbox_client_types", &priv->hbox_client_types,
1930       NULL);
1931   g_free (filename);
1932
1933   priv->table_location = NULL;
1934
1935   gtk_box_pack_start (GTK_BOX (self), priv->vbox_individual_widget, TRUE, TRUE,
1936       0);
1937   gtk_widget_show (priv->vbox_individual_widget);
1938
1939   priv->persona_tables = g_hash_table_new (NULL, NULL);
1940   priv->individual_table = NULL;
1941
1942   /* Create widgets */
1943   details_set_up (self);
1944
1945   g_object_unref (gui);
1946 }
1947
1948 static void
1949 constructed (GObject *object)
1950 {
1951   GObjectClass *klass = G_OBJECT_CLASS (empathy_individual_widget_parent_class);
1952   EmpathyIndividualWidgetPriv *priv = GET_PRIV (object);
1953   GtkScrolledWindow *scrolled_window =
1954       GTK_SCROLLED_WINDOW (priv->scrolled_window_individual);
1955
1956   /* Allow scrolling of the list of Personas if we're showing Personas. */
1957   if (priv->flags & EMPATHY_INDIVIDUAL_WIDGET_SHOW_PERSONAS)
1958     {
1959       gtk_scrolled_window_set_shadow_type (scrolled_window, GTK_SHADOW_IN);
1960       gtk_scrolled_window_set_policy (scrolled_window,
1961           GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1962       gtk_box_set_child_packing (GTK_BOX (priv->vbox_individual_widget),
1963           priv->scrolled_window_individual, TRUE, TRUE, 0, GTK_PACK_START);
1964
1965       gtk_container_set_border_width (GTK_CONTAINER (priv->viewport_individual),
1966           6);
1967       gtk_widget_set_size_request (GTK_WIDGET (scrolled_window), -1, 100);
1968     }
1969   else
1970     {
1971       gtk_scrolled_window_set_shadow_type (scrolled_window, GTK_SHADOW_NONE);
1972       gtk_scrolled_window_set_policy (scrolled_window,
1973           GTK_POLICY_NEVER, GTK_POLICY_NEVER);
1974       gtk_box_set_child_packing (GTK_BOX (priv->vbox_individual_widget),
1975           priv->scrolled_window_individual, FALSE, TRUE, 0, GTK_PACK_START);
1976
1977       gtk_container_set_border_width (GTK_CONTAINER (priv->viewport_individual),
1978           0);
1979     }
1980
1981   /* Chain up */
1982   if (klass->constructed != NULL)
1983     klass->constructed (object);
1984 }
1985
1986 static void
1987 get_property (GObject *object,
1988     guint param_id,
1989     GValue *value,
1990     GParamSpec *pspec)
1991 {
1992   EmpathyIndividualWidgetPriv *priv = GET_PRIV (object);
1993
1994   switch (param_id)
1995     {
1996       case PROP_INDIVIDUAL:
1997         g_value_set_object (value, priv->individual);
1998         break;
1999       case PROP_FLAGS:
2000         g_value_set_flags (value, priv->flags);
2001         break;
2002       default:
2003         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
2004         break;
2005     }
2006 }
2007
2008 static void
2009 set_property (GObject *object,
2010     guint param_id,
2011     const GValue *value,
2012     GParamSpec *pspec)
2013 {
2014   EmpathyIndividualWidgetPriv *priv = GET_PRIV (object);
2015
2016   switch (param_id)
2017     {
2018       case PROP_INDIVIDUAL:
2019         empathy_individual_widget_set_individual (
2020             EMPATHY_INDIVIDUAL_WIDGET (object), g_value_get_object (value));
2021         break;
2022       case PROP_FLAGS:
2023         priv->flags = g_value_get_flags (value);
2024         break;
2025       default:
2026         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
2027         break;
2028     }
2029 }
2030
2031 static void
2032 dispose (GObject *object)
2033 {
2034   remove_individual (EMPATHY_INDIVIDUAL_WIDGET (object));
2035
2036   G_OBJECT_CLASS (empathy_individual_widget_parent_class)->dispose (object);
2037 }
2038
2039 static void
2040 finalize (GObject *object)
2041 {
2042   EmpathyIndividualWidgetPriv *priv = GET_PRIV (object);
2043
2044   g_hash_table_destroy (priv->persona_tables);
2045
2046   G_OBJECT_CLASS (empathy_individual_widget_parent_class)->finalize (object);
2047 }
2048
2049 static void
2050 empathy_individual_widget_class_init (EmpathyIndividualWidgetClass *klass)
2051 {
2052   GObjectClass *object_class = G_OBJECT_CLASS (klass);
2053
2054   object_class->constructed = constructed;
2055   object_class->get_property = get_property;
2056   object_class->set_property = set_property;
2057   object_class->dispose = dispose;
2058   object_class->finalize = finalize;
2059
2060   /**
2061    * EmpathyIndividualWidget:individual:
2062    *
2063    * The #FolksIndividual to display in the widget.
2064    */
2065   g_object_class_install_property (object_class, PROP_INDIVIDUAL,
2066       g_param_spec_object ("individual",
2067           "Individual",
2068           "The #FolksIndividual to display in the widget.",
2069           FOLKS_TYPE_INDIVIDUAL,
2070           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
2071
2072   /**
2073    * EmpathyIndividualWidget:flags:
2074    *
2075    * A set of flags which affect the widget's behaviour.
2076    */
2077   g_object_class_install_property (object_class, PROP_FLAGS,
2078       g_param_spec_flags ("flags",
2079           "Flags",
2080           "A set of flags which affect the widget's behaviour.",
2081           EMPATHY_TYPE_INDIVIDUAL_WIDGET_FLAGS,
2082           EMPATHY_INDIVIDUAL_WIDGET_NONE,
2083           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY));
2084
2085   g_type_class_add_private (object_class, sizeof (EmpathyIndividualWidgetPriv));
2086 }
2087
2088 /**
2089  * empathy_individual_widget_new:
2090  * @individual: the #FolksIndividual to display
2091  * @flags: flags affecting how the widget behaves and what it displays
2092  *
2093  * Creates a new #EmpathyIndividualWidget.
2094  *
2095  * Return value: a new #EmpathyIndividualWidget
2096  */
2097 GtkWidget *
2098 empathy_individual_widget_new (FolksIndividual *individual,
2099     EmpathyIndividualWidgetFlags flags)
2100 {
2101   g_return_val_if_fail (individual == NULL || FOLKS_IS_INDIVIDUAL (individual),
2102       NULL);
2103
2104   return g_object_new (EMPATHY_TYPE_INDIVIDUAL_WIDGET,
2105       "individual", individual,
2106       "flags", flags,
2107       NULL);
2108 }
2109
2110 /**
2111  * empathy_individual_widget_get_individual:
2112  * @self: an #EmpathyIndividualWidget
2113  *
2114  * Returns the #FolksIndividual being displayed by the widget.
2115  *
2116  * Return value: the #FolksIndividual being displayed, or %NULL
2117  */
2118 FolksIndividual *
2119 empathy_individual_widget_get_individual (EmpathyIndividualWidget *self)
2120 {
2121   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_WIDGET (self), NULL);
2122
2123   return GET_PRIV (self)->individual;
2124 }
2125
2126 /**
2127  * empathy_individual_widget_set_individual:
2128  * @self: an #EmpathyIndividualWidget
2129  * @individual: the #FolksIndividual to display, or %NULL
2130  *
2131  * Set the #FolksIndividual to be displayed by the widget:
2132  * #EmpathyIndividualWidget:individual.
2133  *
2134  * The @individual may be %NULL in order to display nothing in the widget.
2135  */
2136 void
2137 empathy_individual_widget_set_individual (EmpathyIndividualWidget *self,
2138     FolksIndividual *individual)
2139 {
2140   EmpathyIndividualWidgetPriv *priv;
2141
2142   g_return_if_fail (EMPATHY_IS_INDIVIDUAL_WIDGET (self));
2143   g_return_if_fail (individual == NULL || FOLKS_IS_INDIVIDUAL (individual));
2144
2145   priv = GET_PRIV (self);
2146
2147   if (individual == priv->individual)
2148     return;
2149
2150   /* Out with the old… */
2151   remove_individual (self);
2152
2153   /* …and in with the new. */
2154   if (individual != NULL)
2155     g_object_ref (individual);
2156   priv->individual = individual;
2157
2158   /* Update information for widgets */
2159   individual_update (self);
2160   groups_update (self);
2161   details_update (self);
2162   location_update (self);
2163   client_types_update (self);
2164 }