]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-contact-widget.c
Merge remote-tracking branch 'origin/gnome-3-8'
[empathy.git] / libempathy-gtk / empathy-contact-widget.c
index ba735f6751c4ad802df0b171e6c3e92e69ebc443..80a1aafb4e699a4119eaca36dff2cb8c2595e337 100644 (file)
  * Authors: Xavier Claessens <xclaesse@gmail.com>
  */
 
-#include <config.h>
-
-#include <string.h>
-#include <stdlib.h>
+#include "config.h"
+#include "empathy-contact-widget.h"
 
-#include <gtk/gtk.h>
 #include <glib/gi18n-lib.h>
 
-#ifdef HAVE_LIBCHAMPLAIN
-#include <champlain/champlain.h>
-#include <champlain-gtk/champlain-gtk.h>
-#endif
-
-#include <telepathy-glib/account.h>
-#include <telepathy-glib/util.h>
-#include <telepathy-glib/interfaces.h>
-
-#include <libempathy/empathy-tp-contact-factory.h>
-#include <libempathy/empathy-location.h>
-#include <libempathy/empathy-time.h>
-#include <libempathy/empathy-utils.h>
-
-#include "empathy-calendar-button.h"
-#include "empathy-contact-widget.h"
-#include "empathy-contactinfo-utils.h"
-#include "empathy-account-chooser.h"
-#include "empathy-avatar-chooser.h"
 #include "empathy-avatar-image.h"
+#include "empathy-client-factory.h"
 #include "empathy-groups-widget.h"
-#include "empathy-ui-utils.h"
 #include "empathy-string-parser.h"
+#include "empathy-ui-utils.h"
+#include "empathy-utils.h"
 
 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
-#include <libempathy/empathy-debug.h>
+#include "empathy-debug.h"
 
 /**
  * SECTION:empathy-contact-widget
  * also allowing changing these details, if desired.
  */
 
+G_DEFINE_TYPE (EmpathyContactWidget, empathy_contact_widget, GTK_TYPE_BOX)
+
 /* Delay before updating the widget when the id entry changed (seconds) */
 #define ID_CHANGED_TIMEOUT 1
 
 #define DATA_FIELD "contact-info-field"
 
-typedef struct
+struct _EmpathyContactWidgetPriv
 {
   EmpathyContact *contact;
-  EmpathyContactWidgetFlags flags;
   guint widget_id_timeout;
   gulong fav_sig_id;
 
-  GtkWidget *vbox_contact_widget;
-
   /* Contact */
   GtkWidget *widget_avatar;
   GtkWidget *widget_account;
@@ -104,38 +83,18 @@ typedef struct
   GtkWidget *label_details;
   GtkWidget *label_left_account;
 
-  /* Location */
-  GtkWidget *vbox_location;
-  GtkWidget *subvbox_location;
-  GtkWidget *grid_location;
-  GtkWidget *label_location;
-#ifdef HAVE_LIBCHAMPLAIN
-  GtkWidget *viewport_map;
-  GtkWidget *map_view_embed;
-  ChamplainView *map_view;
-#endif
-
   /* Groups */
   GtkWidget *groups_widget;
 
-  /* Details */
-  GtkWidget *vbox_details;
-  GtkWidget *grid_details;
-  GtkWidget *hbox_details_requested;
-  GtkWidget *spinner_details;
-  GList *details_to_set;
-  GCancellable *details_cancellable;
-  gboolean details_changed;
-
   /* Client */
   GtkWidget *vbox_client;
   GtkWidget *grid_client;
   GtkWidget *hbox_client_requested;
-} EmpathyContactWidget;
+};
 
 typedef struct
 {
-  EmpathyContactWidget *information;
+  EmpathyContactWidget *self;
   const gchar *name;
   gboolean found;
   GtkTreeIter found_iter;
@@ -149,845 +108,46 @@ enum
   COL_COUNT
 };
 
-static gboolean
-field_value_is_empty (TpContactInfoField *field)
-{
-  guint i;
-
-  if (field->field_value == NULL)
-    return TRUE;
-
-  /* Field is empty if all its values are empty */
-  for (i = 0; field->field_value[i] != NULL; i++)
-    {
-      if (!tp_str_empty (field->field_value[i]))
-        return FALSE;
-    }
-
-  return TRUE;
-}
-
-static void
-set_contact_info_cb (GObject *source,
-    GAsyncResult *result,
-    gpointer user_data)
-{
-  GError *error = NULL;
-
-  if (!tp_connection_set_contact_info_finish (TP_CONNECTION (source), result,
-        &error))
-    {
-      DEBUG ("SetContactInfo() failed: %s", error->message);
-      g_error_free (error);
-      return;
-    }
-
-  DEBUG ("SetContactInfo() succeeded");
-}
-
-static void
-contact_widget_save (EmpathyContactWidget *information)
-{
-  TpConnection *connection;
-  GList *l, *next;
-
-  connection = empathy_contact_get_connection (information->contact);
-
-  /* Remove empty fields */
-  for (l = information->details_to_set; l != NULL; l = next)
-    {
-      TpContactInfoField *field = l->data;
-
-      next = l->next;
-      if (field_value_is_empty (field))
-        {
-          DEBUG ("Drop empty field: %s", field->field_name);
-          tp_contact_info_field_free (field);
-          information->details_to_set =
-              g_list_delete_link (information->details_to_set, l);
-        }
-    }
-
-  if (information->details_to_set != NULL)
-    {
-      if (information->details_changed)
-        {
-          tp_connection_set_contact_info_async (connection,
-              information->details_to_set, set_contact_info_cb, NULL);
-        }
-
-      tp_contact_info_list_free (information->details_to_set);
-      information->details_to_set = NULL;
-    }
-}
-
-static void
-contact_widget_details_setup (EmpathyContactWidget *information)
-{
-  gtk_widget_hide (information->vbox_details);
-
-  information->spinner_details = gtk_spinner_new ();
-  gtk_box_pack_end (GTK_BOX (information->hbox_details_requested),
-      information->spinner_details, TRUE, TRUE, 0);
-  gtk_widget_show (information->spinner_details);
-}
-
-static void
-contact_widget_details_changed_cb (GtkEntry *entry,
-    EmpathyContactWidget *self)
-{
-  const gchar *strv[] = { NULL, NULL };
-  TpContactInfoField *field;
-
-  self->details_changed = TRUE;
-
-  field = g_object_get_data ((GObject *) entry, DATA_FIELD);
-  g_assert (field != NULL);
-
-  strv[0] = gtk_entry_get_text (entry);
-
-  if (field->field_value != NULL)
-    g_strfreev (field->field_value);
-  field->field_value = g_strdupv ((GStrv) strv);
-}
 
 static void
-contact_widget_bday_changed_cb (EmpathyCalendarButton *button,
-    GDate *date,
-    EmpathyContactWidget *self)
-{
-  const gchar *strv[] = { NULL, NULL };
-  TpContactInfoField *field;
-
-  self->details_changed = TRUE;
-
-  field = g_object_get_data ((GObject *) button, DATA_FIELD);
-  g_assert (field != NULL);
-
-  if (date != NULL)
-    {
-      gchar tmp[255];
-
-      g_date_strftime (tmp, sizeof (tmp), EMPATHY_DATE_FORMAT_DISPLAY_SHORT,
-          date);
-      strv[0] = tmp;
-    }
-
-  if (field->field_value != NULL)
-    g_strfreev (field->field_value);
-  field->field_value = g_strdupv ((GStrv) strv);
-}
-
-static void contact_widget_details_notify_cb (EmpathyContactWidget *information);
-
-static gboolean
-field_name_in_field_list (GList *list,
-    const gchar *name)
-{
-  GList *l;
-
-  for (l = list; l != NULL; l = g_list_next (l))
-    {
-      TpContactInfoField *field = l->data;
-
-      if (!tp_strdiff (field->field_name, name))
-        return TRUE;
-    }
-
-  return FALSE;
-}
-
-static TpContactInfoFieldSpec *
-get_spec_from_list (GList *list,
-    const gchar *name)
-{
-  GList *l;
-
-  for (l = list; l != NULL; l = g_list_next (l))
-    {
-      TpContactInfoFieldSpec *spec = l->data;
-
-      if (!tp_strdiff (spec->name, name))
-        return spec;
-    }
-
-  return NULL;
-}
-
-static guint
-contact_widget_details_update_edit (EmpathyContactWidget *information)
-{
-  TpContact *contact;
-  TpConnection *connection;
-  GList *specs, *l;
-  guint n_rows = 0;
-  GList *info;
-  const char **field_names = empathy_contact_info_get_field_names (NULL);
-  guint i;
-
-  g_assert (information->details_to_set == NULL);
-
-  information->details_changed = FALSE;
-
-  contact = empathy_contact_get_tp_contact (information->contact);
-  connection = tp_contact_get_connection (contact);
-
-  info = tp_contact_get_contact_info (contact);
-
-  specs = tp_connection_get_contact_info_supported_fields (connection);
-
-  /* Look at the fields set in our vCard */
-  for (l = info; l != NULL; l = l->next)
-    {
-      TpContactInfoField *field = l->data;
-
-      /* make a copy for the details_to_set list */
-      field = tp_contact_info_field_copy (field);
-      DEBUG ("Field %s is in our vCard", field->field_name);
-
-      information->details_to_set = g_list_prepend (information->details_to_set,
-          field);
-    }
-
-  /* Add fields which are supported but not in the vCard */
-  for (i = 0; field_names[i] != NULL; i++)
-    {
-      TpContactInfoFieldSpec *spec;
-      TpContactInfoField *field;
-
-      /* Check if the field was in the vCard */
-      if (field_name_in_field_list (information->details_to_set,
-            field_names[i]))
-        continue;
-
-      /* Check if the CM supports the field */
-      spec = get_spec_from_list (specs, field_names[i]);
-      if (spec == NULL)
-        continue;
-
-      /* add an empty field so user can set a value */
-      field = tp_contact_info_field_new (spec->name, spec->parameters, NULL);
-
-      information->details_to_set = g_list_prepend (information->details_to_set,
-          field);
-    }
-
-  /* Add widgets for supported fields */
-  information->details_to_set = g_list_sort (information->details_to_set,
-      (GCompareFunc) empathy_contact_info_field_spec_cmp);
-
-  for (l = information->details_to_set; l != NULL; l= g_list_next (l))
-    {
-      TpContactInfoField *field = l->data;
-      GtkWidget *w;
-      TpContactInfoFieldSpec *spec;
-      gboolean has_field;
-      char *title;
-
-      has_field = empathy_contact_info_lookup_field (field->field_name,
-          NULL, NULL);
-      if (!has_field)
-        {
-          /* Empathy doesn't display this field so we can't change it.
-           * But we put it in the details_to_set list so it won't be erased
-           * when calling SetContactInfo (bgo #630427) */
-          DEBUG ("Unhandled ContactInfo field spec: %s", field->field_name);
-          continue;
-        }
-
-      spec = get_spec_from_list (specs, field->field_name);
-      /* We shouldn't have added the field to details_to_set if it's not
-       * supported by the CM */
-      g_assert (spec != NULL);
-
-      if (spec->flags & TP_CONTACT_INFO_FIELD_FLAG_OVERWRITTEN_BY_NICKNAME)
-        {
-          DEBUG ("Ignoring field '%s' due it to having the "
-              "Overwritten_By_Nickname flag", field->field_name);
-          continue;
-        }
-
-      /* Add Title */
-      title = empathy_contact_info_field_label (field->field_name,
-          field->parameters,
-          (spec->flags & TP_CONTACT_INFO_FIELD_FLAG_PARAMETERS_EXACT));
-      w = gtk_label_new (title);
-      g_free (title);
-
-      /* TODO: if TP_CONTACT_INFO_FIELD_FLAG_PARAMETERS_EXACT is not set we
-       * should allow user to tag the vCard fields (bgo#672034) */
-
-      gtk_grid_attach (GTK_GRID (information->grid_details),
-          w, 0, n_rows, 1, 1);
-
-      gtk_misc_set_alignment (GTK_MISC (w), 1, 0.5);
-      gtk_widget_show (w);
-
-      /* Add Value */
-      if (!tp_strdiff (field->field_name, "bday"))
-        {
-          w = empathy_calendar_button_new ();
-
-          if (field->field_value[0])
-            {
-              GDate date;
-
-              g_date_set_parse (&date, field->field_value[0]);
-              if (g_date_valid (&date))
-                {
-                  empathy_calendar_button_set_date (EMPATHY_CALENDAR_BUTTON (w),
-                      &date);
-                }
-            }
-
-          gtk_grid_attach (GTK_GRID (information->grid_details),
-              w, 1, n_rows, 1, 1);
-          gtk_widget_show_all (w);
-
-          g_object_set_data ((GObject *) w, DATA_FIELD, field);
-
-          g_signal_connect (w, "date-changed",
-            G_CALLBACK (contact_widget_bday_changed_cb), information);
-        }
-      else
-        {
-          w = gtk_entry_new ();
-          gtk_entry_set_text (GTK_ENTRY (w),
-              field->field_value[0] ? field->field_value[0] : "");
-          gtk_grid_attach (GTK_GRID (information->grid_details),
-              w, 1, n_rows, 1, 1);
-          gtk_widget_show (w);
-
-          g_object_set_data ((GObject *) w, DATA_FIELD, field);
-
-          g_signal_connect (w, "changed",
-            G_CALLBACK (contact_widget_details_changed_cb), information);
-        }
-
-      n_rows++;
-    }
-
-  g_list_free (specs);
-  g_list_free (info);
-
-  return n_rows;
-}
-
-static void
-add_row (GtkGrid *grid,
-    guint row,
-    GtkWidget *title,
-    GtkWidget *value)
-{
-  gtk_grid_attach (grid, title, 0, row, 1, 1);
-  gtk_misc_set_alignment (GTK_MISC (title), 0, 0.5);
-  gtk_widget_show (title);
-
-  gtk_grid_attach (grid, value, 1, row, 1, 1);
-  gtk_misc_set_alignment (GTK_MISC (value), 0, 0.5);
-  gtk_widget_show (value);
-}
-
-static guint
-contact_widget_details_update_show (EmpathyContactWidget *information)
-{
-  TpContact *contact;
-  GList *info, *l;
-  guint n_rows = 0;
-  GtkWidget *channels_label;
-  TpAccount *account;
-
-  contact = empathy_contact_get_tp_contact (information->contact);
-  info = tp_contact_get_contact_info (contact);
-  info = g_list_sort (info, (GCompareFunc) empathy_contact_info_field_cmp);
-  for (l = info; l != NULL; l = l->next)
-    {
-      TpContactInfoField *field = l->data;
-      const gchar *value;
-      gchar *markup = NULL, *title;
-      GtkWidget *title_widget, *value_widget;
-      EmpathyContactInfoFormatFunc format;
-
-      if (field->field_value == NULL || field->field_value[0] == NULL)
-        continue;
-
-      value = field->field_value[0];
-
-      if (!empathy_contact_info_lookup_field (field->field_name, NULL, &format))
-        {
-          DEBUG ("Unhandled ContactInfo field: %s", field->field_name);
-          continue;
-        }
-
-      if (format != NULL)
-        {
-          markup = format (field->field_value);
-
-          if (markup == NULL)
-            {
-              DEBUG ("Invalid value for field '%s' (first element was '%s')",
-                  field->field_name, field->field_value[0]);
-              continue;
-            }
-        }
-
-      /* Add Title */
-      title = empathy_contact_info_field_label (field->field_name,
-          field->parameters, TRUE);
-      title_widget = gtk_label_new (title);
-      g_free (title);
-
-      /* Add Value */
-      value_widget = gtk_label_new (value);
-      if (markup != NULL)
-        {
-          gtk_label_set_markup (GTK_LABEL (value_widget), markup);
-          g_free (markup);
-        }
-
-      if ((information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) == 0)
-        gtk_label_set_selectable (GTK_LABEL (value_widget), TRUE);
-
-      add_row (GTK_GRID (information->grid_details), n_rows, title_widget,
-          value_widget);
-
-      n_rows++;
-    }
-
-  account = empathy_contact_get_account (information->contact);
-
-  channels_label = empathy_contact_info_create_channel_list_label (account,
-      info, n_rows);
-
-  if (channels_label != NULL)
-    {
-      GtkWidget *title_widget;
-
-      title_widget =  gtk_label_new (_("Channels:"));
-
-      add_row (GTK_GRID (information->grid_details), n_rows, title_widget,
-          channels_label);
-
-      n_rows++;
-    }
-
-  g_list_free (info);
-
-  return n_rows;
-}
-
-static void
-contact_widget_details_notify_cb (EmpathyContactWidget *information)
-{
-  guint n_rows;
-
-  gtk_container_foreach (GTK_CONTAINER (information->grid_details),
-      (GtkCallback) gtk_widget_destroy, NULL);
-
-  if ((information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) != 0)
-    n_rows = contact_widget_details_update_edit (information);
-  else
-    n_rows = contact_widget_details_update_show (information);
-
-  if (n_rows > 0)
-    {
-      gtk_widget_show (information->vbox_details);
-      gtk_widget_show (information->grid_details);
-    }
-  else
-    {
-      gtk_widget_hide (information->vbox_details);
-    }
-
-  gtk_widget_hide (information->hbox_details_requested);
-  gtk_spinner_stop (GTK_SPINNER (information->spinner_details));
-}
-
-static void
-contact_widget_details_request_cb (GObject *object,
-    GAsyncResult *res,
-    gpointer user_data)
-{
-  TpContact *contact = TP_CONTACT (object);
-  EmpathyContactWidget *information = user_data;
-  GError *error = NULL;
-
-  if (!tp_contact_request_contact_info_finish (contact, res, &error))
-    {
-      /* If the request got cancelled it could mean the contact widget is
-       * destroyed, so we should not dereference information */
-      if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
-        {
-          g_clear_error (&error);
-          return;
-        }
-
-      gtk_widget_hide (information->vbox_details);
-      g_clear_error (&error);
-    }
-  else
-    {
-      contact_widget_details_notify_cb (information);
-    }
-
-  /* If we are going to edit ContactInfo, we don't want live updates */
-  if ((information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) == 0)
-    {
-      g_signal_connect_swapped (contact, "notify::contact-info",
-          G_CALLBACK (contact_widget_details_notify_cb), information);
-    }
-
-  tp_clear_object (&information->details_cancellable);
-}
-
-static void
-fetch_contact_information (EmpathyContactWidget *information,
-        TpConnection *connection)
-{
-  TpContact *contact;
-  TpContactInfoFlags flags;
-
-  if (!tp_proxy_has_interface_by_id (connection,
-          TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_INFO))
-    {
-      gtk_widget_hide (information->vbox_details);
-      return;
-    }
-
-  /* If we want to edit info, but connection does not support that, stop */
-  flags = tp_connection_get_contact_info_flags (connection);
-  if ((flags & TP_CONTACT_INFO_FLAG_CAN_SET) == 0 &&
-      (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) != 0)
-    {
-      gtk_widget_hide (information->vbox_details);
-      return;
-    }
-
-  /* Request the contact's info */
-  gtk_widget_show (information->vbox_details);
-  gtk_widget_show (information->hbox_details_requested);
-  gtk_widget_hide (information->grid_details);
-  gtk_spinner_start (GTK_SPINNER (information->spinner_details));
-
-  contact = empathy_contact_get_tp_contact (information->contact);
-  g_assert (information->details_cancellable == NULL);
-  information->details_cancellable = g_cancellable_new ();
-  tp_contact_request_contact_info_async (contact,
-      information->details_cancellable, contact_widget_details_request_cb,
-      information);
-}
-
-static void
-contact_widget_details_update (EmpathyContactWidget *information)
-{
-  TpContact *tp_contact = NULL;
-
-  if ((information->flags & EMPATHY_CONTACT_WIDGET_SHOW_DETAILS) == 0 &&
-      (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_DETAILS) == 0)
-    return;
-
-  gtk_widget_hide (information->vbox_details);
-
-  if (information->contact != NULL)
-    tp_contact = empathy_contact_get_tp_contact (information->contact);
-
-  if (tp_contact != NULL)
-    {
-      TpConnection *connection;
-
-      connection = tp_contact_get_connection (tp_contact);
-
-      fetch_contact_information (information, connection);
-    }
-}
-
-static void
-contact_widget_client_update (EmpathyContactWidget *information)
+contact_widget_client_update (EmpathyContactWidget *self)
 {
   /* FIXME: Needs new telepathy spec */
 }
 
 static void
-contact_widget_client_setup (EmpathyContactWidget *information)
+contact_widget_client_setup (EmpathyContactWidget *self)
 {
   /* FIXME: Needs new telepathy spec */
-  gtk_widget_hide (information->vbox_client);
+  gtk_widget_hide (self->priv->vbox_client);
 }
 
 static void
-contact_widget_groups_update (EmpathyContactWidget *information)
+contact_widget_groups_update (EmpathyContactWidget *self)
 {
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS &&
-      information->contact != NULL)
+  if (self->priv->contact != NULL)
     {
       FolksPersona *persona =
-          empathy_contact_get_persona (information->contact);
+          empathy_contact_get_persona (self->priv->contact);
 
       if (FOLKS_IS_GROUP_DETAILS (persona))
         {
           empathy_groups_widget_set_group_details (
-              EMPATHY_GROUPS_WIDGET (information->groups_widget),
+              EMPATHY_GROUPS_WIDGET (self->priv->groups_widget),
               FOLKS_GROUP_DETAILS (persona));
-          gtk_widget_show (information->groups_widget);
+          gtk_widget_show (self->priv->groups_widget);
 
           return;
         }
     }
 
   /* In case of failure */
-  gtk_widget_hide (information->groups_widget);
-}
-
-/* Converts the Location's GHashTable's key to a user readable string */
-static const gchar *
-location_key_to_label (const gchar *key)
-{
-  if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY_CODE) == FALSE)
-    return _("Country ISO Code:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_COUNTRY) == FALSE)
-    return _("Country:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_REGION) == FALSE)
-    return _("State:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_LOCALITY) == FALSE)
-    return _("City:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_AREA) == FALSE)
-    return _("Area:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_POSTAL_CODE) == FALSE)
-    return _("Postal Code:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_STREET) == FALSE)
-    return _("Street:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_BUILDING) == FALSE)
-    return _("Building:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_FLOOR) == FALSE)
-    return _("Floor:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_ROOM) == FALSE)
-    return _("Room:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_TEXT) == FALSE)
-    return _("Text:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_DESCRIPTION) == FALSE)
-    return _("Description:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_URI) == FALSE)
-    return _("URI:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_ACCURACY_LEVEL) == FALSE)
-    return _("Accuracy Level:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_ERROR) == FALSE)
-    return _("Error:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_VERTICAL_ERROR_M) == FALSE)
-    return _("Vertical Error (meters):");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_HORIZONTAL_ERROR_M) == FALSE)
-    return _("Horizontal Error (meters):");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_SPEED) == FALSE)
-    return _("Speed:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_BEARING) == FALSE)
-    return _("Bearing:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_CLIMB) == FALSE)
-    return _("Climb Speed:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_TIMESTAMP) == FALSE)
-    return _("Last Updated on:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_LON) == FALSE)
-    return _("Longitude:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_LAT) == FALSE)
-    return _("Latitude:");
-  else if (tp_strdiff (key, EMPATHY_LOCATION_ALT) == FALSE)
-    return _("Altitude:");
-  else
-  {
-    DEBUG ("Unexpected Location key: %s", key);
-    return key;
-  }
-}
-
-static void
-contact_widget_location_update (EmpathyContactWidget *information)
-{
-  GHashTable *location;
-  GValue *value;
-#ifdef HAVE_LIBCHAMPLAIN
-  gdouble lat = 0.0, lon = 0.0;
-  gboolean has_position = TRUE;
-#endif
-  GtkWidget *label;
-  guint row = 0;
-  static const gchar* ordered_geolocation_keys[] = {
-    EMPATHY_LOCATION_TEXT,
-    EMPATHY_LOCATION_URI,
-    EMPATHY_LOCATION_DESCRIPTION,
-    EMPATHY_LOCATION_BUILDING,
-    EMPATHY_LOCATION_FLOOR,
-    EMPATHY_LOCATION_ROOM,
-    EMPATHY_LOCATION_STREET,
-    EMPATHY_LOCATION_AREA,
-    EMPATHY_LOCATION_LOCALITY,
-    EMPATHY_LOCATION_REGION,
-    EMPATHY_LOCATION_COUNTRY,
-    NULL
-  };
-  int i;
-  const gchar *skey;
-  gboolean display_map = FALSE;
-
-  if (!(information->flags & EMPATHY_CONTACT_WIDGET_SHOW_LOCATION))
-    {
-      gtk_widget_hide (information->vbox_location);
-      return;
-    }
-
-  location = empathy_contact_get_location (information->contact);
-  if (location == NULL || g_hash_table_size (location) == 0)
-    {
-      gtk_widget_hide (information->vbox_location);
-      return;
-    }
-
-  value = g_hash_table_lookup (location, EMPATHY_LOCATION_TIMESTAMP);
-  if (value == NULL)
-    {
-      gchar *loc = g_strdup_printf ("<b>%s</b>", _("Location"));
-      gtk_label_set_markup (GTK_LABEL (information->label_location), loc);
-      g_free (loc);
-    }
-  else
-    {
-      gchar *user_date;
-      gchar *text;
-      gint64 stamp;
-      gchar *tmp;
-
-      stamp = g_value_get_int64 (value);
-
-      user_date = empathy_time_to_string_relative (stamp);
-
-      tmp = g_strdup_printf ("<b>%s</b>", _("Location"));
-      /* translators: format is "Location, $date" */
-      text = g_strdup_printf (_("%s, %s"), tmp, user_date);
-      g_free (tmp);
-      gtk_label_set_markup (GTK_LABEL (information->label_location), text);
-      g_free (user_date);
-      g_free (text);
-    }
-
-
-  /* Prepare the location information grid */
-  if (information->grid_location != NULL)
-    {
-      gtk_widget_destroy (information->grid_location);
-    }
-
-  information->grid_location = gtk_grid_new ();
-  gtk_box_pack_start (GTK_BOX (information->subvbox_location),
-      information->grid_location, FALSE, FALSE, 5);
-
-
-  for (i = 0; (skey = ordered_geolocation_keys[i]); i++)
-    {
-      const gchar* user_label;
-      GValue *gvalue;
-      char *svalue = NULL;
-
-      gvalue = g_hash_table_lookup (location, (gpointer) skey);
-      if (gvalue == NULL)
-        continue;
-
-      user_label = location_key_to_label (skey);
-
-      label = gtk_label_new (user_label);
-      gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
-      gtk_grid_attach (GTK_GRID (information->grid_location),
-          label, 0, row, 1, 1);
-      gtk_widget_show (label);
-
-      if (G_VALUE_TYPE (gvalue) == G_TYPE_DOUBLE)
-        {
-          gdouble dvalue;
-          dvalue = g_value_get_double (gvalue);
-          svalue = g_strdup_printf ("%f", dvalue);
-        }
-      else if (G_VALUE_TYPE (gvalue) == G_TYPE_STRING)
-        {
-          svalue = g_value_dup_string (gvalue);
-        }
-      else if (G_VALUE_TYPE (gvalue) == G_TYPE_INT64)
-        {
-          gint64 time_;
-
-          time_ = g_value_get_int64 (value);
-          svalue = empathy_time_to_string_utc (time_, _("%B %e, %Y at %R UTC"));
-        }
-
-      if (svalue != NULL)
-        {
-          label = gtk_label_new (svalue);
-          gtk_grid_attach (GTK_GRID (information->grid_location),
-              label, 1, row, 1, 1);
-          gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
-          gtk_widget_show (label);
-
-          if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
-            gtk_label_set_selectable (GTK_LABEL (label), TRUE);
-        }
-
-      g_free (svalue);
-      row++;
-    }
-
-#ifdef HAVE_LIBCHAMPLAIN
-  if (has_position &&
-      !(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
-    {
-      /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such
-       * windows */
-      display_map = TRUE;
-    }
-#endif
-
-  if (row > 0)
-    {
-      /* We can display some fields */
-      gtk_widget_show (information->grid_location);
-    }
-  else if (!display_map)
-    {
-      /* Can't display either fields or map */
-      gtk_widget_hide (information->vbox_location);
-      return;
-    }
-
-#ifdef HAVE_LIBCHAMPLAIN
-  if (display_map)
-    {
-      ClutterActor *marker;
-      ChamplainMarkerLayer *layer;
-
-      information->map_view_embed = gtk_champlain_embed_new ();
-      information->map_view = gtk_champlain_embed_get_view (
-          GTK_CHAMPLAIN_EMBED (information->map_view_embed));
-
-      gtk_container_add (GTK_CONTAINER (information->viewport_map),
-          information->map_view_embed);
-      g_object_set (G_OBJECT (information->map_view),
-          "kinetic-mode", TRUE,
-          "zoom-level", 10,
-          NULL);
-
-      layer = champlain_marker_layer_new ();
-      champlain_view_add_layer (information->map_view, CHAMPLAIN_LAYER (layer));
-
-      marker = champlain_label_new_with_text (
-          empathy_contact_get_alias (information->contact), NULL, NULL, NULL);
-      champlain_location_set_location (CHAMPLAIN_LOCATION (marker), lat, lon);
-      champlain_marker_layer_add_marker (layer, CHAMPLAIN_MARKER (marker));
-
-      champlain_view_center_on (information->map_view, lat, lon);
-      gtk_widget_show_all (information->viewport_map);
-    }
-#endif
-
-    gtk_widget_show (information->vbox_location);
+  gtk_widget_hide (self->priv->groups_widget);
 }
 
 static void
 save_avatar_menu_activate_cb (GtkWidget *widget,
-                              EmpathyContactWidget *information)
+    EmpathyContactWidget *self)
 {
   GtkWidget *dialog;
   EmpathyAvatar *avatar;
@@ -1004,7 +164,7 @@ save_avatar_menu_activate_cb (GtkWidget *widget,
       TRUE);
 
   /* look for the avatar extension */
-  avatar = empathy_contact_get_avatar (information->contact);
+  avatar = empathy_contact_get_avatar (self->priv->contact);
   if (avatar->format != NULL)
     {
       gchar **splitted;
@@ -1026,7 +186,7 @@ save_avatar_menu_activate_cb (GtkWidget *widget,
       gchar *id;
 
       id = tp_escape_as_identifier (empathy_contact_get_id (
-            information->contact));
+            self->priv->contact));
 
       filename = g_strdup_printf ("%s.%s", id, ext);
       gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), filename);
@@ -1069,15 +229,15 @@ save_avatar_menu_activate_cb (GtkWidget *widget,
 }
 
 static void
-popup_avatar_menu (EmpathyContactWidget *information,
+popup_avatar_menu (EmpathyContactWidget *self,
                    GtkWidget *parent,
                    GdkEventButton *event)
 {
   GtkWidget *menu, *item;
   gint button, event_time;
 
-  if (information->contact == NULL ||
-      empathy_contact_get_avatar (information->contact) == NULL)
+  if (self->priv->contact == NULL ||
+      empathy_contact_get_avatar (self->priv->contact) == NULL)
       return;
 
   menu = empathy_context_menu_new (parent);
@@ -1088,7 +248,7 @@ popup_avatar_menu (EmpathyContactWidget *information,
   gtk_widget_show (item);
 
   g_signal_connect (item, "activate",
-      G_CALLBACK (save_avatar_menu_activate_cb), information);
+      G_CALLBACK (save_avatar_menu_activate_cb), self);
 
   if (event)
     {
@@ -1107,9 +267,9 @@ popup_avatar_menu (EmpathyContactWidget *information,
 
 static gboolean
 widget_avatar_popup_menu_cb (GtkWidget *widget,
-                             EmpathyContactWidget *information)
+                             EmpathyContactWidget *self)
 {
-  popup_avatar_menu (information, widget, NULL);
+  popup_avatar_menu (self, widget, NULL);
 
   return TRUE;
 }
@@ -1117,61 +277,18 @@ widget_avatar_popup_menu_cb (GtkWidget *widget,
 static gboolean
 widget_avatar_button_press_event_cb (GtkWidget *widget,
                                      GdkEventButton *event,
-                                     EmpathyContactWidget *information)
+                                     EmpathyContactWidget *self)
 {
   /* Ignore double-clicks and triple-clicks */
   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
     {
-      popup_avatar_menu (information, widget, event);
+      popup_avatar_menu (self, widget, event);
       return TRUE;
     }
 
   return FALSE;
 }
 
-static void
-set_avatar_cb (GObject *source,
-    GAsyncResult *res,
-    gpointer user_data)
-{
-  GError *error = NULL;
-
-  if (!tp_account_set_avatar_finish (TP_ACCOUNT (source), res, &error)) {
-      DEBUG ("Failed to set Account.Avatar: %s", error->message);
-      g_error_free (error);
-  }
-}
-
-static void
-set_avatar_on_account (TpAccount *account,
-    const gchar *data,
-    gsize size,
-    const gchar *mime_type)
-{
-  DEBUG ("%s Account.Avatar on %s", size > 0 ? "Set": "Clear",
-      tp_proxy_get_object_path (account));
-
-  tp_account_set_avatar_async (account, (const guchar *) data, size,
-      mime_type, set_avatar_cb, NULL);
-}
-
-static void
-contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
-                                  EmpathyContactWidget *information)
-{
-  const gchar *data;
-  gsize size;
-  const gchar *mime_type;
-  TpAccount *account;
-
-  empathy_avatar_chooser_get_image_data (
-      EMPATHY_AVATAR_CHOOSER (information->widget_avatar),
-      &data, &size, &mime_type);
-
-  account = empathy_contact_get_account (information->contact);
-  set_avatar_on_account (account, data, size, mime_type);
-}
-
 static void
 set_nickname_cb (GObject *source,
     GAsyncResult *res,
@@ -1186,63 +303,23 @@ set_nickname_cb (GObject *source,
     }
 }
 
-/* Update all the contact info fields having the
-* Overwritten_By_Nickname flag to the new alias. This avoid accidentally
-* reseting the alias when calling SetContactInfo(). See bgo #644298 for
-* details. */
-static void
-update_nickname_in_contact_info (EmpathyContactWidget *self,
-    TpConnection *connection,
-    const gchar *nickname)
-{
-  GList *specs, *l;
-
-  specs = tp_connection_get_contact_info_supported_fields (connection);
-
-  for (l = self->details_to_set; l != NULL; l= g_list_next (l))
-    {
-      TpContactInfoField *field = l->data;
-      TpContactInfoFieldSpec *spec;
-
-      spec = get_spec_from_list (specs, field->field_name);
-      /* We shouldn't have added the field to details_to_set if it's not
-       * supported by the CM */
-      g_assert (spec != NULL);
-
-      if (spec->flags & TP_CONTACT_INFO_FIELD_FLAG_OVERWRITTEN_BY_NICKNAME)
-        {
-          const gchar *strv[] = { nickname, NULL };
-
-          DEBUG ("Updating field '%s' to '%s' as it has the "
-              "Overwritten_By_Nickname flag and Account.Nickname has "
-              "been updated", field->field_name, nickname);
-
-          if (field->field_value != NULL)
-            g_strfreev (field->field_value);
-          field->field_value = g_strdupv ((GStrv) strv);
-        }
-    }
-
-  g_list_free (specs);
-}
-
 static gboolean
 contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
-                                           GdkEventFocus *event,
-                                           EmpathyContactWidget *information)
+    GdkEventFocus *event,
+    EmpathyContactWidget *self)
 {
-  if (information->contact)
+  if (self->priv->contact)
     {
       const gchar *alias;
 
       alias = gtk_entry_get_text (GTK_ENTRY (editable));
 
-      if (empathy_contact_is_user (information->contact))
+      if (empathy_contact_is_user (self->priv->contact))
         {
           TpAccount * account;
           const gchar *current_nickname;
 
-          account = empathy_contact_get_account (information->contact);
+          account = empathy_contact_get_account (self->priv->contact);
           current_nickname = tp_account_get_nickname (account);
 
           if (tp_strdiff (current_nickname, alias))
@@ -1251,14 +328,11 @@ contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
 
               tp_account_set_nickname_async (account, alias, set_nickname_cb,
                   NULL);
-
-              update_nickname_in_contact_info (information,
-                  empathy_contact_get_connection (information->contact), alias);
             }
         }
       else
         {
-          empathy_contact_set_alias (information->contact, alias);
+          empathy_contact_set_alias (self->priv->contact, alias);
         }
     }
 
@@ -1266,277 +340,180 @@ contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
 }
 
 static void
-update_avatar_chooser_account_cb (EmpathyAccountChooser *account_chooser,
-                                  EmpathyAvatarChooser *avatar_chooser)
-{
-  TpAccount *account;
-
-  account = empathy_account_chooser_get_account (account_chooser);
-  if (account == NULL)
-    return;
-
-  empathy_avatar_chooser_set_account (avatar_chooser, account);
-}
-
-static void
-contact_widget_avatar_notify_cb (EmpathyContactWidget *information)
-{
-  EmpathyAvatar *avatar = NULL;
-
-  if (information->contact)
-      avatar = empathy_contact_get_avatar (information->contact);
-
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
-    {
-      g_signal_handlers_block_by_func (information->widget_avatar,
-          contact_widget_avatar_changed_cb,
-          information);
-      empathy_avatar_chooser_set (
-          EMPATHY_AVATAR_CHOOSER (information->widget_avatar), avatar);
-      g_signal_handlers_unblock_by_func (information->widget_avatar,
-          contact_widget_avatar_changed_cb, information);
-    }
-  else
-      empathy_avatar_image_set (
-          EMPATHY_AVATAR_IMAGE (information->widget_avatar), avatar);
-}
-
-static void
-contact_widget_name_notify_cb (EmpathyContactWidget *information)
+contact_widget_name_notify_cb (EmpathyContactWidget *self)
 {
-  if (GTK_IS_ENTRY (information->widget_alias))
-      gtk_entry_set_text (GTK_ENTRY (information->widget_alias),
-          empathy_contact_get_alias (information->contact));
+  if (GTK_IS_ENTRY (self->priv->widget_alias))
+      gtk_entry_set_text (GTK_ENTRY (self->priv->widget_alias),
+          empathy_contact_get_alias (self->priv->contact));
   else
-      gtk_label_set_label (GTK_LABEL (information->widget_alias),
-          empathy_contact_get_alias (information->contact));
+      gtk_label_set_label (GTK_LABEL (self->priv->widget_alias),
+          empathy_contact_get_alias (self->priv->contact));
 }
 
 static void
-contact_widget_presence_notify_cb (EmpathyContactWidget *information)
+contact_widget_presence_notify_cb (EmpathyContactWidget *self)
 {
   const gchar *status;
   gchar *markup_text = NULL;
 
-  status = empathy_contact_get_status (information->contact);
+  status = empathy_contact_get_status (self->priv->contact);
   if (status != NULL)
     markup_text = empathy_add_link_markup (status);
-  gtk_label_set_markup (GTK_LABEL (information->label_status), markup_text);
+  gtk_label_set_markup (GTK_LABEL (self->priv->label_status), markup_text);
   g_free (markup_text);
 
-  gtk_image_set_from_icon_name (GTK_IMAGE (information->image_state),
-      empathy_icon_name_for_contact (information->contact),
+  gtk_image_set_from_icon_name (GTK_IMAGE (self->priv->image_state),
+      empathy_icon_name_for_contact (self->priv->contact),
       GTK_ICON_SIZE_BUTTON);
-  gtk_widget_show (information->image_state);
+  gtk_widget_show (self->priv->image_state);
 }
 
 static void
-contact_widget_remove_contact (EmpathyContactWidget *information)
+contact_widget_remove_contact (EmpathyContactWidget *self)
 {
-  if (information->contact)
+  if (self->priv->contact)
     {
-      TpContact *tp_contact;
-
-      contact_widget_save (information);
+      g_signal_handlers_disconnect_by_func (self->priv->contact,
+          contact_widget_name_notify_cb, self);
+      g_signal_handlers_disconnect_by_func (self->priv->contact,
+          contact_widget_presence_notify_cb, self);
 
-      g_signal_handlers_disconnect_by_func (information->contact,
-          contact_widget_name_notify_cb, information);
-      g_signal_handlers_disconnect_by_func (information->contact,
-          contact_widget_presence_notify_cb, information);
-      g_signal_handlers_disconnect_by_func (information->contact,
-          contact_widget_avatar_notify_cb, information);
-
-      tp_contact = empathy_contact_get_tp_contact (information->contact);
-      if (tp_contact != NULL)
-        {
-          g_signal_handlers_disconnect_by_func (tp_contact,
-              contact_widget_details_notify_cb, information);
-        }
-
-      g_object_unref (information->contact);
-      information->contact = NULL;
-    }
-
-  if (information->details_cancellable != NULL)
-    {
-      g_cancellable_cancel (information->details_cancellable);
-      tp_clear_object (&information->details_cancellable);
+      g_object_unref (self->priv->contact);
+      self->priv->contact = NULL;
     }
 }
 
-static void contact_widget_change_contact (EmpathyContactWidget *information);
+static void contact_widget_change_contact (EmpathyContactWidget *self);
 
 static void
-contact_widget_contact_update (EmpathyContactWidget *information)
+contact_widget_contact_update (EmpathyContactWidget *self)
 {
   TpAccount *account = NULL;
   const gchar *id = NULL;
 
   /* Connect and get info from new contact */
-  if (information->contact)
+  if (self->priv->contact)
     {
-      g_signal_connect_swapped (information->contact, "notify::name",
-          G_CALLBACK (contact_widget_name_notify_cb), information);
-      g_signal_connect_swapped (information->contact, "notify::presence",
-          G_CALLBACK (contact_widget_presence_notify_cb), information);
-      g_signal_connect_swapped (information->contact,
+      g_signal_connect_swapped (self->priv->contact, "notify::name",
+          G_CALLBACK (contact_widget_name_notify_cb), self);
+      g_signal_connect_swapped (self->priv->contact, "notify::presence",
+          G_CALLBACK (contact_widget_presence_notify_cb), self);
+      g_signal_connect_swapped (self->priv->contact,
           "notify::presence-message",
-          G_CALLBACK (contact_widget_presence_notify_cb), information);
-      g_signal_connect_swapped (information->contact, "notify::avatar",
-          G_CALLBACK (contact_widget_avatar_notify_cb), information);
+          G_CALLBACK (contact_widget_presence_notify_cb), self);
 
-      account = empathy_contact_get_account (information->contact);
-      id = empathy_contact_get_id (information->contact);
+      account = empathy_contact_get_account (self->priv->contact);
+      id = empathy_contact_get_id (self->priv->contact);
     }
 
   /* Update account widget */
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
+  if (account)
     {
-      if (account)
-        {
-          g_signal_handlers_block_by_func (information->widget_account,
-                   contact_widget_change_contact,
-                   information);
-          empathy_account_chooser_set_account (
-              EMPATHY_ACCOUNT_CHOOSER (information->widget_account), account);
-          g_signal_handlers_unblock_by_func (information->widget_account,
-              contact_widget_change_contact, information);
-        }
-    }
-  else
-    {
-      if (EMPATHY_IS_AVATAR_CHOOSER (information->widget_avatar))
-        {
-          empathy_avatar_chooser_set_account (
-              EMPATHY_AVATAR_CHOOSER (information->widget_avatar), account);
-        }
-
-      if ((information->flags & EMPATHY_CONTACT_WIDGET_NO_ACCOUNT) == 0)
-        {
-          if (account)
-            {
-              const gchar *name;
-
-              name = tp_account_get_display_name (account);
-              gtk_label_set_label (GTK_LABEL (information->label_account),
-                  name);
-
-              name = tp_account_get_icon_name (account);
-              gtk_image_set_from_icon_name (
-                  GTK_IMAGE (information->image_account),
-                  name, GTK_ICON_SIZE_MENU);
-            }
-        }
+      g_signal_handlers_block_by_func (self->priv->widget_account,
+               contact_widget_change_contact,
+               self);
+      empathy_account_chooser_set_account (
+          EMPATHY_ACCOUNT_CHOOSER (self->priv->widget_account), account);
+      g_signal_handlers_unblock_by_func (self->priv->widget_account,
+          contact_widget_change_contact, self);
     }
 
   /* Update id widget */
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
-      gtk_entry_set_text (GTK_ENTRY (information->widget_id), id ? id : "");
-  else
-      gtk_label_set_label (GTK_LABEL (information->widget_id), id ? id : "");
+  gtk_entry_set_text (GTK_ENTRY (self->priv->widget_id), id ? id : "");
 
   /* Update other widgets */
-  if (information->contact)
+  if (self->priv->contact)
     {
-      contact_widget_name_notify_cb (information);
-      contact_widget_presence_notify_cb (information);
-      contact_widget_avatar_notify_cb (information);
-
-      gtk_widget_show (information->label_alias);
-      gtk_widget_show (information->widget_alias);
-      gtk_widget_show (information->widget_avatar);
+      contact_widget_name_notify_cb (self);
+      contact_widget_presence_notify_cb (self);
 
-      gtk_widget_set_visible (information->hbox_presence,
-          !(information->flags & EMPATHY_CONTACT_WIDGET_NO_STATUS));
+      gtk_widget_show (self->priv->label_alias);
+      gtk_widget_show (self->priv->widget_alias);
+      gtk_widget_show (self->priv->widget_avatar);
 
-      if (empathy_contact_is_user (information->contact))
-        gtk_label_set_text (GTK_LABEL (information->label_details),
-            _("Personal Details"));
-      else
-        gtk_label_set_text (GTK_LABEL (information->label_details),
-            _("Contact Details"));
+      gtk_widget_set_visible (self->priv->hbox_presence, TRUE);
     }
   else
     {
-      gtk_widget_hide (information->label_alias);
-      gtk_widget_hide (information->widget_alias);
-      gtk_widget_hide (information->hbox_presence);
-      gtk_widget_hide (information->widget_avatar);
+      gtk_widget_hide (self->priv->label_alias);
+      gtk_widget_hide (self->priv->widget_alias);
+      gtk_widget_hide (self->priv->hbox_presence);
+      gtk_widget_hide (self->priv->widget_avatar);
     }
 }
 
 static void
-contact_widget_set_contact (EmpathyContactWidget *information,
+contact_widget_set_contact (EmpathyContactWidget *self,
                             EmpathyContact *contact)
 {
-  if (contact == information->contact)
+  if (contact == self->priv->contact)
     return;
 
-  contact_widget_remove_contact (information);
+  contact_widget_remove_contact (self);
   if (contact)
-    information->contact = g_object_ref (contact);
+    self->priv->contact = g_object_ref (contact);
 
   /* set the selected account to be the account this contact came from */
-  if (contact && EMPATHY_IS_ACCOUNT_CHOOSER (information->widget_account)) {
+  if (contact && EMPATHY_IS_ACCOUNT_CHOOSER (self->priv->widget_account)) {
       empathy_account_chooser_set_account (
-                     EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
+                     EMPATHY_ACCOUNT_CHOOSER (self->priv->widget_account),
                      empathy_contact_get_account (contact));
   }
 
-  /* Update information for widgets */
-  contact_widget_contact_update (information);
-  contact_widget_groups_update (information);
-  contact_widget_details_update (information);
-  contact_widget_client_update (information);
-  contact_widget_location_update (information);
+  /* Update self for widgets */
+  contact_widget_contact_update (self);
+  contact_widget_groups_update (self);
+  contact_widget_client_update (self);
 }
 
 static void
-contact_widget_got_contact_cb (TpConnection *connection,
-                               EmpathyContact *contact,
-                               const GError *error,
-                               gpointer user_data,
-                               GObject *weak_object)
+contact_widget_got_contact_cb (GObject *source,
+    GAsyncResult *result,
+    gpointer user_data)
 {
-  EmpathyContactWidget *information = user_data;
+  EmpathyContactWidget *self = user_data;
+  GError *error = NULL;
+  EmpathyContact *contact;
+
+  contact = empathy_client_factory_dup_contact_by_id_finish (
+      EMPATHY_CLIENT_FACTORY (source), result, &error);
 
-  if (error != NULL)
+  if (contact == NULL)
     {
       DEBUG ("Error: %s", error->message);
-      return;
+      g_error_free (error);
+      goto out;
     }
 
-  contact_widget_set_contact (information, contact);
+  contact_widget_set_contact (self, contact);
+
+  g_object_unref (contact);
+out:
+  g_object_unref (self);
 }
 
 static void
-contact_widget_change_contact (EmpathyContactWidget *information)
+contact_widget_change_contact (EmpathyContactWidget *self)
 {
   TpConnection *connection;
+  const gchar *id;
 
   connection = empathy_account_chooser_get_connection (
-      EMPATHY_ACCOUNT_CHOOSER (information->widget_account));
+      EMPATHY_ACCOUNT_CHOOSER (self->priv->widget_account));
   if (!connection)
       return;
 
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
+  id = gtk_entry_get_text (GTK_ENTRY (self->priv->widget_id));
+  if (!EMP_STR_EMPTY (id))
     {
-      const gchar *id;
+      EmpathyClientFactory *factory;
 
-      id = gtk_entry_get_text (GTK_ENTRY (information->widget_id));
-      if (!EMP_STR_EMPTY (id))
-        {
-          empathy_tp_contact_factory_get_from_id (connection, id,
-              contact_widget_got_contact_cb, information, NULL,
-              G_OBJECT (information->vbox_contact_widget));
-        }
-    }
-  else
-    {
-      empathy_tp_contact_factory_get_from_handle (connection,
-          tp_connection_get_self_handle (connection),
-          contact_widget_got_contact_cb, information, NULL,
-          G_OBJECT (information->vbox_contact_widget));
+      factory = empathy_client_factory_dup ();
+
+      empathy_client_factory_dup_contact_by_id_async (factory, connection,
+          id, contact_widget_got_contact_cb, g_object_ref (self));
+
+      g_object_unref (factory);
     }
 }
 
@@ -1551,12 +528,12 @@ static void
 contact_widget_id_changed_cb (GtkEntry *entry,
                               EmpathyContactWidget *self)
 {
-  if (self->widget_id_timeout != 0)
+  if (self->priv->widget_id_timeout != 0)
     {
-      g_source_remove (self->widget_id_timeout);
+      g_source_remove (self->priv->widget_id_timeout);
     }
 
-  self->widget_id_timeout =
+  self->priv->widget_id_timeout =
     g_timeout_add_seconds (ID_CHANGED_TIMEOUT,
         (GSourceFunc) contact_widget_id_activate_timeout, self);
 }
@@ -1564,248 +541,158 @@ contact_widget_id_changed_cb (GtkEntry *entry,
 static gboolean
 contact_widget_id_focus_out_cb (GtkWidget *widget,
                                 GdkEventFocus *event,
-                                EmpathyContactWidget *information)
+                                EmpathyContactWidget *self)
 {
-  contact_widget_change_contact (information);
+  contact_widget_change_contact (self);
   return FALSE;
 }
 
 static void
-contact_widget_contact_setup (EmpathyContactWidget *information)
+contact_widget_contact_setup (EmpathyContactWidget *self)
 {
-  information->label_status = gtk_label_new ("");
-  gtk_label_set_line_wrap_mode (GTK_LABEL (information->label_status),
+  self->priv->label_status = gtk_label_new ("");
+  gtk_label_set_line_wrap_mode (GTK_LABEL (self->priv->label_status),
                                 PANGO_WRAP_WORD_CHAR);
-  gtk_label_set_line_wrap (GTK_LABEL (information->label_status),
+  gtk_label_set_line_wrap (GTK_LABEL (self->priv->label_status),
                            TRUE);
-  gtk_misc_set_alignment (GTK_MISC (information->label_status), 0, 0.5);
-
-  if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP))
-    gtk_label_set_selectable (GTK_LABEL (information->label_status), TRUE);
-
-  gtk_box_pack_start (GTK_BOX (information->hbox_presence),
-        information->label_status, TRUE, TRUE, 0);
-  gtk_widget_show (information->label_status);
-
-  /* Setup account label/chooser */
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
-    {
-      information->widget_account = empathy_account_chooser_new ();
-
-      g_signal_connect_swapped (information->widget_account, "changed",
-            G_CALLBACK (contact_widget_change_contact),
-            information);
-    }
-  else if (information->flags & EMPATHY_CONTACT_WIDGET_NO_ACCOUNT)
-    {
-      /* Don't display the account */
-      gtk_widget_hide (information->label_left_account);
-    }
-  else
-    {
-      /* Pack the protocol icon with the account name in an hbox */
-      information->widget_account = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
-
-      information->label_account = gtk_label_new (NULL);
-      if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
-        gtk_label_set_selectable (GTK_LABEL (information->label_account), TRUE);
-      }
-      gtk_misc_set_alignment (GTK_MISC (information->label_account), 0, 0.5);
-      gtk_widget_show (information->label_account);
-
-      information->image_account = gtk_image_new ();
-      gtk_widget_show (information->image_account);
-
-      gtk_box_pack_start (GTK_BOX (information->widget_account),
-          information->image_account, FALSE, FALSE, 0);
-      gtk_box_pack_start (GTK_BOX (information->widget_account),
-          information->label_account, FALSE, TRUE, 0);
-    }
-
-  if (information->widget_account != NULL)
-    {
-      gtk_grid_attach (GTK_GRID (information->grid_contact),
-          information->widget_account,
-          1, 0, 1, 1);
-
-      gtk_widget_show (information->widget_account);
-    }
-
-  /* Set up avatar chooser/display */
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
-    {
-      information->widget_avatar = empathy_avatar_chooser_new ();
-      g_signal_connect (information->widget_avatar, "changed",
-            G_CALLBACK (contact_widget_avatar_changed_cb),
-            information);
-      if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
-        {
-          g_signal_connect (information->widget_account, "changed",
-              G_CALLBACK (update_avatar_chooser_account_cb),
-              information->widget_avatar);
-          update_avatar_chooser_account_cb (
-              EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
-              EMPATHY_AVATAR_CHOOSER (information->widget_avatar));
-        }
-    }
-  else
-    {
-      information->widget_avatar = empathy_avatar_image_new ();
-
-      g_signal_connect (information->widget_avatar, "popup-menu",
-          G_CALLBACK (widget_avatar_popup_menu_cb), information);
-      g_signal_connect (information->widget_avatar, "button-press-event",
-          G_CALLBACK (widget_avatar_button_press_event_cb), information);
-    }
-
-  gtk_box_pack_start (GTK_BOX (information->vbox_avatar),
-          information->widget_avatar,
+  gtk_misc_set_alignment (GTK_MISC (self->priv->label_status), 0, 0.5);
+
+  gtk_label_set_selectable (GTK_LABEL (self->priv->label_status), TRUE);
+
+  gtk_box_pack_start (GTK_BOX (self->priv->hbox_presence),
+        self->priv->label_status, TRUE, TRUE, 0);
+  gtk_widget_show (self->priv->label_status);
+
+  /* Setup account chooser */
+  self->priv->widget_account = empathy_account_chooser_new ();
+  g_signal_connect_swapped (self->priv->widget_account, "changed",
+        G_CALLBACK (contact_widget_change_contact),
+        self);
+  gtk_grid_attach (GTK_GRID (self->priv->grid_contact),
+      self->priv->widget_account,
+      2, 0, 1, 1);
+  gtk_widget_show (self->priv->widget_account);
+
+  /* Set up avatar display */
+  self->priv->widget_avatar = empathy_avatar_image_new ();
+
+  g_signal_connect (self->priv->widget_avatar, "popup-menu",
+      G_CALLBACK (widget_avatar_popup_menu_cb), self);
+  g_signal_connect (self->priv->widget_avatar, "button-press-event",
+      G_CALLBACK (widget_avatar_button_press_event_cb), self);
+  gtk_box_pack_start (GTK_BOX (self->priv->vbox_avatar),
+          self->priv->widget_avatar,
           FALSE, FALSE,
           6);
-  gtk_widget_show (information->widget_avatar);
-
-  /* Setup id label/entry */
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
-    {
-      information->widget_id = gtk_entry_new ();
-      g_signal_connect (information->widget_id, "focus-out-event",
-            G_CALLBACK (contact_widget_id_focus_out_cb),
-            information);
-      g_signal_connect (information->widget_id, "changed",
-            G_CALLBACK (contact_widget_id_changed_cb),
-            information);
-    }
-  else
-    {
-      information->widget_id = gtk_label_new (NULL);
-      if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
-        gtk_label_set_selectable (GTK_LABEL (information->widget_id), TRUE);
-      }
-      gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5);
-    }
-
-  gtk_grid_attach (GTK_GRID (information->grid_contact), information->widget_id,
-      1, 1, 1, 1);
-
-  gtk_widget_show (information->widget_id);
-
-  /* Setup alias label/entry */
-  if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ALIAS)
-    {
-      information->widget_alias = gtk_entry_new ();
-
-      if (!(information->flags & EMPATHY_CONTACT_WIDGET_NO_SET_ALIAS))
-        g_signal_connect (information->widget_alias, "focus-out-event",
-              G_CALLBACK (contact_widget_entry_alias_focus_event_cb),
-              information);
-
-      /* Make return activate the window default (the Close button) */
-      gtk_entry_set_activates_default (GTK_ENTRY (information->widget_alias),
-          TRUE);
-    }
-  else
-    {
-      information->widget_alias = gtk_label_new (NULL);
-      if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
-        gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE);
-      }
-      gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5);
-    }
+  gtk_widget_show (self->priv->widget_avatar);
+
+  /* Setup id entry */
+  self->priv->widget_id = gtk_entry_new ();
+  g_signal_connect (self->priv->widget_id, "focus-out-event",
+        G_CALLBACK (contact_widget_id_focus_out_cb),
+        self);
+  g_signal_connect (self->priv->widget_id, "changed",
+        G_CALLBACK (contact_widget_id_changed_cb),
+        self);
+  gtk_grid_attach (GTK_GRID (self->priv->grid_contact), self->priv->widget_id,
+      2, 1, 1, 1);
+  gtk_widget_set_hexpand (self->priv->widget_id, TRUE);
+
+  gtk_widget_show (self->priv->widget_id);
+
+  /* Setup alias entry */
+  self->priv->widget_alias = gtk_entry_new ();
+
+  g_signal_connect (self->priv->widget_alias, "focus-out-event",
+        G_CALLBACK (contact_widget_entry_alias_focus_event_cb),
+        self);
+
+  /* Make return activate the window default (the Close button) */
+  gtk_entry_set_activates_default (GTK_ENTRY (self->priv->widget_alias),
+      TRUE);
 
-  gtk_grid_attach (GTK_GRID (information->grid_contact),
-      information->widget_alias, 1, 2, 1, 1);
+  gtk_grid_attach (GTK_GRID (self->priv->grid_contact),
+      self->priv->widget_alias, 2, 2, 1, 1);
+  gtk_widget_set_hexpand (self->priv->widget_alias, TRUE);
 
-  if (information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) {
-    gtk_label_set_selectable (GTK_LABEL (information->label_status), FALSE);
-  }
-  gtk_widget_show (information->widget_alias);
+  gtk_label_set_selectable (GTK_LABEL (self->priv->label_status), FALSE);
+  gtk_widget_show (self->priv->widget_alias);
 }
 
 static void
-contact_widget_destroy_cb (GtkWidget *widget,
-                           EmpathyContactWidget *information)
+empathy_contact_widget_finalize (GObject *object)
 {
-  contact_widget_remove_contact (information);
+  EmpathyContactWidget *self = EMPATHY_CONTACT_WIDGET (object);
+  void (*chain_up) (GObject *) =
+      ((GObjectClass *) empathy_contact_widget_parent_class)->finalize;
 
-  if (information->widget_id_timeout != 0)
+  contact_widget_remove_contact (self);
+
+  if (self->priv->widget_id_timeout != 0)
     {
-      g_source_remove (information->widget_id_timeout);
+      g_source_remove (self->priv->widget_id_timeout);
     }
 
-  g_slice_free (EmpathyContactWidget, information);
+
+  if (chain_up != NULL)
+    chain_up (object);
 }
 
 /**
  * empathy_contact_widget_new:
  * @contact: an #EmpathyContact
- * @flags: #EmpathyContactWidgetFlags for the new contact widget
  *
  * Creates a new #EmpathyContactWidget.
  *
  * Return value: a new #EmpathyContactWidget
  */
 GtkWidget *
-empathy_contact_widget_new (EmpathyContact *contact,
-                            EmpathyContactWidgetFlags flags)
+empathy_contact_widget_new (EmpathyContact *contact)
 {
-  EmpathyContactWidget *information;
-  GtkBuilder *gui;
+  EmpathyContactWidget *self;
   gchar *filename;
+  GtkWidget *main_vbox;
+  GtkBuilder *gui;
 
   g_return_val_if_fail (contact == NULL || EMPATHY_IS_CONTACT (contact), NULL);
 
-  information = g_slice_new0 (EmpathyContactWidget);
-  information->flags = flags;
+  self = g_object_new (EMPATHY_TYPE_CONTACT_WIDGET, NULL);
 
   filename = empathy_file_lookup ("empathy-contact-widget.ui",
       "libempathy-gtk");
   gui = empathy_builder_get_file (filename,
-       "vbox_contact_widget", &information->vbox_contact_widget,
-       "hbox_presence", &information->hbox_presence,
-       "label_alias", &information->label_alias,
-       "image_state", &information->image_state,
-       "grid_contact", &information->grid_contact,
-       "vbox_avatar", &information->vbox_avatar,
-       "vbox_location", &information->vbox_location,
-       "subvbox_location", &information->subvbox_location,
-       "label_location", &information->label_location,
-#ifdef HAVE_LIBCHAMPLAIN
-       "viewport_map", &information->viewport_map,
-#endif
-       "groups_widget", &information->groups_widget,
-       "vbox_details", &information->vbox_details,
-       "grid_details", &information->grid_details,
-       "hbox_details_requested", &information->hbox_details_requested,
-       "vbox_client", &information->vbox_client,
-       "grid_client", &information->grid_client,
-       "hbox_client_requested", &information->hbox_client_requested,
-       "label_details", &information->label_details,
-       "label_left_account", &information->label_left_account,
+       "vbox_contact_widget", &main_vbox,
+       "hbox_presence", &self->priv->hbox_presence,
+       "label_alias", &self->priv->label_alias,
+       "image_state", &self->priv->image_state,
+       "grid_contact", &self->priv->grid_contact,
+       "vbox_avatar", &self->priv->vbox_avatar,
+       "groups_widget", &self->priv->groups_widget,
+       "vbox_client", &self->priv->vbox_client,
+       "grid_client", &self->priv->grid_client,
+       "hbox_client_requested", &self->priv->hbox_client_requested,
+       "label_details", &self->priv->label_details,
+       "label_left_account", &self->priv->label_left_account,
        NULL);
   g_free (filename);
 
-  empathy_builder_connect (gui, information,
-      "vbox_contact_widget", "destroy", contact_widget_destroy_cb,
-      NULL);
-  information->grid_location = NULL;
-
-  g_object_set_data (G_OBJECT (information->vbox_contact_widget),
-      "EmpathyContactWidget",
-      information);
+  gtk_container_add (GTK_CONTAINER (self), main_vbox);
+  gtk_widget_show (GTK_WIDGET (main_vbox));
 
   /* Create widgets */
-  contact_widget_contact_setup (information);
-  contact_widget_details_setup (information);
-  contact_widget_client_setup (information);
+  contact_widget_contact_setup (self);
+  contact_widget_client_setup (self);
+
+  gtk_widget_hide (self->priv->label_details);
 
   if (contact != NULL)
-    contact_widget_set_contact (information, contact);
-  else if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT ||
-      information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
-    contact_widget_change_contact (information);
+    contact_widget_set_contact (self, contact);
+  else
+    contact_widget_change_contact (self);
 
-  return empathy_builder_unref_and_keep_widget (gui,
-    information->vbox_contact_widget);
+  g_object_unref (gui);
+
+  return GTK_WIDGET (self);
 }
 
 /**
@@ -1819,29 +706,17 @@ empathy_contact_widget_new (EmpathyContact *contact,
 EmpathyContact *
 empathy_contact_widget_get_contact (GtkWidget *widget)
 {
-  EmpathyContactWidget *information;
-
-  g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
+  EmpathyContactWidget *self = EMPATHY_CONTACT_WIDGET (widget);
 
-  information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
-  if (!information)
-      return NULL;
-
-  return information->contact;
+  return self->priv->contact;
 }
 
 const gchar *
 empathy_contact_widget_get_alias (GtkWidget *widget)
 {
-  EmpathyContactWidget *information;
-
-  g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
-
-  information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
-  if (!information)
-      return NULL;
+  EmpathyContactWidget *self = EMPATHY_CONTACT_WIDGET (widget);
 
-  return gtk_entry_get_text (GTK_ENTRY (information->widget_alias));
+  return gtk_entry_get_text (GTK_ENTRY (self->priv->widget_alias));
 }
 
 /**
@@ -1855,16 +730,11 @@ void
 empathy_contact_widget_set_contact (GtkWidget *widget,
                                     EmpathyContact *contact)
 {
-  EmpathyContactWidget *information;
+  EmpathyContactWidget *self = EMPATHY_CONTACT_WIDGET (widget);
 
-  g_return_if_fail (GTK_IS_WIDGET (widget));
   g_return_if_fail (EMPATHY_IS_CONTACT (contact));
 
-  information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
-  if (!information)
-    return;
-
-  contact_widget_set_contact (information, contact);
+  contact_widget_set_contact (self, contact);
 }
 
 /**
@@ -1882,17 +752,28 @@ empathy_contact_widget_set_account_filter (
     EmpathyAccountChooserFilterFunc filter,
     gpointer user_data)
 {
-  EmpathyContactWidget *information;
+  EmpathyContactWidget *self = EMPATHY_CONTACT_WIDGET (widget);
   EmpathyAccountChooser *chooser;
 
-  g_return_if_fail (GTK_IS_WIDGET (widget));
-
-  information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
-  if (!information)
-    return;
-
-  chooser = EMPATHY_ACCOUNT_CHOOSER (information->widget_account);
+  chooser = EMPATHY_ACCOUNT_CHOOSER (self->priv->widget_account);
   if (chooser)
       empathy_account_chooser_set_filter (chooser, filter, user_data);
 }
 
+static void
+empathy_contact_widget_class_init (
+    EmpathyContactWidgetClass *klass)
+{
+  GObjectClass *oclass = G_OBJECT_CLASS (klass);
+
+  oclass->finalize = empathy_contact_widget_finalize;
+
+  g_type_class_add_private (klass, sizeof (EmpathyContactWidgetPriv));
+}
+
+static void
+empathy_contact_widget_init (EmpathyContactWidget *self)
+{
+  self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
+      EMPATHY_TYPE_CONTACT_WIDGET, EmpathyContactWidgetPriv);
+}