]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-widget.c
Merge branch 'master' into mc5
[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/util.h>
36
37 #include <libempathy/empathy-tp-contact-factory.h>
38 #include <libempathy/empathy-contact-manager.h>
39 #include <libempathy/empathy-contact-list.h>
40 #include <libempathy/empathy-location.h>
41 #include <libempathy/empathy-time.h>
42 #include <libempathy/empathy-utils.h>
43 #include <libempathy/empathy-account.h>
44
45 #include "empathy-contact-widget.h"
46 #include "empathy-account-chooser.h"
47 #include "empathy-avatar-chooser.h"
48 #include "empathy-avatar-image.h"
49 #include "empathy-ui-utils.h"
50 #include "empathy-kludge-label.h"
51
52 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
53 #include <libempathy/empathy-debug.h>
54
55 /**
56  * SECTION:empathy-contact-widget
57  * @title:EmpathyContactWidget
58  * @short_description: A widget used to display and edit details about a contact
59  * @include: libempathy-empathy-contact-widget.h
60  *
61  * #EmpathyContactWidget is a widget which displays appropriate widgets
62  * with details about a contact, also allowing changing these details,
63  * if desired.
64  */
65
66 /**
67  * EmpathyContactWidget:
68  * @parent: parent object
69  *
70  * Widget which displays appropriate widgets with details about a contact,
71  * also allowing changing these details, if desired.
72  */
73
74 /* Delay before updating the widget when the id entry changed (seconds) */
75 #define ID_CHANGED_TIMEOUT 1
76
77 typedef struct
78 {
79   EmpathyTpContactFactory *factory;
80   EmpathyContactManager *manager;
81   EmpathyContact *contact;
82   EmpathyContactWidgetFlags flags;
83   guint widget_id_timeout;
84
85   GtkWidget *vbox_contact_widget;
86
87   /* Contact */
88   GtkWidget *vbox_contact;
89   GtkWidget *widget_avatar;
90   GtkWidget *widget_account;
91   GtkWidget *widget_id;
92   GtkWidget *widget_alias;
93   GtkWidget *label_alias;
94   GtkWidget *entry_alias;
95   GtkWidget *hbox_presence;
96   GtkWidget *image_state;
97   GtkWidget *label_status;
98   GtkWidget *table_contact;
99   GtkWidget *vbox_avatar;
100
101   /* Location */
102   GtkWidget *vbox_location;
103   GtkWidget *subvbox_location;
104   GtkWidget *table_location;
105   GtkWidget *label_location;
106 #if HAVE_LIBCHAMPLAIN
107   GtkWidget *viewport_map;
108   GtkWidget *map_view_embed;
109   ChamplainView *map_view;
110 #endif
111
112   /* Groups */
113   GtkWidget *vbox_groups;
114   GtkWidget *entry_group;
115   GtkWidget *button_group;
116   GtkWidget *treeview_groups;
117
118   /* Details */
119   GtkWidget *vbox_details;
120   GtkWidget *table_details;
121   GtkWidget *hbox_details_requested;
122
123   /* Client */
124   GtkWidget *vbox_client;
125   GtkWidget *table_client;
126   GtkWidget *hbox_client_requested;
127 } EmpathyContactWidget;
128
129 typedef struct
130 {
131   EmpathyContactWidget *information;
132   const gchar *name;
133   gboolean found;
134   GtkTreeIter found_iter;
135 } FindName;
136
137 static void contact_widget_destroy_cb (GtkWidget *widget,
138     EmpathyContactWidget *information);
139 static void contact_widget_remove_contact (EmpathyContactWidget *information);
140 static void contact_widget_set_contact (EmpathyContactWidget *information,
141     EmpathyContact *contact);
142 static void contact_widget_contact_setup (EmpathyContactWidget *information);
143 static void contact_widget_contact_update (EmpathyContactWidget *information);
144 static void contact_widget_change_contact (EmpathyContactWidget *information);
145 static void contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
146     EmpathyContactWidget *information);
147 static gboolean contact_widget_id_focus_out_cb (GtkWidget *widget,
148     GdkEventFocus *event, EmpathyContactWidget *information);
149 static gboolean contact_widget_entry_alias_focus_event_cb (
150     GtkEditable *editable, GdkEventFocus *event,
151     EmpathyContactWidget *information);
152 static void contact_widget_name_notify_cb (EmpathyContactWidget *information);
153 static void contact_widget_presence_notify_cb (
154     EmpathyContactWidget *information);
155 static void contact_widget_avatar_notify_cb (
156     EmpathyContactWidget *information);
157 static void contact_widget_groups_setup (
158     EmpathyContactWidget *information);
159 static void contact_widget_groups_update (EmpathyContactWidget *information);
160 static void contact_widget_model_setup (EmpathyContactWidget *information);
161 static void contact_widget_model_populate_columns (
162     EmpathyContactWidget *information);
163 static void contact_widget_groups_populate_data (
164     EmpathyContactWidget *information);
165 static void contact_widget_groups_notify_cb (
166     EmpathyContactWidget *information);
167 static gboolean contact_widget_model_find_name (
168     EmpathyContactWidget *information,const gchar *name, GtkTreeIter *iter);
169 static gboolean contact_widget_model_find_name_foreach (GtkTreeModel *model,
170     GtkTreePath *path, GtkTreeIter *iter, FindName *data);
171 static void contact_widget_cell_toggled (GtkCellRendererToggle *cell,
172     gchar *path_string, EmpathyContactWidget *information);
173 static void contact_widget_entry_group_changed_cb (GtkEditable *editable,
174     EmpathyContactWidget *information);
175 static void contact_widget_entry_group_activate_cb (GtkEntry *entry,
176     EmpathyContactWidget *information);
177 static void contact_widget_button_group_clicked_cb (GtkButton *button,
178     EmpathyContactWidget *information);
179 static void contact_widget_details_setup (EmpathyContactWidget *information);
180 static void contact_widget_details_update (EmpathyContactWidget *information);
181 static void contact_widget_client_setup (EmpathyContactWidget *information);
182 static void contact_widget_client_update (EmpathyContactWidget *information);
183 static void contact_widget_location_update (EmpathyContactWidget *information);
184
185 enum
186 {
187   COL_NAME,
188   COL_ENABLED,
189   COL_EDITABLE,
190   COL_COUNT
191 };
192
193 /**
194  * empathy_contact_widget_new:
195  * @contact: an #EmpathyContact
196  * @flags: #EmpathyContactWidgetFlags for the new contact widget
197  *
198  * Creates a new #EmpathyContactWidget.
199  *
200  * Return value: a new #EmpathyContactWidget
201  */
202 GtkWidget *
203 empathy_contact_widget_new (EmpathyContact *contact,
204                             EmpathyContactWidgetFlags flags)
205 {
206   EmpathyContactWidget *information;
207   GtkBuilder *gui;
208   gchar *filename;
209
210   g_return_val_if_fail (contact == NULL || EMPATHY_IS_CONTACT (contact), NULL);
211
212   information = g_slice_new0 (EmpathyContactWidget);
213   information->flags = flags;
214
215   filename = empathy_file_lookup ("empathy-contact-widget.ui",
216       "libempathy-gtk");
217   gui = empathy_builder_get_file (filename,
218        "vbox_contact_widget", &information->vbox_contact_widget,
219        "vbox_contact", &information->vbox_contact,
220        "hbox_presence", &information->hbox_presence,
221        "label_alias", &information->label_alias,
222        "image_state", &information->image_state,
223        "table_contact", &information->table_contact,
224        "vbox_avatar", &information->vbox_avatar,
225        "vbox_location", &information->vbox_location,
226        "subvbox_location", &information->subvbox_location,
227        "label_location", &information->label_location,
228 #if HAVE_LIBCHAMPLAIN
229        "viewport_map", &information->viewport_map,
230 #endif
231        "vbox_groups", &information->vbox_groups,
232        "entry_group", &information->entry_group,
233        "button_group", &information->button_group,
234        "treeview_groups", &information->treeview_groups,
235        "vbox_details", &information->vbox_details,
236        "table_details", &information->table_details,
237        "hbox_details_requested", &information->hbox_details_requested,
238        "vbox_client", &information->vbox_client,
239        "table_client", &information->table_client,
240        "hbox_client_requested", &information->hbox_client_requested,
241        NULL);
242   g_free (filename);
243
244   empathy_builder_connect (gui, information,
245       "vbox_contact_widget", "destroy", contact_widget_destroy_cb,
246       "entry_group", "changed", contact_widget_entry_group_changed_cb,
247       "entry_group", "activate", contact_widget_entry_group_activate_cb,
248       "button_group", "clicked", contact_widget_button_group_clicked_cb,
249       NULL);
250   information->table_location = NULL;
251
252   g_object_set_data (G_OBJECT (information->vbox_contact_widget),
253       "EmpathyContactWidget",
254       information);
255
256   /* Create widgets */
257   contact_widget_contact_setup (information);
258   contact_widget_groups_setup (information);
259   contact_widget_details_setup (information);
260   contact_widget_client_setup (information);
261
262   if (contact != NULL)
263     contact_widget_set_contact (information, contact);
264
265   else if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT ||
266       information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
267     contact_widget_change_contact (information);
268
269   return empathy_builder_unref_and_keep_widget (gui,
270     information->vbox_contact_widget);
271 }
272
273 /**
274  * empathy_contact_widget_get_contact:
275  * @widget: an #EmpathyContactWidget
276  *
277  * Get the #EmpathyContact related with the #EmpathyContactWidget @widget.
278  *
279  * Returns: the #EmpathyContact associated with @widget
280  */
281 EmpathyContact *
282 empathy_contact_widget_get_contact (GtkWidget *widget)
283 {
284   EmpathyContactWidget *information;
285
286   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
287
288   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
289   if (!information)
290       return NULL;
291
292   return information->contact;
293 }
294
295 /**
296  * empathy_contact_widget_set_contact:
297  * @widget: an #EmpathyContactWidget
298  * @contact: a different #EmpathyContact
299  *
300  * Change the #EmpathyContact related with the #EmpathyContactWidget @widget.
301  */
302 void
303 empathy_contact_widget_set_contact (GtkWidget *widget,
304                                     EmpathyContact *contact)
305 {
306   EmpathyContactWidget *information;
307
308   g_return_if_fail (GTK_IS_WIDGET (widget));
309   g_return_if_fail (EMPATHY_IS_CONTACT (contact));
310
311   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
312   if (!information)
313     return;
314
315   contact_widget_set_contact (information, contact);
316 }
317
318 /**
319  * empathy_contact_widget_set_account_filter:
320  * @widget: an #EmpathyContactWidget
321  * @filter: a #EmpathyAccountChooserFilterFunc
322  * @user_data: user data to pass to @filter, or %NULL
323  *
324  * Set a filter on the #EmpathyAccountChooser included in the
325  * #EmpathyContactWidget.
326  */
327 void
328 empathy_contact_widget_set_account_filter (
329     GtkWidget *widget,
330     EmpathyAccountChooserFilterFunc filter,
331     gpointer user_data)
332 {
333   EmpathyContactWidget *information;
334   EmpathyAccountChooser *chooser;
335
336   g_return_if_fail (GTK_IS_WIDGET (widget));
337
338   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
339   if (!information)
340     return;
341
342   chooser = EMPATHY_ACCOUNT_CHOOSER (information->widget_account);
343   if (chooser)
344       empathy_account_chooser_set_filter (chooser, filter, user_data);
345 }
346
347 static void
348 contact_widget_destroy_cb (GtkWidget *widget,
349                            EmpathyContactWidget *information)
350 {
351   contact_widget_remove_contact (information);
352
353   if (information->widget_id_timeout != 0)
354     {
355       g_source_remove (information->widget_id_timeout);
356     }
357   if (information->manager)
358     {
359       g_object_unref (information->manager);
360     }
361
362   g_slice_free (EmpathyContactWidget, information);
363 }
364
365 static void
366 contact_widget_remove_contact (EmpathyContactWidget *information)
367 {
368   if (information->contact)
369     {
370       g_signal_handlers_disconnect_by_func (information->contact,
371           contact_widget_name_notify_cb, information);
372       g_signal_handlers_disconnect_by_func (information->contact,
373           contact_widget_presence_notify_cb, information);
374       g_signal_handlers_disconnect_by_func (information->contact,
375           contact_widget_avatar_notify_cb, information);
376       g_signal_handlers_disconnect_by_func (information->contact,
377           contact_widget_groups_notify_cb, information);
378
379       g_object_unref (information->contact);
380       g_object_unref (information->factory);
381       information->contact = NULL;
382       information->factory = NULL;
383     }
384 }
385
386 static void
387 contact_widget_set_contact (EmpathyContactWidget *information,
388                             EmpathyContact *contact)
389 {
390   if (contact == information->contact)
391     return;
392
393   contact_widget_remove_contact (information);
394   if (contact)
395     {
396       TpConnection *connection;
397
398       connection = empathy_contact_get_connection (contact);
399       information->contact = g_object_ref (contact);
400       information->factory = empathy_tp_contact_factory_dup_singleton (connection);
401     }
402
403   /* set the selected account to be the account this contact came from */
404   if (contact && EMPATHY_IS_ACCOUNT_CHOOSER (information->widget_account)) {
405       empathy_account_chooser_set_account (
406                       EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
407                       empathy_contact_get_account (contact));
408   }
409
410   /* Update information for widgets */
411   contact_widget_contact_update (information);
412   contact_widget_groups_update (information);
413   contact_widget_details_update (information);
414   contact_widget_client_update (information);
415   contact_widget_location_update (information);
416 }
417
418 static gboolean
419 contact_widget_id_activate_timeout (EmpathyContactWidget *self)
420 {
421   contact_widget_change_contact (self);
422   return FALSE;
423 }
424
425 static void
426 contact_widget_id_changed_cb (GtkEntry *entry,
427                               EmpathyContactWidget *self)
428 {
429   if (self->widget_id_timeout != 0)
430     {
431       g_source_remove (self->widget_id_timeout);
432     }
433
434   self->widget_id_timeout =
435     g_timeout_add_seconds (ID_CHANGED_TIMEOUT,
436         (GSourceFunc) contact_widget_id_activate_timeout, self);
437 }
438
439 static void
440 save_avatar_menu_activate_cb (GtkWidget *widget,
441                               EmpathyContactWidget *information)
442 {
443   GtkWidget *dialog;
444   EmpathyAvatar *avatar;
445   gchar *ext = NULL, *filename;
446
447   dialog = gtk_file_chooser_dialog_new (_("Save Avatar"),
448       NULL,
449       GTK_FILE_CHOOSER_ACTION_SAVE,
450       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
451       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
452       NULL);
453
454   gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
455       TRUE);
456
457   /* look for the avatar extension */
458   avatar = empathy_contact_get_avatar (information->contact);
459   if (avatar->format != NULL)
460     {
461       gchar **splitted;
462
463       splitted = g_strsplit (avatar->format, "/", 2);
464       if (splitted[0] != NULL && splitted[1] != NULL)
465           ext = g_strdup (splitted[1]);
466
467       g_strfreev (splitted);
468     }
469   else
470     {
471       /* Avatar was loaded from the cache so was converted to PNG */
472       ext = g_strdup ("png");
473     }
474
475   if (ext != NULL)
476     {
477       gchar *id;
478
479       id = tp_escape_as_identifier (empathy_contact_get_id (
480             information->contact));
481
482       filename = g_strdup_printf ("%s.%s", id, ext);
483       gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), filename);
484
485       g_free (id);
486       g_free (ext);
487       g_free (filename);
488     }
489
490   if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
491     {
492       GError *error = NULL;
493
494       filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
495
496       if (!empathy_avatar_save_to_file (avatar, filename, &error))
497         {
498           /* Save error */
499           GtkWidget *dialog;
500
501           dialog = gtk_message_dialog_new (NULL, 0,
502               GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
503               _("Unable to save avatar"));
504
505           gtk_message_dialog_format_secondary_text (
506               GTK_MESSAGE_DIALOG (dialog), "%s", error->message);
507
508           g_signal_connect (dialog, "response",
509               G_CALLBACK (gtk_widget_destroy), NULL);
510
511           gtk_window_present (GTK_WINDOW (dialog));
512
513           g_clear_error (&error);
514         }
515
516       g_free (filename);
517     }
518
519   gtk_widget_destroy (dialog);
520 }
521
522 static void
523 popup_avatar_menu (EmpathyContactWidget *information,
524                    GtkWidget *parent,
525                    GdkEventButton *event)
526 {
527   GtkWidget *menu, *item;
528   gint button, event_time;
529
530   if (information->contact == NULL ||
531       empathy_contact_get_avatar (information->contact) == NULL)
532       return;
533
534   menu = gtk_menu_new ();
535
536   /* Add "Save as..." entry */
537   item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SAVE_AS, NULL);
538   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
539   gtk_widget_show (item);
540
541   g_signal_connect (item, "activate",
542       G_CALLBACK (save_avatar_menu_activate_cb), information);
543
544   if (event)
545     {
546       button = event->button;
547       event_time = event->time;
548     }
549   else
550     {
551       button = 0;
552       event_time = gtk_get_current_event_time ();
553     }
554
555   gtk_menu_attach_to_widget (GTK_MENU (menu), parent, NULL);
556   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
557       button, event_time);
558 }
559
560 static gboolean
561 widget_avatar_popup_menu_cb (GtkWidget *widget,
562                              EmpathyContactWidget *information)
563 {
564   popup_avatar_menu (information, widget, NULL);
565
566   return TRUE;
567 }
568
569 static gboolean
570 widget_avatar_button_press_event_cb (GtkWidget *widget,
571                                      GdkEventButton *event,
572                                      EmpathyContactWidget *information)
573 {
574   /* Ignore double-clicks and triple-clicks */
575   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
576     {
577       popup_avatar_menu (information, widget, event);
578       return TRUE;
579     }
580
581   return FALSE;
582 }
583
584 static void
585 update_avatar_chooser_account_cb (EmpathyAccountChooser *account_chooser,
586                                   EmpathyAvatarChooser *avatar_chooser)
587 {
588   TpConnection *connection;
589
590   connection = empathy_account_chooser_get_connection (account_chooser);
591   g_object_set (avatar_chooser, "connection", connection, NULL);
592 }
593
594 static void
595 contact_widget_contact_setup (EmpathyContactWidget *information)
596 {
597   /* Setup label_status as a KludgeLabel */
598   information->label_status = empathy_kludge_label_new ("");
599   gtk_label_set_line_wrap_mode (GTK_LABEL (information->label_status),
600                                 PANGO_WRAP_WORD_CHAR);
601   gtk_label_set_line_wrap (GTK_LABEL (information->label_status),
602                            TRUE);
603   gtk_box_pack_start (GTK_BOX (information->hbox_presence),
604         information->label_status, TRUE, TRUE, 0);
605   gtk_widget_show (information->label_status);
606
607   /* Setup account label/chooser */
608   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
609     {
610       information->widget_account = empathy_account_chooser_new ();
611
612       g_signal_connect_swapped (information->widget_account, "changed",
613             G_CALLBACK (contact_widget_change_contact),
614             information);
615     }
616   else
617     {
618       information->widget_account = gtk_label_new (NULL);
619       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
620         gtk_label_set_selectable (GTK_LABEL (information->widget_account), TRUE);
621       }
622       gtk_misc_set_alignment (GTK_MISC (information->widget_account), 0, 0.5);
623     }
624   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
625            information->widget_account,
626            1, 2, 0, 1);
627   gtk_widget_show (information->widget_account);
628
629   /* Set up avatar chooser/display */
630   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
631     {
632       information->widget_avatar = empathy_avatar_chooser_new ();
633       g_signal_connect (information->widget_avatar, "changed",
634             G_CALLBACK (contact_widget_avatar_changed_cb),
635             information);
636       if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
637         {
638           g_signal_connect (information->widget_account, "changed",
639               G_CALLBACK (update_avatar_chooser_account_cb),
640               information->widget_avatar);
641           update_avatar_chooser_account_cb (
642               EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
643               EMPATHY_AVATAR_CHOOSER (information->widget_avatar));
644         }
645     }
646   else
647     {
648       information->widget_avatar = empathy_avatar_image_new ();
649
650       g_signal_connect (information->widget_avatar, "popup-menu",
651           G_CALLBACK (widget_avatar_popup_menu_cb), information);
652       g_signal_connect (information->widget_avatar, "button-press-event",
653           G_CALLBACK (widget_avatar_button_press_event_cb), information);
654     }
655
656   gtk_box_pack_start (GTK_BOX (information->vbox_avatar),
657           information->widget_avatar,
658           FALSE, FALSE,
659           6);
660   gtk_widget_show (information->widget_avatar);
661
662   /* Setup id label/entry */
663   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
664     {
665       information->widget_id = gtk_entry_new ();
666       g_signal_connect (information->widget_id, "focus-out-event",
667             G_CALLBACK (contact_widget_id_focus_out_cb),
668             information);
669       g_signal_connect (information->widget_id, "changed",
670             G_CALLBACK (contact_widget_id_changed_cb),
671             information);
672     }
673   else
674     {
675       information->widget_id = gtk_label_new (NULL);
676       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
677         gtk_label_set_selectable (GTK_LABEL (information->widget_id), TRUE);
678       }
679       gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5);
680     }
681   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
682            information->widget_id,
683            1, 2, 1, 2);
684   gtk_widget_show (information->widget_id);
685
686   /* Setup alias label/entry */
687   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ALIAS)
688     {
689       information->widget_alias = gtk_entry_new ();
690       g_signal_connect (information->widget_alias, "focus-out-event",
691             G_CALLBACK (contact_widget_entry_alias_focus_event_cb),
692             information);
693       /* Make return activate the window default (the Close button) */
694       gtk_entry_set_activates_default (GTK_ENTRY (information->widget_alias),
695           TRUE);
696     }
697   else
698     {
699       information->widget_alias = gtk_label_new (NULL);
700       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
701         gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE);
702       }
703       gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5);
704     }
705   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
706            information->widget_alias,
707            1, 2, 2, 3);
708   if (information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) {
709     gtk_label_set_selectable (GTK_LABEL (information->label_status), FALSE);
710   }
711   gtk_widget_show (information->widget_alias);
712 }
713
714 static void
715 contact_widget_contact_update (EmpathyContactWidget *information)
716 {
717   EmpathyAccount *account = NULL;
718   const gchar *id = NULL;
719
720   /* Connect and get info from new contact */
721   if (information->contact)
722     {
723       g_signal_connect_swapped (information->contact, "notify::name",
724           G_CALLBACK (contact_widget_name_notify_cb), information);
725       g_signal_connect_swapped (information->contact, "notify::presence",
726           G_CALLBACK (contact_widget_presence_notify_cb), information);
727       g_signal_connect_swapped (information->contact,
728           "notify::presence-message",
729           G_CALLBACK (contact_widget_presence_notify_cb), information);
730       g_signal_connect_swapped (information->contact, "notify::avatar",
731           G_CALLBACK (contact_widget_avatar_notify_cb), information);
732
733       account = empathy_contact_get_account (information->contact);
734       id = empathy_contact_get_id (information->contact);
735     }
736
737   /* Update account widget */
738   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
739     {
740       if (account)
741         {
742           g_signal_handlers_block_by_func (information->widget_account,
743                    contact_widget_change_contact,
744                    information);
745           empathy_account_chooser_set_account (
746               EMPATHY_ACCOUNT_CHOOSER (information->widget_account), account);
747           g_signal_handlers_unblock_by_func (information->widget_account,
748               contact_widget_change_contact, information);
749         }
750     }
751   else
752     {
753       if (account)
754         {
755           const gchar *name;
756
757           name = empathy_account_get_display_name (account);
758           gtk_label_set_label (GTK_LABEL (information->widget_account), name);
759         }
760     }
761
762   /* Update id widget */
763   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
764       gtk_entry_set_text (GTK_ENTRY (information->widget_id), id ? id : "");
765   else
766       gtk_label_set_label (GTK_LABEL (information->widget_id), id ? id : "");
767
768   /* Update other widgets */
769   if (information->contact)
770     {
771       contact_widget_name_notify_cb (information);
772       contact_widget_presence_notify_cb (information);
773       contact_widget_avatar_notify_cb (information);
774
775       gtk_widget_show (information->label_alias);
776       gtk_widget_show (information->widget_alias);
777       gtk_widget_show (information->hbox_presence);
778       gtk_widget_show (information->widget_avatar);
779     }
780   else
781     {
782       gtk_widget_hide (information->label_alias);
783       gtk_widget_hide (information->widget_alias);
784       gtk_widget_hide (information->hbox_presence);
785       gtk_widget_hide (information->widget_avatar);
786     }
787 }
788
789 static void
790 contact_widget_got_contact_cb (EmpathyTpContactFactory *factory,
791                                EmpathyContact *contact,
792                                const GError *error,
793                                gpointer user_data,
794                                GObject *weak_object)
795 {
796   EmpathyContactWidget *information = user_data;
797
798   if (error != NULL)
799     {
800       DEBUG ("Error: %s", error->message);
801       return;
802     }
803
804   contact_widget_set_contact (information, contact);
805 }
806
807 static void
808 contact_widget_change_contact (EmpathyContactWidget *information)
809 {
810   EmpathyTpContactFactory *factory;
811   TpConnection *connection;
812
813   connection = empathy_account_chooser_get_connection (
814       EMPATHY_ACCOUNT_CHOOSER (information->widget_account));
815   if (!connection)
816       return;
817
818   factory = empathy_tp_contact_factory_dup_singleton (connection);
819   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
820     {
821       const gchar *id;
822
823       id = gtk_entry_get_text (GTK_ENTRY (information->widget_id));
824       if (!EMP_STR_EMPTY (id))
825         {
826           empathy_tp_contact_factory_get_from_id (factory, id,
827               contact_widget_got_contact_cb, information, NULL,
828               G_OBJECT (information->vbox_contact_widget));
829         }
830     }
831   else
832     {
833       empathy_tp_contact_factory_get_from_handle (factory,
834           tp_connection_get_self_handle (connection),
835           contact_widget_got_contact_cb, information, NULL,
836           G_OBJECT (information->vbox_contact_widget));
837     }
838
839   g_object_unref (factory);
840 }
841
842 static void
843 contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
844                                   EmpathyContactWidget *information)
845 {
846   const gchar *data;
847   gsize size;
848   const gchar *mime_type;
849
850   empathy_avatar_chooser_get_image_data (
851       EMPATHY_AVATAR_CHOOSER (information->widget_avatar),
852       &data, &size, &mime_type);
853   empathy_tp_contact_factory_set_avatar (information->factory,
854       data, size, mime_type);
855 }
856
857 static gboolean
858 contact_widget_id_focus_out_cb (GtkWidget *widget,
859                                 GdkEventFocus *event,
860                                 EmpathyContactWidget *information)
861 {
862   contact_widget_change_contact (information);
863   return FALSE;
864 }
865
866 static gboolean
867 contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
868                                            GdkEventFocus *event,
869                                            EmpathyContactWidget *information)
870 {
871   if (information->contact)
872     {
873       const gchar *alias;
874
875       alias = gtk_entry_get_text (GTK_ENTRY (editable));
876       empathy_tp_contact_factory_set_alias (information->factory,
877           information->contact, alias);
878     }
879
880   return FALSE;
881 }
882
883 static void
884 contact_widget_name_notify_cb (EmpathyContactWidget *information)
885 {
886   if (GTK_IS_ENTRY (information->widget_alias))
887       gtk_entry_set_text (GTK_ENTRY (information->widget_alias),
888           empathy_contact_get_name (information->contact));
889   else
890       gtk_label_set_label (GTK_LABEL (information->widget_alias),
891           empathy_contact_get_name (information->contact));
892 }
893
894 static void
895 contact_widget_presence_notify_cb (EmpathyContactWidget *information)
896 {
897   gtk_label_set_text (GTK_LABEL (information->label_status),
898       empathy_contact_get_status (information->contact));
899   gtk_image_set_from_icon_name (GTK_IMAGE (information->image_state),
900       empathy_icon_name_for_contact (information->contact),
901       GTK_ICON_SIZE_BUTTON);
902 }
903
904 static void
905 contact_widget_avatar_notify_cb (EmpathyContactWidget *information)
906 {
907   EmpathyAvatar *avatar = NULL;
908
909   if (information->contact)
910       avatar = empathy_contact_get_avatar (information->contact);
911
912   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
913     {
914       g_signal_handlers_block_by_func (information->widget_avatar,
915           contact_widget_avatar_changed_cb,
916           information);
917       empathy_avatar_chooser_set (
918           EMPATHY_AVATAR_CHOOSER (information->widget_avatar), avatar);
919       g_signal_handlers_unblock_by_func (information->widget_avatar,
920           contact_widget_avatar_changed_cb, information);
921     }
922   else
923       empathy_avatar_image_set (
924           EMPATHY_AVATAR_IMAGE (information->widget_avatar), avatar);
925 }
926
927 static void
928 contact_widget_groups_setup (EmpathyContactWidget *information)
929 {
930   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS)
931     {
932       information->manager = empathy_contact_manager_dup_singleton ();
933       contact_widget_model_setup (information);
934     }
935 }
936
937 static void
938 contact_widget_groups_update (EmpathyContactWidget *information)
939 {
940   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS &&
941       information->contact)
942     {
943       g_signal_connect_swapped (information->contact, "notify::groups",
944           G_CALLBACK (contact_widget_groups_notify_cb), information);
945       contact_widget_groups_populate_data (information);
946
947       gtk_widget_show (information->vbox_groups);
948     }
949   else
950       gtk_widget_hide (information->vbox_groups);
951 }
952
953 static void
954 contact_widget_model_setup (EmpathyContactWidget *information)
955 {
956   GtkTreeView *view;
957   GtkListStore *store;
958   GtkTreeSelection *selection;
959
960   view = GTK_TREE_VIEW (information->treeview_groups);
961
962   store = gtk_list_store_new (COL_COUNT,
963       G_TYPE_STRING,   /* name */
964       G_TYPE_BOOLEAN,  /* enabled */
965       G_TYPE_BOOLEAN); /* editable */
966
967   gtk_tree_view_set_model (view, GTK_TREE_MODEL (store));
968
969   selection = gtk_tree_view_get_selection (view);
970   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
971
972   contact_widget_model_populate_columns (information);
973
974   gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
975       COL_NAME, GTK_SORT_ASCENDING);
976
977   g_object_unref (store);
978 }
979
980 static void
981 contact_widget_model_populate_columns (EmpathyContactWidget *information)
982 {
983   GtkTreeView *view;
984   GtkTreeModel *model;
985   GtkTreeViewColumn *column;
986   GtkCellRenderer  *renderer;
987   guint col_offset;
988
989   view = GTK_TREE_VIEW (information->treeview_groups);
990   model = gtk_tree_view_get_model (view);
991
992   renderer = gtk_cell_renderer_toggle_new ();
993   g_signal_connect (renderer, "toggled",
994       G_CALLBACK (contact_widget_cell_toggled), information);
995
996   column = gtk_tree_view_column_new_with_attributes (_("Select"), renderer,
997       "active", COL_ENABLED, NULL);
998
999   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
1000   gtk_tree_view_column_set_fixed_width (column, 50);
1001   gtk_tree_view_append_column (view, column);
1002
1003   renderer = gtk_cell_renderer_text_new ();
1004   col_offset = gtk_tree_view_insert_column_with_attributes (view,
1005       -1, _("Group"),
1006       renderer,
1007       "text", COL_NAME,
1008       /* "editable", COL_EDITABLE, */
1009       NULL);
1010
1011   g_object_set_data (G_OBJECT (renderer),
1012       "column", GINT_TO_POINTER (COL_NAME));
1013
1014   column = gtk_tree_view_get_column (view, col_offset - 1);
1015   gtk_tree_view_column_set_sort_column_id (column, COL_NAME);
1016   gtk_tree_view_column_set_resizable (column,FALSE);
1017   gtk_tree_view_column_set_clickable (GTK_TREE_VIEW_COLUMN (column), TRUE);
1018 }
1019
1020 static void
1021 contact_widget_groups_populate_data (EmpathyContactWidget *information)
1022 {
1023   GtkTreeView *view;
1024   GtkListStore *store;
1025   GtkTreeIter iter;
1026   GList *my_groups, *l;
1027   GList *all_groups;
1028
1029   view = GTK_TREE_VIEW (information->treeview_groups);
1030   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
1031   gtk_list_store_clear (store);
1032
1033   all_groups = empathy_contact_list_get_all_groups (
1034       EMPATHY_CONTACT_LIST (information->manager));
1035   my_groups = empathy_contact_list_get_groups (
1036       EMPATHY_CONTACT_LIST (information->manager),
1037       information->contact);
1038
1039   for (l = all_groups; l; l = l->next)
1040     {
1041       const gchar *group_str;
1042       gboolean enabled;
1043
1044       group_str = l->data;
1045
1046       enabled = g_list_find_custom (my_groups,
1047           group_str, (GCompareFunc) strcmp) != NULL;
1048
1049       gtk_list_store_append (store, &iter);
1050       gtk_list_store_set (store, &iter,
1051           COL_NAME, group_str,
1052           COL_EDITABLE, TRUE,
1053           COL_ENABLED, enabled,
1054           -1);
1055     }
1056
1057   g_list_foreach (all_groups, (GFunc) g_free, NULL);
1058   g_list_foreach (my_groups, (GFunc) g_free, NULL);
1059   g_list_free (all_groups);
1060   g_list_free (my_groups);
1061 }
1062
1063 static void
1064 contact_widget_groups_notify_cb (EmpathyContactWidget *information)
1065 {
1066   /* FIXME: not implemented */
1067 }
1068
1069 static gboolean
1070 contact_widget_model_find_name (EmpathyContactWidget *information,
1071                                 const gchar *name,
1072                                 GtkTreeIter *iter)
1073 {
1074   GtkTreeView *view;
1075   GtkTreeModel *model;
1076   FindName data;
1077
1078   if (EMP_STR_EMPTY (name))
1079       return FALSE;
1080
1081   data.information = information;
1082   data.name = name;
1083   data.found = FALSE;
1084
1085   view = GTK_TREE_VIEW (information->treeview_groups);
1086   model = gtk_tree_view_get_model (view);
1087
1088   gtk_tree_model_foreach (model,
1089       (GtkTreeModelForeachFunc) contact_widget_model_find_name_foreach,
1090       &data);
1091
1092   if (data.found == TRUE)
1093     {
1094       *iter = data.found_iter;
1095       return TRUE;
1096     }
1097
1098   return FALSE;
1099 }
1100
1101 static gboolean
1102 contact_widget_model_find_name_foreach (GtkTreeModel *model,
1103                                         GtkTreePath *path,
1104                                         GtkTreeIter *iter,
1105                                         FindName *data)
1106 {
1107   gchar *name;
1108
1109   gtk_tree_model_get (model, iter,
1110       COL_NAME, &name,
1111       -1);
1112
1113   if (!name)
1114       return FALSE;
1115
1116   if (data->name && strcmp (data->name, name) == 0)
1117     {
1118       data->found = TRUE;
1119       data->found_iter = *iter;
1120
1121       g_free (name);
1122
1123       return TRUE;
1124     }
1125
1126   g_free (name);
1127
1128   return FALSE;
1129 }
1130
1131 static void
1132 contact_widget_cell_toggled (GtkCellRendererToggle *cell,
1133                              gchar *path_string,
1134                              EmpathyContactWidget *information)
1135 {
1136   GtkTreeView *view;
1137   GtkTreeModel *model;
1138   GtkListStore *store;
1139   GtkTreePath *path;
1140   GtkTreeIter iter;
1141   gboolean enabled;
1142   gchar *group;
1143
1144   view = GTK_TREE_VIEW (information->treeview_groups);
1145   model = gtk_tree_view_get_model (view);
1146   store = GTK_LIST_STORE (model);
1147
1148   path = gtk_tree_path_new_from_string (path_string);
1149
1150   gtk_tree_model_get_iter (model, &iter, path);
1151   gtk_tree_model_get (model, &iter,
1152       COL_ENABLED, &enabled,
1153       COL_NAME, &group,
1154       -1);
1155
1156   gtk_list_store_set (store, &iter, COL_ENABLED, !enabled, -1);
1157   gtk_tree_path_free (path);
1158
1159   if (group)
1160     {
1161       if (enabled)
1162         {
1163           empathy_contact_list_remove_from_group (
1164               EMPATHY_CONTACT_LIST (information->manager), information->contact,
1165               group);
1166         }
1167       else
1168         {
1169           empathy_contact_list_add_to_group (
1170               EMPATHY_CONTACT_LIST (information->manager), information->contact,
1171               group);
1172         }
1173       g_free (group);
1174     }
1175 }
1176
1177 static void
1178 contact_widget_entry_group_changed_cb (GtkEditable *editable,
1179                                        EmpathyContactWidget *information)
1180 {
1181   GtkTreeIter iter;
1182   const gchar *group;
1183
1184   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
1185
1186   if (contact_widget_model_find_name (information, group, &iter))
1187       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group), FALSE);
1188   else
1189       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group),
1190           !EMP_STR_EMPTY (group));
1191 }
1192
1193 static void
1194 contact_widget_entry_group_activate_cb (GtkEntry *entry,
1195                                         EmpathyContactWidget  *information)
1196 {
1197   gtk_widget_activate (GTK_WIDGET (information->button_group));
1198 }
1199
1200 static void
1201 contact_widget_button_group_clicked_cb (GtkButton *button,
1202                                         EmpathyContactWidget *information)
1203 {
1204   GtkTreeView *view;
1205   GtkListStore *store;
1206   GtkTreeIter iter;
1207   const gchar *group;
1208
1209   view = GTK_TREE_VIEW (information->treeview_groups);
1210   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
1211
1212   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
1213
1214   gtk_list_store_append (store, &iter);
1215   gtk_list_store_set (store, &iter,
1216       COL_NAME, group,
1217       COL_ENABLED, TRUE,
1218       -1);
1219
1220   empathy_contact_list_add_to_group (
1221       EMPATHY_CONTACT_LIST (information->manager), information->contact,
1222       group);
1223 }
1224
1225 static void
1226 contact_widget_details_setup (EmpathyContactWidget *information)
1227 {
1228   /* FIXME: Needs new telepathy spec */
1229   gtk_widget_hide (information->vbox_details);
1230 }
1231
1232 static void
1233 contact_widget_details_update (EmpathyContactWidget *information)
1234 {
1235   /* FIXME: Needs new telepathy spec */
1236 }
1237
1238 static void
1239 contact_widget_client_setup (EmpathyContactWidget *information)
1240 {
1241   /* FIXME: Needs new telepathy spec */
1242   gtk_widget_hide (information->vbox_client);
1243 }
1244
1245 static void
1246 contact_widget_client_update (EmpathyContactWidget *information)
1247 {
1248   /* FIXME: Needs new telepathy spec */
1249 }
1250
1251 /* Converts the Location's GHashTable's key to a user readable string */
1252 static const gchar *
1253 location_key_to_label (const gchar *key)
1254 {
1255   if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY_CODE) == FALSE)
1256     return _("Country ISO Code:");
1257   else if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY) == FALSE)
1258     return _("Country:");
1259   else if (tp_strdiff (key, EMPATHY_LOCATION_REGION) == FALSE)
1260     return _("State:");
1261   else if (tp_strdiff (key, EMPATHY_LOCATION_LOCALITY) == FALSE)
1262     return _("City:");
1263   else if (tp_strdiff (key, EMPATHY_LOCATION_AREA) == FALSE)
1264     return _("Area:");
1265   else if (tp_strdiff (key, EMPATHY_LOCATION_POSTAL_CODE) == FALSE)
1266     return _("Postal Code:");
1267   else if (tp_strdiff (key, EMPATHY_LOCATION_STREET) == FALSE)
1268     return _("Street:");
1269   else if (tp_strdiff (key, EMPATHY_LOCATION_BUILDING) == FALSE)
1270     return _("Building:");
1271   else if (tp_strdiff (key, EMPATHY_LOCATION_FLOOR) == FALSE)
1272     return _("Floor:");
1273   else if (tp_strdiff (key, EMPATHY_LOCATION_ROOM) == FALSE)
1274     return _("Room:");
1275   else if (tp_strdiff (key, EMPATHY_LOCATION_TEXT) == FALSE)
1276     return _("Text:");
1277   else if (tp_strdiff (key, EMPATHY_LOCATION_DESCRIPTION) == FALSE)
1278     return _("Description:");
1279   else if (tp_strdiff (key, EMPATHY_LOCATION_URI) == FALSE)
1280     return _("URI:");
1281   else if (tp_strdiff (key, EMPATHY_LOCATION_ACCURACY_LEVEL) == FALSE)
1282     return _("Accuracy Level:");
1283   else if (tp_strdiff (key, EMPATHY_LOCATION_ERROR) == FALSE)
1284     return _("Error:");
1285   else if (tp_strdiff (key, EMPATHY_LOCATION_VERTICAL_ERROR_M) == FALSE)
1286     return _("Vertical Error (meters):");
1287   else if (tp_strdiff (key, EMPATHY_LOCATION_HORIZONTAL_ERROR_M) == FALSE)
1288     return _("Horizontal Error (meters):");
1289   else if (tp_strdiff (key, EMPATHY_LOCATION_SPEED) == FALSE)
1290     return _("Speed:");
1291   else if (tp_strdiff (key, EMPATHY_LOCATION_BEARING) == FALSE)
1292     return _("Bearing:");
1293   else if (tp_strdiff (key, EMPATHY_LOCATION_CLIMB) == FALSE)
1294     return _("Climb Speed:");
1295   else if (tp_strdiff (key, EMPATHY_LOCATION_TIMESTAMP) == FALSE)
1296     return _("Last Updated on:");
1297   else if (tp_strdiff (key, EMPATHY_LOCATION_LON) == FALSE)
1298     return _("Longitude:");
1299   else if (tp_strdiff (key, EMPATHY_LOCATION_LAT) == FALSE)
1300     return _("Latitude:");
1301   else if (tp_strdiff (key, EMPATHY_LOCATION_ALT) == FALSE)
1302     return _("Altitude:");
1303   else
1304   {
1305     DEBUG ("Unexpected Location key: %s", key);
1306     return key;
1307   }
1308 }
1309
1310 static void
1311 contact_widget_location_update (EmpathyContactWidget *information)
1312 {
1313   GHashTable *location;
1314   GValue *value;
1315   gdouble lat = 0.0, lon = 0.0;
1316   gboolean has_position = TRUE;
1317   GtkWidget *label;
1318   guint row = 0;
1319   GHashTableIter iter;
1320   gpointer key, pvalue;
1321
1322   if (!(information->flags & EMPATHY_CONTACT_WIDGET_SHOW_LOCATION))
1323     {
1324       gtk_widget_hide (information->vbox_location);
1325       return;
1326     }
1327
1328   location = empathy_contact_get_location (information->contact);
1329   if (location == NULL || g_hash_table_size (location) == 0)
1330     {
1331       gtk_widget_hide (information->vbox_location);
1332       return;
1333     }
1334
1335   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LAT);
1336   if (value == NULL)
1337       has_position = FALSE;
1338   else
1339       lat = g_value_get_double (value);
1340
1341   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LON);
1342   if (value == NULL)
1343       has_position = FALSE;
1344   else
1345       lon = g_value_get_double (value);
1346
1347   value = g_hash_table_lookup (location, EMPATHY_LOCATION_TIMESTAMP);
1348   if (value == NULL)
1349     gtk_label_set_markup (GTK_LABEL (information->label_location), _("<b>Location</b>"));
1350   else
1351     {
1352       gchar *user_date;
1353       gchar *text;
1354       gint64 stamp;
1355       time_t time;
1356
1357       stamp = g_value_get_int64 (value);
1358       time = stamp;
1359
1360       user_date = empathy_time_to_string_relative (time);
1361
1362       text = g_strconcat ( _("<b>Location</b>, "), user_date, NULL);
1363       gtk_label_set_markup (GTK_LABEL (information->label_location), text);
1364       g_free (text);
1365     }
1366
1367
1368   /* Prepare the location information table */
1369   if (information->table_location != NULL)
1370     {
1371       gtk_widget_destroy (information->table_location);
1372     }
1373
1374   information->table_location = gtk_table_new (1, 2, FALSE);
1375   gtk_box_pack_start (GTK_BOX (information->subvbox_location),
1376       information->table_location, FALSE, FALSE, 5);
1377
1378   g_hash_table_iter_init (&iter, location);
1379   while (g_hash_table_iter_next (&iter, &key, &pvalue))
1380     {
1381       const gchar *skey;
1382       const gchar* user_label;
1383       GValue *gvalue;
1384       char *svalue = NULL;
1385
1386       skey = (const gchar *) key;
1387
1388       user_label = location_key_to_label (skey);
1389       gvalue = (GValue *) pvalue;
1390
1391       label = gtk_label_new (user_label);
1392       gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
1393       gtk_table_attach (GTK_TABLE (information->table_location),
1394           label, 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 10, 0);
1395       gtk_widget_show (label);
1396
1397       if (G_VALUE_TYPE (gvalue) == G_TYPE_DOUBLE)
1398         {
1399           gdouble dvalue;
1400           dvalue = g_value_get_double (gvalue);
1401           svalue = g_strdup_printf ("%f", dvalue);
1402         }
1403       else if (G_VALUE_TYPE (gvalue) == G_TYPE_STRING)
1404         {
1405           svalue = g_value_dup_string (gvalue);
1406         }
1407       else if (G_VALUE_TYPE (gvalue) == G_TYPE_INT64)
1408         {
1409           time_t time;
1410
1411           time = g_value_get_int64 (value);
1412           svalue = empathy_time_to_string_utc (time, _("%B %e, %Y at %R UTC"));
1413         }
1414
1415       if (svalue != NULL)
1416         {
1417           label = gtk_label_new (svalue);
1418           gtk_table_attach_defaults (GTK_TABLE (information->table_location),
1419               label, 1, 2, row, row + 1);
1420           gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
1421           gtk_widget_show (label);
1422         }
1423
1424       g_free (svalue);
1425       row++;
1426     }
1427
1428   gtk_widget_show (information->table_location);
1429
1430 #if HAVE_LIBCHAMPLAIN
1431   /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such
1432    * windows
1433    */
1434   if (has_position &&
1435       !(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1436     {
1437       ClutterActor *marker;
1438       ChamplainLayer *layer;
1439
1440       information->map_view_embed = gtk_champlain_embed_new ();
1441       information->map_view = gtk_champlain_embed_get_view (
1442           GTK_CHAMPLAIN_EMBED (information->map_view_embed));
1443
1444       gtk_container_add (GTK_CONTAINER (information->viewport_map),
1445           information->map_view_embed);
1446       g_object_set (G_OBJECT (information->map_view), "show-license", FALSE,
1447           "scroll-mode", CHAMPLAIN_SCROLL_MODE_KINETIC,
1448           NULL);
1449
1450       layer = champlain_layer_new ();
1451       champlain_view_add_layer (information->map_view, layer);
1452
1453       marker = champlain_marker_new_with_text (
1454           empathy_contact_get_name (information->contact), NULL, NULL, NULL);
1455       champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), lat, lon);
1456       clutter_container_add (CLUTTER_CONTAINER (layer), marker, NULL);
1457
1458       champlain_view_center_on (information->map_view, lat, lon);
1459       gtk_widget_show_all (information->viewport_map);
1460     }
1461 #endif
1462
1463     gtk_widget_show (information->vbox_location);
1464 }