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