]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-widget.c
Updated Oriya Translation
[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
604   if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
605     gtk_label_set_selectable (GTK_LABEL (information->label_status), TRUE);
606
607   gtk_box_pack_start (GTK_BOX (information->hbox_presence),
608         information->label_status, TRUE, TRUE, 0);
609   gtk_widget_show (information->label_status);
610
611   /* Setup account label/chooser */
612   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
613     {
614       information->widget_account = empathy_account_chooser_new ();
615
616       g_signal_connect_swapped (information->widget_account, "changed",
617             G_CALLBACK (contact_widget_change_contact),
618             information);
619     }
620   else
621     {
622       information->widget_account = gtk_label_new (NULL);
623       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
624         gtk_label_set_selectable (GTK_LABEL (information->widget_account), TRUE);
625       }
626       gtk_misc_set_alignment (GTK_MISC (information->widget_account), 0, 0.5);
627     }
628   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
629            information->widget_account,
630            1, 2, 0, 1);
631   gtk_widget_show (information->widget_account);
632
633   /* Set up avatar chooser/display */
634   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
635     {
636       information->widget_avatar = empathy_avatar_chooser_new ();
637       g_signal_connect (information->widget_avatar, "changed",
638             G_CALLBACK (contact_widget_avatar_changed_cb),
639             information);
640       if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
641         {
642           g_signal_connect (information->widget_account, "changed",
643               G_CALLBACK (update_avatar_chooser_account_cb),
644               information->widget_avatar);
645           update_avatar_chooser_account_cb (
646               EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
647               EMPATHY_AVATAR_CHOOSER (information->widget_avatar));
648         }
649     }
650   else
651     {
652       information->widget_avatar = empathy_avatar_image_new ();
653
654       g_signal_connect (information->widget_avatar, "popup-menu",
655           G_CALLBACK (widget_avatar_popup_menu_cb), information);
656       g_signal_connect (information->widget_avatar, "button-press-event",
657           G_CALLBACK (widget_avatar_button_press_event_cb), information);
658     }
659
660   gtk_box_pack_start (GTK_BOX (information->vbox_avatar),
661           information->widget_avatar,
662           FALSE, FALSE,
663           6);
664   gtk_widget_show (information->widget_avatar);
665
666   /* Setup id label/entry */
667   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
668     {
669       information->widget_id = gtk_entry_new ();
670       g_signal_connect (information->widget_id, "focus-out-event",
671             G_CALLBACK (contact_widget_id_focus_out_cb),
672             information);
673       g_signal_connect (information->widget_id, "changed",
674             G_CALLBACK (contact_widget_id_changed_cb),
675             information);
676     }
677   else
678     {
679       information->widget_id = gtk_label_new (NULL);
680       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
681         gtk_label_set_selectable (GTK_LABEL (information->widget_id), TRUE);
682       }
683       gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5);
684     }
685   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
686            information->widget_id,
687            1, 2, 1, 2);
688   gtk_widget_show (information->widget_id);
689
690   /* Setup alias label/entry */
691   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ALIAS)
692     {
693       information->widget_alias = gtk_entry_new ();
694       g_signal_connect (information->widget_alias, "focus-out-event",
695             G_CALLBACK (contact_widget_entry_alias_focus_event_cb),
696             information);
697       /* Make return activate the window default (the Close button) */
698       gtk_entry_set_activates_default (GTK_ENTRY (information->widget_alias),
699           TRUE);
700     }
701   else
702     {
703       information->widget_alias = gtk_label_new (NULL);
704       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
705         gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE);
706       }
707       gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5);
708     }
709   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
710            information->widget_alias,
711            1, 2, 2, 3);
712   if (information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) {
713     gtk_label_set_selectable (GTK_LABEL (information->label_status), FALSE);
714   }
715   gtk_widget_show (information->widget_alias);
716 }
717
718 static void
719 contact_widget_contact_update (EmpathyContactWidget *information)
720 {
721   EmpathyAccount *account = NULL;
722   const gchar *id = NULL;
723
724   /* Connect and get info from new contact */
725   if (information->contact)
726     {
727       g_signal_connect_swapped (information->contact, "notify::name",
728           G_CALLBACK (contact_widget_name_notify_cb), information);
729       g_signal_connect_swapped (information->contact, "notify::presence",
730           G_CALLBACK (contact_widget_presence_notify_cb), information);
731       g_signal_connect_swapped (information->contact,
732           "notify::presence-message",
733           G_CALLBACK (contact_widget_presence_notify_cb), information);
734       g_signal_connect_swapped (information->contact, "notify::avatar",
735           G_CALLBACK (contact_widget_avatar_notify_cb), information);
736
737       account = empathy_contact_get_account (information->contact);
738       id = empathy_contact_get_id (information->contact);
739     }
740
741   /* Update account widget */
742   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
743     {
744       if (account)
745         {
746           g_signal_handlers_block_by_func (information->widget_account,
747                    contact_widget_change_contact,
748                    information);
749           empathy_account_chooser_set_account (
750               EMPATHY_ACCOUNT_CHOOSER (information->widget_account), account);
751           g_signal_handlers_unblock_by_func (information->widget_account,
752               contact_widget_change_contact, information);
753         }
754     }
755   else
756     {
757       if (account)
758         {
759           const gchar *name;
760
761           name = empathy_account_get_display_name (account);
762           gtk_label_set_label (GTK_LABEL (information->widget_account), name);
763         }
764     }
765
766   /* Update id widget */
767   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
768       gtk_entry_set_text (GTK_ENTRY (information->widget_id), id ? id : "");
769   else
770       gtk_label_set_label (GTK_LABEL (information->widget_id), id ? id : "");
771
772   /* Update other widgets */
773   if (information->contact)
774     {
775       contact_widget_name_notify_cb (information);
776       contact_widget_presence_notify_cb (information);
777       contact_widget_avatar_notify_cb (information);
778
779       gtk_widget_show (information->label_alias);
780       gtk_widget_show (information->widget_alias);
781       gtk_widget_show (information->hbox_presence);
782       gtk_widget_show (information->widget_avatar);
783     }
784   else
785     {
786       gtk_widget_hide (information->label_alias);
787       gtk_widget_hide (information->widget_alias);
788       gtk_widget_hide (information->hbox_presence);
789       gtk_widget_hide (information->widget_avatar);
790     }
791 }
792
793 static void
794 contact_widget_got_contact_cb (EmpathyTpContactFactory *factory,
795                                EmpathyContact *contact,
796                                const GError *error,
797                                gpointer user_data,
798                                GObject *weak_object)
799 {
800   EmpathyContactWidget *information = user_data;
801
802   if (error != NULL)
803     {
804       DEBUG ("Error: %s", error->message);
805       return;
806     }
807
808   contact_widget_set_contact (information, contact);
809 }
810
811 static void
812 contact_widget_change_contact (EmpathyContactWidget *information)
813 {
814   EmpathyTpContactFactory *factory;
815   TpConnection *connection;
816
817   connection = empathy_account_chooser_get_connection (
818       EMPATHY_ACCOUNT_CHOOSER (information->widget_account));
819   if (!connection)
820       return;
821
822   factory = empathy_tp_contact_factory_dup_singleton (connection);
823   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
824     {
825       const gchar *id;
826
827       id = gtk_entry_get_text (GTK_ENTRY (information->widget_id));
828       if (!EMP_STR_EMPTY (id))
829         {
830           empathy_tp_contact_factory_get_from_id (factory, id,
831               contact_widget_got_contact_cb, information, NULL,
832               G_OBJECT (information->vbox_contact_widget));
833         }
834     }
835   else
836     {
837       empathy_tp_contact_factory_get_from_handle (factory,
838           tp_connection_get_self_handle (connection),
839           contact_widget_got_contact_cb, information, NULL,
840           G_OBJECT (information->vbox_contact_widget));
841     }
842
843   g_object_unref (factory);
844 }
845
846 static void
847 contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
848                                   EmpathyContactWidget *information)
849 {
850   const gchar *data;
851   gsize size;
852   const gchar *mime_type;
853
854   empathy_avatar_chooser_get_image_data (
855       EMPATHY_AVATAR_CHOOSER (information->widget_avatar),
856       &data, &size, &mime_type);
857   empathy_tp_contact_factory_set_avatar (information->factory,
858       data, size, mime_type);
859 }
860
861 static gboolean
862 contact_widget_id_focus_out_cb (GtkWidget *widget,
863                                 GdkEventFocus *event,
864                                 EmpathyContactWidget *information)
865 {
866   contact_widget_change_contact (information);
867   return FALSE;
868 }
869
870 static gboolean
871 contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
872                                            GdkEventFocus *event,
873                                            EmpathyContactWidget *information)
874 {
875   if (information->contact)
876     {
877       const gchar *alias;
878
879       alias = gtk_entry_get_text (GTK_ENTRY (editable));
880       empathy_tp_contact_factory_set_alias (information->factory,
881           information->contact, alias);
882     }
883
884   return FALSE;
885 }
886
887 static void
888 contact_widget_name_notify_cb (EmpathyContactWidget *information)
889 {
890   if (GTK_IS_ENTRY (information->widget_alias))
891       gtk_entry_set_text (GTK_ENTRY (information->widget_alias),
892           empathy_contact_get_name (information->contact));
893   else
894       gtk_label_set_label (GTK_LABEL (information->widget_alias),
895           empathy_contact_get_name (information->contact));
896 }
897
898 static void
899 contact_widget_presence_notify_cb (EmpathyContactWidget *information)
900 {
901   gtk_label_set_text (GTK_LABEL (information->label_status),
902       empathy_contact_get_status (information->contact));
903   gtk_image_set_from_icon_name (GTK_IMAGE (information->image_state),
904       empathy_icon_name_for_contact (information->contact),
905       GTK_ICON_SIZE_BUTTON);
906 }
907
908 static void
909 contact_widget_avatar_notify_cb (EmpathyContactWidget *information)
910 {
911   EmpathyAvatar *avatar = NULL;
912
913   if (information->contact)
914       avatar = empathy_contact_get_avatar (information->contact);
915
916   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
917     {
918       g_signal_handlers_block_by_func (information->widget_avatar,
919           contact_widget_avatar_changed_cb,
920           information);
921       empathy_avatar_chooser_set (
922           EMPATHY_AVATAR_CHOOSER (information->widget_avatar), avatar);
923       g_signal_handlers_unblock_by_func (information->widget_avatar,
924           contact_widget_avatar_changed_cb, information);
925     }
926   else
927       empathy_avatar_image_set (
928           EMPATHY_AVATAR_IMAGE (information->widget_avatar), avatar);
929 }
930
931 static void
932 contact_widget_groups_setup (EmpathyContactWidget *information)
933 {
934   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS)
935     {
936       information->manager = empathy_contact_manager_dup_singleton ();
937       contact_widget_model_setup (information);
938     }
939 }
940
941 static void
942 contact_widget_groups_update (EmpathyContactWidget *information)
943 {
944   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS &&
945       information->contact)
946     {
947       g_signal_connect_swapped (information->contact, "notify::groups",
948           G_CALLBACK (contact_widget_groups_notify_cb), information);
949       contact_widget_groups_populate_data (information);
950
951       gtk_widget_show (information->vbox_groups);
952     }
953   else
954       gtk_widget_hide (information->vbox_groups);
955 }
956
957 static void
958 contact_widget_model_setup (EmpathyContactWidget *information)
959 {
960   GtkTreeView *view;
961   GtkListStore *store;
962   GtkTreeSelection *selection;
963
964   view = GTK_TREE_VIEW (information->treeview_groups);
965
966   store = gtk_list_store_new (COL_COUNT,
967       G_TYPE_STRING,   /* name */
968       G_TYPE_BOOLEAN,  /* enabled */
969       G_TYPE_BOOLEAN); /* editable */
970
971   gtk_tree_view_set_model (view, GTK_TREE_MODEL (store));
972
973   selection = gtk_tree_view_get_selection (view);
974   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
975
976   contact_widget_model_populate_columns (information);
977
978   gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
979       COL_NAME, GTK_SORT_ASCENDING);
980
981   g_object_unref (store);
982 }
983
984 static void
985 contact_widget_model_populate_columns (EmpathyContactWidget *information)
986 {
987   GtkTreeView *view;
988   GtkTreeModel *model;
989   GtkTreeViewColumn *column;
990   GtkCellRenderer  *renderer;
991   guint col_offset;
992
993   view = GTK_TREE_VIEW (information->treeview_groups);
994   model = gtk_tree_view_get_model (view);
995
996   renderer = gtk_cell_renderer_toggle_new ();
997   g_signal_connect (renderer, "toggled",
998       G_CALLBACK (contact_widget_cell_toggled), information);
999
1000   column = gtk_tree_view_column_new_with_attributes (_("Select"), renderer,
1001       "active", COL_ENABLED, NULL);
1002
1003   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
1004   gtk_tree_view_column_set_fixed_width (column, 50);
1005   gtk_tree_view_append_column (view, column);
1006
1007   renderer = gtk_cell_renderer_text_new ();
1008   col_offset = gtk_tree_view_insert_column_with_attributes (view,
1009       -1, _("Group"),
1010       renderer,
1011       "text", COL_NAME,
1012       /* "editable", COL_EDITABLE, */
1013       NULL);
1014
1015   g_object_set_data (G_OBJECT (renderer),
1016       "column", GINT_TO_POINTER (COL_NAME));
1017
1018   column = gtk_tree_view_get_column (view, col_offset - 1);
1019   gtk_tree_view_column_set_sort_column_id (column, COL_NAME);
1020   gtk_tree_view_column_set_resizable (column,FALSE);
1021   gtk_tree_view_column_set_clickable (GTK_TREE_VIEW_COLUMN (column), TRUE);
1022 }
1023
1024 static void
1025 contact_widget_groups_populate_data (EmpathyContactWidget *information)
1026 {
1027   GtkTreeView *view;
1028   GtkListStore *store;
1029   GtkTreeIter iter;
1030   GList *my_groups, *l;
1031   GList *all_groups;
1032
1033   view = GTK_TREE_VIEW (information->treeview_groups);
1034   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
1035   gtk_list_store_clear (store);
1036
1037   all_groups = empathy_contact_list_get_all_groups (
1038       EMPATHY_CONTACT_LIST (information->manager));
1039   my_groups = empathy_contact_list_get_groups (
1040       EMPATHY_CONTACT_LIST (information->manager),
1041       information->contact);
1042
1043   for (l = all_groups; l; l = l->next)
1044     {
1045       const gchar *group_str;
1046       gboolean enabled;
1047
1048       group_str = l->data;
1049
1050       enabled = g_list_find_custom (my_groups,
1051           group_str, (GCompareFunc) strcmp) != NULL;
1052
1053       gtk_list_store_append (store, &iter);
1054       gtk_list_store_set (store, &iter,
1055           COL_NAME, group_str,
1056           COL_EDITABLE, TRUE,
1057           COL_ENABLED, enabled,
1058           -1);
1059     }
1060
1061   g_list_foreach (all_groups, (GFunc) g_free, NULL);
1062   g_list_foreach (my_groups, (GFunc) g_free, NULL);
1063   g_list_free (all_groups);
1064   g_list_free (my_groups);
1065 }
1066
1067 static void
1068 contact_widget_groups_notify_cb (EmpathyContactWidget *information)
1069 {
1070   /* FIXME: not implemented */
1071 }
1072
1073 static gboolean
1074 contact_widget_model_find_name (EmpathyContactWidget *information,
1075                                 const gchar *name,
1076                                 GtkTreeIter *iter)
1077 {
1078   GtkTreeView *view;
1079   GtkTreeModel *model;
1080   FindName data;
1081
1082   if (EMP_STR_EMPTY (name))
1083       return FALSE;
1084
1085   data.information = information;
1086   data.name = name;
1087   data.found = FALSE;
1088
1089   view = GTK_TREE_VIEW (information->treeview_groups);
1090   model = gtk_tree_view_get_model (view);
1091
1092   gtk_tree_model_foreach (model,
1093       (GtkTreeModelForeachFunc) contact_widget_model_find_name_foreach,
1094       &data);
1095
1096   if (data.found == TRUE)
1097     {
1098       *iter = data.found_iter;
1099       return TRUE;
1100     }
1101
1102   return FALSE;
1103 }
1104
1105 static gboolean
1106 contact_widget_model_find_name_foreach (GtkTreeModel *model,
1107                                         GtkTreePath *path,
1108                                         GtkTreeIter *iter,
1109                                         FindName *data)
1110 {
1111   gchar *name;
1112
1113   gtk_tree_model_get (model, iter,
1114       COL_NAME, &name,
1115       -1);
1116
1117   if (!name)
1118       return FALSE;
1119
1120   if (data->name && strcmp (data->name, name) == 0)
1121     {
1122       data->found = TRUE;
1123       data->found_iter = *iter;
1124
1125       g_free (name);
1126
1127       return TRUE;
1128     }
1129
1130   g_free (name);
1131
1132   return FALSE;
1133 }
1134
1135 static void
1136 contact_widget_cell_toggled (GtkCellRendererToggle *cell,
1137                              gchar *path_string,
1138                              EmpathyContactWidget *information)
1139 {
1140   GtkTreeView *view;
1141   GtkTreeModel *model;
1142   GtkListStore *store;
1143   GtkTreePath *path;
1144   GtkTreeIter iter;
1145   gboolean enabled;
1146   gchar *group;
1147
1148   view = GTK_TREE_VIEW (information->treeview_groups);
1149   model = gtk_tree_view_get_model (view);
1150   store = GTK_LIST_STORE (model);
1151
1152   path = gtk_tree_path_new_from_string (path_string);
1153
1154   gtk_tree_model_get_iter (model, &iter, path);
1155   gtk_tree_model_get (model, &iter,
1156       COL_ENABLED, &enabled,
1157       COL_NAME, &group,
1158       -1);
1159
1160   gtk_list_store_set (store, &iter, COL_ENABLED, !enabled, -1);
1161   gtk_tree_path_free (path);
1162
1163   if (group)
1164     {
1165       if (enabled)
1166         {
1167           empathy_contact_list_remove_from_group (
1168               EMPATHY_CONTACT_LIST (information->manager), information->contact,
1169               group);
1170         }
1171       else
1172         {
1173           empathy_contact_list_add_to_group (
1174               EMPATHY_CONTACT_LIST (information->manager), information->contact,
1175               group);
1176         }
1177       g_free (group);
1178     }
1179 }
1180
1181 static void
1182 contact_widget_entry_group_changed_cb (GtkEditable *editable,
1183                                        EmpathyContactWidget *information)
1184 {
1185   GtkTreeIter iter;
1186   const gchar *group;
1187
1188   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
1189
1190   if (contact_widget_model_find_name (information, group, &iter))
1191       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group), FALSE);
1192   else
1193       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group),
1194           !EMP_STR_EMPTY (group));
1195 }
1196
1197 static void
1198 contact_widget_entry_group_activate_cb (GtkEntry *entry,
1199                                         EmpathyContactWidget  *information)
1200 {
1201   gtk_widget_activate (GTK_WIDGET (information->button_group));
1202 }
1203
1204 static void
1205 contact_widget_button_group_clicked_cb (GtkButton *button,
1206                                         EmpathyContactWidget *information)
1207 {
1208   GtkTreeView *view;
1209   GtkListStore *store;
1210   GtkTreeIter iter;
1211   const gchar *group;
1212
1213   view = GTK_TREE_VIEW (information->treeview_groups);
1214   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
1215
1216   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
1217
1218   gtk_list_store_append (store, &iter);
1219   gtk_list_store_set (store, &iter,
1220       COL_NAME, group,
1221       COL_ENABLED, TRUE,
1222       -1);
1223
1224   empathy_contact_list_add_to_group (
1225       EMPATHY_CONTACT_LIST (information->manager), information->contact,
1226       group);
1227 }
1228
1229 static void
1230 contact_widget_details_setup (EmpathyContactWidget *information)
1231 {
1232   /* FIXME: Needs new telepathy spec */
1233   gtk_widget_hide (information->vbox_details);
1234 }
1235
1236 static void
1237 contact_widget_details_update (EmpathyContactWidget *information)
1238 {
1239   /* FIXME: Needs new telepathy spec */
1240 }
1241
1242 static void
1243 contact_widget_client_setup (EmpathyContactWidget *information)
1244 {
1245   /* FIXME: Needs new telepathy spec */
1246   gtk_widget_hide (information->vbox_client);
1247 }
1248
1249 static void
1250 contact_widget_client_update (EmpathyContactWidget *information)
1251 {
1252   /* FIXME: Needs new telepathy spec */
1253 }
1254
1255 /* Converts the Location's GHashTable's key to a user readable string */
1256 static const gchar *
1257 location_key_to_label (const gchar *key)
1258 {
1259   if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY_CODE) == FALSE)
1260     return _("Country ISO Code:");
1261   else if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY) == FALSE)
1262     return _("Country:");
1263   else if (tp_strdiff (key, EMPATHY_LOCATION_REGION) == FALSE)
1264     return _("State:");
1265   else if (tp_strdiff (key, EMPATHY_LOCATION_LOCALITY) == FALSE)
1266     return _("City:");
1267   else if (tp_strdiff (key, EMPATHY_LOCATION_AREA) == FALSE)
1268     return _("Area:");
1269   else if (tp_strdiff (key, EMPATHY_LOCATION_POSTAL_CODE) == FALSE)
1270     return _("Postal Code:");
1271   else if (tp_strdiff (key, EMPATHY_LOCATION_STREET) == FALSE)
1272     return _("Street:");
1273   else if (tp_strdiff (key, EMPATHY_LOCATION_BUILDING) == FALSE)
1274     return _("Building:");
1275   else if (tp_strdiff (key, EMPATHY_LOCATION_FLOOR) == FALSE)
1276     return _("Floor:");
1277   else if (tp_strdiff (key, EMPATHY_LOCATION_ROOM) == FALSE)
1278     return _("Room:");
1279   else if (tp_strdiff (key, EMPATHY_LOCATION_TEXT) == FALSE)
1280     return _("Text:");
1281   else if (tp_strdiff (key, EMPATHY_LOCATION_DESCRIPTION) == FALSE)
1282     return _("Description:");
1283   else if (tp_strdiff (key, EMPATHY_LOCATION_URI) == FALSE)
1284     return _("URI:");
1285   else if (tp_strdiff (key, EMPATHY_LOCATION_ACCURACY_LEVEL) == FALSE)
1286     return _("Accuracy Level:");
1287   else if (tp_strdiff (key, EMPATHY_LOCATION_ERROR) == FALSE)
1288     return _("Error:");
1289   else if (tp_strdiff (key, EMPATHY_LOCATION_VERTICAL_ERROR_M) == FALSE)
1290     return _("Vertical Error (meters):");
1291   else if (tp_strdiff (key, EMPATHY_LOCATION_HORIZONTAL_ERROR_M) == FALSE)
1292     return _("Horizontal Error (meters):");
1293   else if (tp_strdiff (key, EMPATHY_LOCATION_SPEED) == FALSE)
1294     return _("Speed:");
1295   else if (tp_strdiff (key, EMPATHY_LOCATION_BEARING) == FALSE)
1296     return _("Bearing:");
1297   else if (tp_strdiff (key, EMPATHY_LOCATION_CLIMB) == FALSE)
1298     return _("Climb Speed:");
1299   else if (tp_strdiff (key, EMPATHY_LOCATION_TIMESTAMP) == FALSE)
1300     return _("Last Updated on:");
1301   else if (tp_strdiff (key, EMPATHY_LOCATION_LON) == FALSE)
1302     return _("Longitude:");
1303   else if (tp_strdiff (key, EMPATHY_LOCATION_LAT) == FALSE)
1304     return _("Latitude:");
1305   else if (tp_strdiff (key, EMPATHY_LOCATION_ALT) == FALSE)
1306     return _("Altitude:");
1307   else
1308   {
1309     DEBUG ("Unexpected Location key: %s", key);
1310     return key;
1311   }
1312 }
1313
1314 static void
1315 contact_widget_location_update (EmpathyContactWidget *information)
1316 {
1317   GHashTable *location;
1318   GValue *value;
1319   gdouble lat = 0.0, lon = 0.0;
1320   gboolean has_position = TRUE;
1321   GtkWidget *label;
1322   guint row = 0;
1323   GHashTableIter iter;
1324   gpointer key, pvalue;
1325
1326   if (!(information->flags & EMPATHY_CONTACT_WIDGET_SHOW_LOCATION))
1327     {
1328       gtk_widget_hide (information->vbox_location);
1329       return;
1330     }
1331
1332   location = empathy_contact_get_location (information->contact);
1333   if (location == NULL || g_hash_table_size (location) == 0)
1334     {
1335       gtk_widget_hide (information->vbox_location);
1336       return;
1337     }
1338
1339   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LAT);
1340   if (value == NULL)
1341       has_position = FALSE;
1342   else
1343       lat = g_value_get_double (value);
1344
1345   value = g_hash_table_lookup (location, EMPATHY_LOCATION_LON);
1346   if (value == NULL)
1347       has_position = FALSE;
1348   else
1349       lon = g_value_get_double (value);
1350
1351   value = g_hash_table_lookup (location, EMPATHY_LOCATION_TIMESTAMP);
1352   if (value == NULL)
1353     gtk_label_set_markup (GTK_LABEL (information->label_location), _("<b>Location</b>"));
1354   else
1355     {
1356       gchar *user_date;
1357       gchar *text;
1358       gint64 stamp;
1359       time_t time;
1360
1361       stamp = g_value_get_int64 (value);
1362       time = stamp;
1363
1364       user_date = empathy_time_to_string_relative (time);
1365
1366       text = g_strconcat ( _("<b>Location</b>, "), user_date, NULL);
1367       gtk_label_set_markup (GTK_LABEL (information->label_location), text);
1368       g_free (text);
1369     }
1370
1371
1372   /* Prepare the location information table */
1373   if (information->table_location != NULL)
1374     {
1375       gtk_widget_destroy (information->table_location);
1376     }
1377
1378   information->table_location = gtk_table_new (1, 2, FALSE);
1379   gtk_box_pack_start (GTK_BOX (information->subvbox_location),
1380       information->table_location, FALSE, FALSE, 5);
1381
1382   g_hash_table_iter_init (&iter, location);
1383   while (g_hash_table_iter_next (&iter, &key, &pvalue))
1384     {
1385       const gchar *skey;
1386       const gchar* user_label;
1387       GValue *gvalue;
1388       char *svalue = NULL;
1389
1390       skey = (const gchar *) key;
1391
1392       user_label = location_key_to_label (skey);
1393       gvalue = (GValue *) pvalue;
1394
1395       label = gtk_label_new (user_label);
1396       gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
1397       gtk_table_attach (GTK_TABLE (information->table_location),
1398           label, 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 10, 0);
1399       gtk_widget_show (label);
1400
1401       if (G_VALUE_TYPE (gvalue) == G_TYPE_DOUBLE)
1402         {
1403           gdouble dvalue;
1404           dvalue = g_value_get_double (gvalue);
1405           svalue = g_strdup_printf ("%f", dvalue);
1406         }
1407       else if (G_VALUE_TYPE (gvalue) == G_TYPE_STRING)
1408         {
1409           svalue = g_value_dup_string (gvalue);
1410         }
1411       else if (G_VALUE_TYPE (gvalue) == G_TYPE_INT64)
1412         {
1413           time_t time;
1414
1415           time = g_value_get_int64 (value);
1416           svalue = empathy_time_to_string_utc (time, _("%B %e, %Y at %R UTC"));
1417         }
1418
1419       if (svalue != NULL)
1420         {
1421           label = gtk_label_new (svalue);
1422           gtk_table_attach_defaults (GTK_TABLE (information->table_location),
1423               label, 1, 2, row, row + 1);
1424           gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
1425           gtk_widget_show (label);
1426         }
1427
1428       g_free (svalue);
1429       row++;
1430     }
1431
1432   gtk_widget_show (information->table_location);
1433
1434 #if HAVE_LIBCHAMPLAIN
1435   /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such
1436    * windows
1437    */
1438   if (has_position &&
1439       !(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
1440     {
1441       ClutterActor *marker;
1442       ChamplainLayer *layer;
1443
1444       information->map_view_embed = gtk_champlain_embed_new ();
1445       information->map_view = gtk_champlain_embed_get_view (
1446           GTK_CHAMPLAIN_EMBED (information->map_view_embed));
1447
1448       gtk_container_add (GTK_CONTAINER (information->viewport_map),
1449           information->map_view_embed);
1450       g_object_set (G_OBJECT (information->map_view), "show-license", FALSE,
1451           "scroll-mode", CHAMPLAIN_SCROLL_MODE_KINETIC,
1452           NULL);
1453
1454       layer = champlain_layer_new ();
1455       champlain_view_add_layer (information->map_view, layer);
1456
1457       marker = champlain_marker_new_with_text (
1458           empathy_contact_get_name (information->contact), NULL, NULL, NULL);
1459       champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), lat, lon);
1460       clutter_container_add (CLUTTER_CONTAINER (layer), marker, NULL);
1461
1462       champlain_view_center_on (information->map_view, lat, lon);
1463       gtk_widget_show_all (information->viewport_map);
1464     }
1465 #endif
1466
1467     gtk_widget_show (information->vbox_location);
1468 }