]> git.0d.be Git - empathy.git/blobdiff - src/empathy-debug-dialog.c
Merge branch 'debugger'
[empathy.git] / src / empathy-debug-dialog.c
index 8c83d09c770bba5094c9f8b7fa8342b8c8174772..cd0d925f9447be22af68f68212cfa32354073471 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <glib/gi18n.h>
 #include <gtk/gtk.h>
+#include <gio/gio.h>
 
 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
 #include <libempathy/empathy-debug.h>
@@ -31,6 +32,7 @@
 
 #include <telepathy-glib/dbus.h>
 #include <telepathy-glib/util.h>
+#include <telepathy-glib/proxy-subclass.h>
 
 #include "extensions/extensions.h"
 
@@ -41,31 +43,62 @@ G_DEFINE_TYPE (EmpathyDebugDialog, empathy_debug_dialog,
 
 enum
 {
-  PROP_0,
-  PROP_PARENT
+  COL_DEBUG_TIMESTAMP = 0,
+  COL_DEBUG_DOMAIN,
+  COL_DEBUG_CATEGORY,
+  COL_DEBUG_LEVEL_STRING,
+  COL_DEBUG_MESSAGE,
+  COL_DEBUG_LEVEL_VALUE,
+  NUM_DEBUG_COLS
 };
 
 enum
 {
-  COL_TIMESTAMP = 0,
-  COL_DOMAIN,
-  COL_CATEGORY,
-  COL_LEVEL,
-  COL_MESSAGE,
-  NUM_COLS
+  COL_CM_NAME = 0,
+  COL_CM_UNIQUE_NAME,
+  NUM_COLS_CM
+};
+
+enum
+{
+  COL_LEVEL_NAME,
+  COL_LEVEL_VALUE,
+  NUM_COLS_LEVEL
 };
 
 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyDebugDialog)
 typedef struct
 {
-  GtkWidget *filter;
-  GtkWindow *parent;
-  GtkWidget *view;
+  /* Toolbar items */
   GtkWidget *cm_chooser;
+  GtkToolItem *save_button;
+  GtkToolItem *copy_button;
+  GtkToolItem *clear_button;
+  GtkToolItem *pause_button;
+  GtkToolItem *level_label;
+  GtkWidget *level_filter;
+
+  /* TreeView */
   GtkListStore *store;
+  GtkTreeModel *store_filter;
+  GtkWidget *view;
+  GtkWidget *scrolled_win;
+  GtkWidget *not_supported_label;
+  gboolean view_visible;
+
+  /* Connection */
+  TpDBusDaemon *dbus;
   TpProxy *proxy;
-  TpProxySignalConnection *signal_connection;
+  TpProxySignalConnection *new_debug_message_signal;
+  TpProxySignalConnection *name_owner_changed_signal;
+
+  /* Whether NewDebugMessage will be fired */
   gboolean paused;
+
+  /* CM chooser store */
+  GtkListStore *cms;
+
+  /* Misc. */
   gboolean dispose_run;
 } EmpathyDebugDialogPriv;
 
@@ -100,14 +133,15 @@ log_level_to_string (guint level)
 
 static void
 debug_dialog_add_message (EmpathyDebugDialog *debug_dialog,
-                         gdouble timestamp,
-                         const gchar *domain_category,
-                         guint level,
-                         const gchar *message)
+    gdouble timestamp,
+    const gchar *domain_category,
+    guint level,
+    const gchar *message)
 {
   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
   gchar *domain, *category;
   GtkTreeIter iter;
+  gchar *string;
 
   if (g_strrstr (domain_category, "/"))
     {
@@ -119,30 +153,38 @@ debug_dialog_add_message (EmpathyDebugDialog *debug_dialog,
   else
     {
       domain = g_strdup (domain_category);
-      category = "";
+      category = g_strdup ("");
     }
 
+  if (g_str_has_suffix (message, "\n"))
+    string = g_strchomp (g_strdup (message));
+  else
+    string = g_strdup (message);
+
+
   gtk_list_store_append (priv->store, &iter);
   gtk_list_store_set (priv->store, &iter,
-                     COL_TIMESTAMP, timestamp,
-                     COL_DOMAIN, domain,
-                     COL_CATEGORY, category,
-                     COL_LEVEL, log_level_to_string (level),
-                     COL_MESSAGE, message,
-                     -1);
-
+      COL_DEBUG_TIMESTAMP, timestamp,
+      COL_DEBUG_DOMAIN, domain,
+      COL_DEBUG_CATEGORY, category,
+      COL_DEBUG_LEVEL_STRING, log_level_to_string (level),
+      COL_DEBUG_MESSAGE, string,
+      COL_DEBUG_LEVEL_VALUE, level,
+      -1);
+
+  g_free (string);
   g_free (domain);
   g_free (category);
 }
 
 static void
 debug_dialog_new_debug_message_cb (TpProxy *proxy,
-                                  gdouble timestamp,
-                                  const gchar *domain,
-                                  guint level,
-                                  const gchar *message,
-                                  gpointer user_data,
-                                  GObject *weak_object)
+    gdouble timestamp,
+    const gchar *domain,
+    guint level,
+    const gchar *message,
+    gpointer user_data,
+    GObject *weak_object)
 {
   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
 
@@ -152,7 +194,7 @@ debug_dialog_new_debug_message_cb (TpProxy *proxy,
 
 static void
 debug_dialog_set_enabled (EmpathyDebugDialog *debug_dialog,
-                         gboolean enabled)
+    gboolean enabled)
 {
   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
   GValue *val;
@@ -165,12 +207,44 @@ debug_dialog_set_enabled (EmpathyDebugDialog *debug_dialog,
   tp_g_value_slice_free (val);
 }
 
+static void
+debug_dialog_set_toolbar_sensitivity (EmpathyDebugDialog *debug_dialog,
+    gboolean sensitive)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+  GtkWidget *vbox = GTK_DIALOG (debug_dialog)->vbox;
+
+  gtk_widget_set_sensitive (GTK_WIDGET (priv->save_button), sensitive);
+  gtk_widget_set_sensitive (GTK_WIDGET (priv->copy_button), sensitive);
+  gtk_widget_set_sensitive (GTK_WIDGET (priv->clear_button), sensitive);
+  gtk_widget_set_sensitive (GTK_WIDGET (priv->pause_button), sensitive);
+  gtk_widget_set_sensitive (GTK_WIDGET (priv->level_label), sensitive);
+  gtk_widget_set_sensitive (GTK_WIDGET (priv->level_filter), sensitive);
+  gtk_widget_set_sensitive (GTK_WIDGET (priv->view), sensitive);
+
+  if (sensitive && !priv->view_visible)
+    {
+      /* Add view and remove label */
+      gtk_container_remove (GTK_CONTAINER (vbox), priv->not_supported_label);
+      gtk_box_pack_start (GTK_BOX (vbox), priv->scrolled_win, TRUE, TRUE, 0);
+      priv->view_visible = TRUE;
+    }
+  else if (!sensitive && priv->view_visible)
+    {
+      /* Add label and remove view */
+      gtk_container_remove (GTK_CONTAINER (vbox), priv->scrolled_win);
+      gtk_box_pack_start (GTK_BOX (vbox), priv->not_supported_label,
+          TRUE, TRUE, 0);
+      priv->view_visible = FALSE;
+    }
+}
+
 static void
 debug_dialog_get_messages_cb (TpProxy *proxy,
-                             const GPtrArray *messages,
-                             const GError *error,
-                             gpointer user_data,
-                             GObject *weak_object)
+    const GPtrArray *messages,
+    const GError *error,
+    gpointer user_data,
+    GObject *weak_object)
 {
   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
@@ -179,22 +253,25 @@ debug_dialog_get_messages_cb (TpProxy *proxy,
   if (error != NULL)
     {
       DEBUG ("GetMessages failed: %s", error->message);
+      debug_dialog_set_toolbar_sensitivity (debug_dialog, FALSE);
       return;
     }
 
+  debug_dialog_set_toolbar_sensitivity (debug_dialog, TRUE);
+
   for (i = 0; i < messages->len; i++)
     {
       GValueArray *values = g_ptr_array_index (messages, i);
 
       debug_dialog_add_message (debug_dialog,
           g_value_get_double (g_value_array_get_nth (values, 0)),
-         g_value_get_string (g_value_array_get_nth (values, 1)),
-         g_value_get_uint (g_value_array_get_nth (values, 2)),
-         g_value_get_string (g_value_array_get_nth (values, 3)));
+          g_value_get_string (g_value_array_get_nth (values, 1)),
+          g_value_get_uint (g_value_array_get_nth (values, 2)),
+          g_value_get_string (g_value_array_get_nth (values, 3)));
     }
 
   /* Connect to NewDebugMessage */
-  priv->signal_connection = emp_cli_debug_connect_to_new_debug_message (
+  priv->new_debug_message_signal = emp_cli_debug_connect_to_new_debug_message (
       proxy, debug_dialog_new_debug_message_cb, debug_dialog,
       NULL, NULL, NULL);
 
@@ -204,67 +281,64 @@ debug_dialog_get_messages_cb (TpProxy *proxy,
 
 static void
 debug_dialog_cm_chooser_changed_cb (GtkComboBox *cm_chooser,
-                                   EmpathyDebugDialog *debug_dialog)
+    EmpathyDebugDialog *debug_dialog)
 {
   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
-  gchar *cm;
   MissionControl *mc;
   TpDBusDaemon *dbus;
   GError *error = NULL;
   gchar *bus_name;
-  TpConnection *connection;
-
-  mc = empathy_mission_control_dup_singleton ();
-  cm = gtk_combo_box_get_active_text (cm_chooser);
+  TpProxy *proxy;
+  GtkTreeIter iter;
 
-  if (cm == NULL)
+  if (!gtk_combo_box_get_active_iter (cm_chooser, &iter))
     {
       DEBUG ("No CM is selected");
-      g_object_unref (mc);
+      if (gtk_tree_model_iter_n_children (
+          GTK_TREE_MODEL (priv->cms), NULL) > 0)
+        {
+          gtk_combo_box_set_active (cm_chooser, 0);
+        }
       return;
     }
 
+  mc = empathy_mission_control_dup_singleton ();
   dbus = tp_dbus_daemon_dup (&error);
 
   if (error != NULL)
     {
       DEBUG ("Failed at duping the dbus daemon: %s", error->message);
-      g_free (cm);
       g_object_unref (mc);
     }
 
-  /* TODO: Fix this. */
-  bus_name = g_strdup_printf ("org.freedesktop.Telepathy.ConnectionManager.%s", cm);
-  g_free (cm);
-
-  connection = tp_connection_new (dbus, bus_name,
-      "/org/freedesktop/Telepathy/debug", &error);
+  gtk_tree_model_get (GTK_TREE_MODEL (priv->cms), &iter,
+      COL_CM_UNIQUE_NAME, &bus_name, -1);
+  proxy = g_object_new (TP_TYPE_PROXY,
+      "bus-name", bus_name,
+      "dbus-daemon", dbus,
+      "object-path", DEBUG_OBJECT_PATH,
+      NULL);
   g_free (bus_name);
 
-  if (error != NULL)
-    {
-      DEBUG ("Getting a new TpConnection failed: %s", error->message);
-      g_error_free (error);
-      g_object_unref (dbus);
-      g_object_unref (mc);
-      return;
-    }
+  gtk_list_store_clear (priv->store);
 
   /* Disable debug signalling */
   if (priv->proxy != NULL)
     debug_dialog_set_enabled (debug_dialog, FALSE);
 
   /* Disconnect from previous NewDebugMessage signal */
-  if (priv->signal_connection)
+  if (priv->new_debug_message_signal != NULL)
     {
-      tp_proxy_signal_connection_disconnect (priv->signal_connection);
-      priv->signal_connection = NULL;
+      tp_proxy_signal_connection_disconnect (priv->new_debug_message_signal);
+      priv->new_debug_message_signal = NULL;
     }
 
-  if (priv->proxy)
+  if (priv->proxy != NULL)
     g_object_unref (priv->proxy);
 
-  priv->proxy = TP_PROXY (connection);
+  priv->proxy = proxy;
+
+  tp_proxy_add_interface_by_id (priv->proxy, emp_iface_quark_debug ());
 
   emp_cli_debug_call_get_messages (priv->proxy, -1,
       debug_dialog_get_messages_cb, debug_dialog, NULL, NULL);
@@ -273,18 +347,109 @@ debug_dialog_cm_chooser_changed_cb (GtkComboBox *cm_chooser,
   g_object_unref (mc);
 }
 
+typedef struct
+{
+  const gchar *unique_name;
+  gboolean found;
+} CmInModelForeachData;
+
+static gboolean
+debug_dialog_cms_foreach (GtkTreeModel *model,
+    GtkTreePath *path,
+    GtkTreeIter *iter,
+    gpointer user_data)
+{
+  CmInModelForeachData *data = (CmInModelForeachData *) user_data;
+  gchar *unique_name;
+
+  gtk_tree_model_get (model, iter,
+      COL_CM_UNIQUE_NAME, &unique_name,
+      -1);
+
+  if (!tp_strdiff (unique_name, data->unique_name))
+    data->found = TRUE;
+
+  g_free (unique_name);
+
+  return data->found;
+}
+
+static gboolean
+debug_dialog_cm_is_in_model (EmpathyDebugDialog *debug_dialog,
+    const gchar *unique_name)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+  CmInModelForeachData *data;
+  gboolean found;
+
+  data = g_slice_new0 (CmInModelForeachData);
+  data->unique_name = unique_name;
+  data->found = FALSE;
+
+  gtk_tree_model_foreach (GTK_TREE_MODEL (priv->cms),
+      debug_dialog_cms_foreach, data);
+
+  found = data->found;
+
+  g_slice_free (CmInModelForeachData, data);
+
+  return found;
+}
+
+typedef struct
+{
+  EmpathyDebugDialog *debug_dialog;
+  gchar *cm_name;
+} FillCmChooserData;
+
+static void
+debug_dialog_get_name_owner_cb (TpDBusDaemon *proxy,
+    const gchar *out,
+    const GError *error,
+    gpointer user_data,
+    GObject *weak_object)
+{
+  FillCmChooserData *data = (FillCmChooserData *) user_data;
+  EmpathyDebugDialogPriv *priv = GET_PRIV (data->debug_dialog);
+
+  if (error != NULL)
+    {
+      DEBUG ("GetNameOwner failed: %s", error->message);
+      goto OUT;
+    }
+
+  if (!debug_dialog_cm_is_in_model (data->debug_dialog, out))
+    {
+      GtkTreeIter iter;
+
+      DEBUG ("Adding CM to list: %s at unique name: %s",
+          data->cm_name, out);
+
+      gtk_list_store_append (priv->cms, &iter);
+      gtk_list_store_set (priv->cms, &iter,
+          COL_CM_NAME, data->cm_name,
+          COL_CM_UNIQUE_NAME, out,
+          -1);
+    }
+
+OUT:
+  g_free (data->cm_name);
+  g_slice_free (FillCmChooserData, data);
+}
+
 static void
 debug_dialog_list_connection_names_cb (const gchar * const *names,
-                                      gsize n,
-                                      const gchar * const *cms,
-                                      const gchar * const *protocols,
-                                      const GError *error,
-                                      gpointer user_data,
-                                      GObject *weak_object)
+    gsize n,
+    const gchar * const *cms,
+    const gchar * const *protocols,
+    const GError *error,
+    gpointer user_data,
+    GObject *weak_object)
 {
   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
-  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
-  int i;
+  guint i;
+  TpDBusDaemon *dbus;
+  GError *error2 = NULL;
 
   if (error != NULL)
     {
@@ -292,22 +457,118 @@ debug_dialog_list_connection_names_cb (const gchar * const *names,
       return;
     }
 
+  dbus = tp_dbus_daemon_dup (&error2);
+
+  if (error2 != NULL)
+    {
+      DEBUG ("Failed to dup TpDBusDaemon.");
+      g_error_free (error2);
+      return;
+    }
+
   for (i = 0; cms[i] != NULL; i++)
-    gtk_combo_box_append_text (GTK_COMBO_BOX (priv->cm_chooser), cms[i]);
+    {
+      FillCmChooserData *data;
 
-  gtk_combo_box_set_active (GTK_COMBO_BOX (priv->cm_chooser), 0);
+      data = g_slice_new0 (FillCmChooserData);
+      data->debug_dialog = debug_dialog;
+      data->cm_name = g_strdup (cms[i]);
 
-  /* Fill treeview */
-  debug_dialog_cm_chooser_changed_cb (GTK_COMBO_BOX (priv->cm_chooser), debug_dialog);
+      tp_cli_dbus_daemon_call_get_name_owner (dbus, -1,
+          names[i], debug_dialog_get_name_owner_cb,
+          data, NULL, NULL);
+    }
+
+  g_object_unref (dbus);
+}
+
+static gboolean
+debug_dialog_remove_cm_foreach (GtkTreeModel *model,
+    GtkTreePath *path,
+    GtkTreeIter *iter,
+    gpointer user_data)
+{
+  const gchar *unique_name_to_remove = (const gchar *) user_data;
+  gchar *name;
+  gboolean found = FALSE;
+
+  gtk_tree_model_get (model, iter, COL_CM_UNIQUE_NAME, &name, -1);
+
+  if (!tp_strdiff (name, unique_name_to_remove))
+    {
+      found = TRUE;
+      gtk_list_store_remove (GTK_LIST_STORE (model), iter);
+    }
+
+  g_free (name);
+
+  return found;
+}
+
+#define CM_WELL_KNOWN_NAME_PREFIX \
+    "org.freedesktop.Telepathy.ConnectionManager."
+
+static void
+debug_dialog_name_owner_changed_cb (TpDBusDaemon *proxy,
+    const gchar *arg0,
+    const gchar *arg1,
+    const gchar *arg2,
+    gpointer user_data,
+    GObject *weak_object)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (user_data);
+
+  /* Wow, I hate all of this code... */
+  if (!g_str_has_prefix (arg0, CM_WELL_KNOWN_NAME_PREFIX))
+    return;
+
+  if (EMP_STR_EMPTY (arg1) && !EMP_STR_EMPTY (arg2))
+    {
+      /* A connection manager joined -- because it's guaranteed
+       * that the CM just joined (because o.fd.Tp.CM.foo
+       * just joined), we don't need to check whether the unique
+       * name is in the CM model. Hooray.
+       */
+      GtkTreeIter iter;
+      const gchar *name = arg0 + strlen (CM_WELL_KNOWN_NAME_PREFIX);
+
+      DEBUG ("Adding new CM '%s' at %s.", name, arg2);
+
+      gtk_list_store_append (priv->cms, &iter);
+      gtk_list_store_set (priv->cms, &iter,
+          COL_CM_NAME, name,
+          COL_CM_UNIQUE_NAME, arg2,
+          -1);
+    }
+  else if (!EMP_STR_EMPTY (arg1) && EMP_STR_EMPTY (arg2))
+    {
+      /* A connection manager died -- because it's guaranteed
+       * that the CM itself just died (because o.fd.Tp.CM.foo
+       * just died), we don't need to check that it was already
+       * in the model.
+       */
+      gchar *to_remove;
+
+      /* Can't pass a const into a GtkTreeModelForeachFunc. */
+      to_remove = g_strdup (arg1);
+
+      DEBUG ("Removing CM from %s.", to_remove);
+
+      gtk_tree_model_foreach (GTK_TREE_MODEL (priv->cms),
+          debug_dialog_remove_cm_foreach, to_remove);
+
+      g_free (to_remove);
+    }
 }
 
 static void
 debug_dialog_fill_cm_chooser (EmpathyDebugDialog *debug_dialog)
 {
-  TpDBusDaemon *dbus;
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
   GError *error = NULL;
+  GtkTreeIter iter;
 
-  dbus = tp_dbus_daemon_dup (&error);
+  priv->dbus = tp_dbus_daemon_dup (&error);
 
   if (error != NULL)
     {
@@ -316,15 +577,26 @@ debug_dialog_fill_cm_chooser (EmpathyDebugDialog *debug_dialog)
       return;
     }
 
-  tp_list_connection_names (dbus, debug_dialog_list_connection_names_cb,
+  /* Add empathy */
+  gtk_list_store_append (priv->cms, &iter);
+  gtk_list_store_set (priv->cms, &iter,
+      COL_CM_NAME, "empathy",
+      COL_CM_UNIQUE_NAME, "org.gnome.Empathy",
+      -1);
+  gtk_combo_box_set_active (GTK_COMBO_BOX (priv->cm_chooser), 0);
+
+  /* Add CMs to list */
+  tp_list_connection_names (priv->dbus, debug_dialog_list_connection_names_cb,
       debug_dialog, NULL, NULL);
 
-  g_object_unref (dbus);
+  priv->name_owner_changed_signal =
+      tp_cli_dbus_daemon_connect_to_name_owner_changed (priv->dbus,
+      debug_dialog_name_owner_changed_cb, debug_dialog, NULL, NULL, NULL);
 }
 
 static void
 debug_dialog_pause_toggled_cb (GtkToggleToolButton *pause,
-                              EmpathyDebugDialog *debug_dialog)
+    EmpathyDebugDialog *debug_dialog)
 {
   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
 
@@ -333,10 +605,330 @@ debug_dialog_pause_toggled_cb (GtkToggleToolButton *pause,
   debug_dialog_set_enabled (debug_dialog, !priv->paused);
 }
 
+static gboolean
+debug_dialog_visible_func (GtkTreeModel *model,
+    GtkTreeIter *iter,
+    gpointer user_data)
+{
+  EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+  guint filter_value, level;
+  GtkTreeModel *filter_model;
+  GtkTreeIter filter_iter;
+
+  filter_model = gtk_combo_box_get_model (GTK_COMBO_BOX (priv->level_filter));
+  gtk_combo_box_get_active_iter (GTK_COMBO_BOX (priv->level_filter),
+      &filter_iter);
+
+  gtk_tree_model_get (model, iter, COL_DEBUG_LEVEL_VALUE, &level, -1);
+  gtk_tree_model_get (filter_model, &filter_iter,
+      COL_LEVEL_VALUE, &filter_value, -1);
+
+  if (level <= filter_value)
+    return TRUE;
+
+  return FALSE;
+}
+
+static void
+debug_dialog_filter_changed_cb (GtkComboBox *filter,
+    EmpathyDebugDialog *debug_dialog)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+
+  gtk_tree_model_filter_refilter (
+      GTK_TREE_MODEL_FILTER (priv->store_filter));
+}
+
+static void
+debug_dialog_clear_clicked_cb (GtkToolButton *clear_button,
+    EmpathyDebugDialog *debug_dialog)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+
+  gtk_list_store_clear (priv->store);
+}
+
+static void
+debug_dialog_menu_copy_activate_cb (GtkMenuItem *menu_item,
+    EmpathyDebugDialog *debug_dialog)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+  GtkTreePath *path;
+  GtkTreeViewColumn *focus_column;
+  GtkTreeIter iter;
+  gchar *message;
+  GtkClipboard *clipboard;
+
+  gtk_tree_view_get_cursor (GTK_TREE_VIEW (priv->view),
+      &path, &focus_column);
+
+  if (path == NULL)
+    {
+      DEBUG ("No row is in focus");
+      return;
+    }
+
+  gtk_tree_model_get_iter (priv->store_filter, &iter, path);
+
+  gtk_tree_model_get (priv->store_filter, &iter,
+      COL_DEBUG_MESSAGE, &message,
+      -1);
+
+  if (EMP_STR_EMPTY (message))
+    {
+      DEBUG ("Log message is empty");
+      return;
+    }
+
+  clipboard = gtk_clipboard_get_for_display (
+      gtk_widget_get_display (GTK_WIDGET (menu_item)),
+      GDK_SELECTION_CLIPBOARD);
+
+  gtk_clipboard_set_text (clipboard, message, -1);
+
+  g_free (message);
+}
+
+typedef struct
+{
+  EmpathyDebugDialog *debug_dialog;
+  guint button;
+  guint32 time;
+} MenuPopupData;
+
+static gboolean
+debug_dialog_show_menu (gpointer user_data)
+{
+  MenuPopupData *data = (MenuPopupData *) user_data;
+  GtkWidget *menu, *item;
+  GtkMenuShell *shell;
+
+  menu = gtk_menu_new ();
+  shell = GTK_MENU_SHELL (menu);
+
+  item = gtk_image_menu_item_new_from_stock (GTK_STOCK_COPY, NULL);
+
+  g_signal_connect (item, "activate",
+      G_CALLBACK (debug_dialog_menu_copy_activate_cb), data->debug_dialog);
+
+  gtk_menu_shell_append (shell, item);
+  gtk_widget_show (item);
+
+  gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
+     data->button, data->time);
+
+  g_slice_free (MenuPopupData, user_data);
+
+  return FALSE;
+}
+
+static gboolean
+debug_dialog_button_press_event_cb (GtkTreeView *view,
+    GdkEventButton *event,
+    gpointer user_data)
+{
+  /* A mouse button was pressed on the tree view. */
+
+  if (event->button == 3)
+    {
+      /* The tree view was right-clicked. (3 == third mouse button) */
+      MenuPopupData *data;
+      data = g_slice_new0 (MenuPopupData);
+      data->debug_dialog = user_data;
+      data->button = event->button;
+      data->time = event->time;
+      g_idle_add (debug_dialog_show_menu, data);
+    }
+
+  return FALSE;
+}
+
+static gboolean
+debug_dialog_store_filter_foreach (GtkTreeModel *model,
+    GtkTreePath *path,
+    GtkTreeIter *iter,
+    gpointer user_data)
+{
+  GFileOutputStream *output_stream = (GFileOutputStream *) user_data;
+  gchar *domain, *category, *message, *level_str, *level_upper;
+  gdouble timestamp;
+  gchar *line;
+  GError *error = NULL;
+  gboolean out = FALSE;
+
+  gtk_tree_model_get (model, iter,
+      COL_DEBUG_TIMESTAMP, &timestamp,
+      COL_DEBUG_DOMAIN, &domain,
+      COL_DEBUG_CATEGORY, &category,
+      COL_DEBUG_LEVEL_STRING, &level_str,
+      COL_DEBUG_MESSAGE, &message,
+      -1);
+
+  level_upper = g_ascii_strup (level_str, -1);
+
+  line = g_strdup_printf ("%s%s%s-%s: %e: %s\n",
+      domain, EMP_STR_EMPTY (category) ? "" : "/",
+      category, level_upper, timestamp, message);
+
+  g_output_stream_write (G_OUTPUT_STREAM (output_stream), line,
+      strlen (line), NULL, &error);
+
+  if (error != NULL)
+    {
+      DEBUG ("Failed to write to file: %s", error->message);
+      g_error_free (error);
+      out = TRUE;
+    }
+
+  g_free (line);
+  g_free (level_upper);
+  g_free (level_str);
+  g_free (domain);
+  g_free (category);
+  g_free (message);
+
+  return out;
+}
+
+static void
+debug_dialog_save_file_chooser_response_cb (GtkDialog *dialog,
+    gint response_id,
+    EmpathyDebugDialog *debug_dialog)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+  gchar *filename = NULL;
+  GFile *gfile = NULL;
+  GFileOutputStream *output_stream = NULL;
+  GError *error = NULL;
+
+  if (response_id != GTK_RESPONSE_ACCEPT)
+    goto OUT;
+
+  filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
+
+  DEBUG ("Saving log as %s", filename);
+
+  gfile = g_file_new_for_path (filename);
+  output_stream = g_file_replace (gfile, NULL, FALSE,
+      G_FILE_CREATE_NONE, NULL, &error);
+
+  if (error != NULL)
+    {
+      DEBUG ("Failed to open file for writing: %s", error->message);
+      g_error_free (error);
+      goto OUT;
+    }
+
+  gtk_tree_model_foreach (priv->store_filter,
+      debug_dialog_store_filter_foreach, output_stream);
+
+OUT:
+  if (gfile != NULL)
+    g_object_unref (gfile);
+
+  if (output_stream != NULL)
+    g_object_unref (output_stream);
+
+  if (filename != NULL)
+    g_free (filename);
+
+  gtk_widget_destroy (GTK_WIDGET (dialog));
+}
+
+static void
+debug_dialog_save_clicked_cb (GtkToolButton *tool_button,
+    EmpathyDebugDialog *debug_dialog)
+{
+  GtkWidget *file_chooser;
+
+  file_chooser = gtk_file_chooser_dialog_new (_("Save"),
+      GTK_WINDOW (debug_dialog), GTK_FILE_CHOOSER_ACTION_SAVE,
+      GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
+      GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
+      NULL);
+
+  gtk_window_set_modal (GTK_WINDOW (file_chooser), TRUE);
+  gtk_file_chooser_set_do_overwrite_confirmation (
+      GTK_FILE_CHOOSER (file_chooser), TRUE);
+
+  g_signal_connect (file_chooser, "response",
+      G_CALLBACK (debug_dialog_save_file_chooser_response_cb),
+      debug_dialog);
+
+  gtk_widget_show (file_chooser);
+}
+
+static gboolean
+debug_dialog_copy_model_foreach (GtkTreeModel *model,
+    GtkTreePath *path,
+    GtkTreeIter *iter,
+    gpointer user_data)
+{
+  gchar **text = (gchar **) user_data;
+  gchar *tmp;
+  gchar *domain, *category, *message, *level_str, *level_upper;
+  gdouble timestamp;
+  gchar *line;
+
+  gtk_tree_model_get (model, iter,
+      COL_DEBUG_TIMESTAMP, &timestamp,
+      COL_DEBUG_DOMAIN, &domain,
+      COL_DEBUG_CATEGORY, &category,
+      COL_DEBUG_LEVEL_STRING, &level_str,
+      COL_DEBUG_MESSAGE, &message,
+      -1);
+
+  level_upper = g_ascii_strup (level_str, -1);
+
+  line = g_strdup_printf ("%s%s%s-%s: %e: %s\n",
+      domain, EMP_STR_EMPTY (category) ? "" : "/",
+      category, level_upper, timestamp, message);
+
+  tmp = g_strconcat (*text, line, NULL);
+
+  g_free (*text);
+  g_free (line);
+  g_free (level_upper);
+  g_free (level_str);
+  g_free (domain);
+  g_free (category);
+  g_free (message);
+
+  *text = tmp;
+
+  return FALSE;
+}
+
+static void
+debug_dialog_copy_clicked_cb (GtkToolButton *tool_button,
+    EmpathyDebugDialog *debug_dialog)
+{
+  EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
+  GtkClipboard *clipboard;
+  gchar *text;
+
+  text = g_strdup ("");
+
+  gtk_tree_model_foreach (priv->store_filter,
+      debug_dialog_copy_model_foreach, &text);
+
+  clipboard = gtk_clipboard_get_for_display (
+      gtk_widget_get_display (GTK_WIDGET (tool_button)),
+      GDK_SELECTION_CLIPBOARD);
+
+  DEBUG ("Copying text to clipboard (length: %" G_GSIZE_FORMAT ")",
+      strlen (text));
+
+  gtk_clipboard_set_text (clipboard, text, -1);
+
+  g_free (text);
+}
+
 static GObject *
 debug_dialog_constructor (GType type,
-                          guint n_construct_params,
-                          GObjectConstructParam *construct_params)
+    guint n_construct_params,
+    GObjectConstructParam *construct_params)
 {
   GObject *object;
   EmpathyDebugDialogPriv *priv;
@@ -346,7 +938,8 @@ debug_dialog_constructor (GType type,
   GtkWidget *label;
   GtkToolItem *item;
   GtkCellRenderer *renderer;
-  GtkWidget *scrolled_win;
+  GtkListStore *level_store;
+  GtkTreeIter iter;
 
   object = G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->constructor
     (type, n_construct_params, construct_params);
@@ -354,27 +947,29 @@ debug_dialog_constructor (GType type,
 
   gtk_window_set_title (GTK_WINDOW (object), _("Debug Window"));
   gtk_window_set_default_size (GTK_WINDOW (object), 800, 400);
-  gtk_window_set_transient_for (GTK_WINDOW (object), priv->parent);
 
   vbox = GTK_DIALOG (object)->vbox;
 
   toolbar = gtk_toolbar_new ();
   gtk_toolbar_set_style (GTK_TOOLBAR (toolbar), GTK_TOOLBAR_BOTH_HORIZ);
   gtk_toolbar_set_show_arrow (GTK_TOOLBAR (toolbar), TRUE);
-  gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar), GTK_ICON_SIZE_SMALL_TOOLBAR);
+  gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar),
+      GTK_ICON_SIZE_SMALL_TOOLBAR);
   gtk_widget_show (toolbar);
 
   gtk_box_pack_start (GTK_BOX (vbox), toolbar, FALSE, FALSE, 0);
 
   /* CM */
   priv->cm_chooser = gtk_combo_box_new_text ();
+  priv->cms = gtk_list_store_new (NUM_COLS_CM, G_TYPE_STRING, G_TYPE_STRING);
+  gtk_combo_box_set_model (GTK_COMBO_BOX (priv->cm_chooser),
+      GTK_TREE_MODEL (priv->cms));
   gtk_widget_show (priv->cm_chooser);
 
   item = gtk_tool_item_new ();
   gtk_widget_show (GTK_WIDGET (item));
   gtk_container_add (GTK_CONTAINER (item), priv->cm_chooser);
   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
-  debug_dialog_fill_cm_chooser (EMPATHY_DEBUG_DIALOG (object));
   g_signal_connect (priv->cm_chooser, "changed",
       G_CALLBACK (debug_dialog_cm_chooser_changed_cb), object);
   gtk_widget_show (GTK_WIDGET (priv->cm_chooser));
@@ -384,16 +979,28 @@ debug_dialog_constructor (GType type,
   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
 
   /* Save */
-  item = gtk_tool_button_new_from_stock (GTK_STOCK_SAVE);
-  gtk_widget_show (GTK_WIDGET (item));
-  gtk_tool_item_set_is_important (GTK_TOOL_ITEM (item), TRUE);
-  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
+  priv->save_button = gtk_tool_button_new_from_stock (GTK_STOCK_SAVE);
+  g_signal_connect (priv->save_button, "clicked",
+      G_CALLBACK (debug_dialog_save_clicked_cb), object);
+  gtk_widget_show (GTK_WIDGET (priv->save_button));
+  gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->save_button), TRUE);
+  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->save_button, -1);
+
+  /* Copy */
+  priv->copy_button = gtk_tool_button_new_from_stock (GTK_STOCK_COPY);
+  g_signal_connect (priv->copy_button, "clicked",
+      G_CALLBACK (debug_dialog_copy_clicked_cb), object);
+  gtk_widget_show (GTK_WIDGET (priv->copy_button));
+  gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->copy_button), TRUE);
+  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->copy_button, -1);
 
   /* Clear */
-  item = gtk_tool_button_new_from_stock (GTK_STOCK_CLEAR);
-  gtk_widget_show (GTK_WIDGET (item));
-  gtk_tool_item_set_is_important (GTK_TOOL_ITEM (item), TRUE);
-  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
+  priv->clear_button = gtk_tool_button_new_from_stock (GTK_STOCK_CLEAR);
+  g_signal_connect (priv->clear_button, "clicked",
+      G_CALLBACK (debug_dialog_clear_clicked_cb), object);
+  gtk_widget_show (GTK_WIDGET (priv->clear_button));
+  gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->clear_button), TRUE);
+  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->clear_button, -1);
 
   item = gtk_separator_tool_item_new ();
   gtk_widget_show (GTK_WIDGET (item));
@@ -401,81 +1008,144 @@ debug_dialog_constructor (GType type,
 
   /* Pause */
   priv->paused = FALSE;
-  image = gtk_image_new_from_stock (GTK_STOCK_MEDIA_PAUSE, GTK_ICON_SIZE_MENU);
+  image = gtk_image_new_from_stock (GTK_STOCK_MEDIA_PAUSE,
+      GTK_ICON_SIZE_MENU);
   gtk_widget_show (image);
-  item = gtk_toggle_tool_button_new ();
-  gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (item), priv->paused);
-  g_signal_connect (item, "toggled", G_CALLBACK (debug_dialog_pause_toggled_cb),
-      object);
-  gtk_widget_show (GTK_WIDGET (item));
-  gtk_tool_item_set_is_important (GTK_TOOL_ITEM (item), TRUE);
-  gtk_tool_button_set_label (GTK_TOOL_BUTTON (item), _("Pause"));
-  gtk_tool_button_set_icon_widget (GTK_TOOL_BUTTON (item), image);
-  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
+  priv->pause_button = gtk_toggle_tool_button_new ();
+  gtk_toggle_tool_button_set_active (
+      GTK_TOGGLE_TOOL_BUTTON (priv->pause_button), priv->paused);
+  g_signal_connect (priv->pause_button, "toggled",
+      G_CALLBACK (debug_dialog_pause_toggled_cb), object);
+  gtk_widget_show (GTK_WIDGET (priv->pause_button));
+  gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->pause_button), TRUE);
+  gtk_tool_button_set_label (GTK_TOOL_BUTTON (priv->pause_button), _("Pause"));
+  gtk_tool_button_set_icon_widget (
+      GTK_TOOL_BUTTON (priv->pause_button), image);
+  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->pause_button, -1);
 
   item = gtk_separator_tool_item_new ();
   gtk_widget_show (GTK_WIDGET (item));
   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
 
   /* Level */
-  item = gtk_tool_item_new ();
-  gtk_widget_show (GTK_WIDGET (item));
+  priv->level_label = gtk_tool_item_new ();
+  gtk_widget_show (GTK_WIDGET (priv->level_label));
   label = gtk_label_new (_("Level "));
   gtk_widget_show (label);
-  gtk_container_add (GTK_CONTAINER (item), label);
-  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
+  gtk_container_add (GTK_CONTAINER (priv->level_label), label);
+  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->level_label, -1);
 
-  priv->filter = gtk_combo_box_new_text ();
-  gtk_widget_show (priv->filter);
+  priv->level_filter = gtk_combo_box_new_text ();
+  gtk_widget_show (priv->level_filter);
 
   item = gtk_tool_item_new ();
   gtk_widget_show (GTK_WIDGET (item));
-  gtk_container_add (GTK_CONTAINER (item), priv->filter);
+  gtk_container_add (GTK_CONTAINER (item), priv->level_filter);
   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
 
-  gtk_combo_box_append_text (GTK_COMBO_BOX (priv->filter), _("All"));
-  gtk_combo_box_append_text (GTK_COMBO_BOX (priv->filter), _("Debug"));
-  gtk_combo_box_append_text (GTK_COMBO_BOX (priv->filter), _("Info"));
-  gtk_combo_box_append_text (GTK_COMBO_BOX (priv->filter), _("Message"));
-  gtk_combo_box_append_text (GTK_COMBO_BOX (priv->filter), _("Warning"));
-  gtk_combo_box_append_text (GTK_COMBO_BOX (priv->filter), _("Critical"));
-  gtk_combo_box_append_text (GTK_COMBO_BOX (priv->filter), _("Error"));
-
-  gtk_combo_box_set_active (GTK_COMBO_BOX (priv->filter), 0);
-  gtk_widget_show (GTK_WIDGET (priv->filter));
+  level_store = gtk_list_store_new (NUM_COLS_LEVEL,
+      G_TYPE_STRING, G_TYPE_UINT);
+  gtk_combo_box_set_model (GTK_COMBO_BOX (priv->level_filter),
+      GTK_TREE_MODEL (level_store));
+
+  gtk_list_store_append (level_store, &iter);
+  gtk_list_store_set (level_store, &iter,
+      COL_LEVEL_NAME, _("Debug"),
+      COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_DEBUG,
+      -1);
+
+  gtk_list_store_append (level_store, &iter);
+  gtk_list_store_set (level_store, &iter,
+      COL_LEVEL_NAME, _("Info"),
+      COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_INFO,
+      -1);
+
+  gtk_list_store_append (level_store, &iter);
+  gtk_list_store_set (level_store, &iter,
+      COL_LEVEL_NAME, _("Message"),
+      COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_MESSAGE,
+      -1);
+
+  gtk_list_store_append (level_store, &iter);
+  gtk_list_store_set (level_store, &iter,
+      COL_LEVEL_NAME, _("Warning"),
+      COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_WARNING,
+      -1);
+
+  gtk_list_store_append (level_store, &iter);
+  gtk_list_store_set (level_store, &iter,
+      COL_LEVEL_NAME, _("Critical"),
+      COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_CRITICAL,
+      -1);
+
+  gtk_list_store_append (level_store, &iter);
+  gtk_list_store_set (level_store, &iter,
+      COL_LEVEL_NAME, _("Error"),
+      COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_ERROR,
+      -1);
+
+  gtk_combo_box_set_active (GTK_COMBO_BOX (priv->level_filter), 0);
+  g_signal_connect (priv->level_filter, "changed",
+      G_CALLBACK (debug_dialog_filter_changed_cb), object);
 
   /* Debug treeview */
   priv->view = gtk_tree_view_new ();
+  gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (priv->view), TRUE);
+
+  g_signal_connect (priv->view, "button-press-event",
+      G_CALLBACK (debug_dialog_button_press_event_cb), object);
 
   renderer = gtk_cell_renderer_text_new ();
+  g_object_set (renderer, "yalign", 0, NULL);
 
   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
-      -1, _("Time"), renderer, "text", COL_TIMESTAMP, NULL);
+      -1, _("Time"), renderer, "text", COL_DEBUG_TIMESTAMP, NULL);
   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
-      -1, _("Domain"), renderer, "text", COL_DOMAIN, NULL);
+      -1, _("Domain"), renderer, "text", COL_DEBUG_DOMAIN, NULL);
   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
-      -1, _("Category"), renderer, "text", COL_CATEGORY, NULL);
+      -1, _("Category"), renderer, "text", COL_DEBUG_CATEGORY, NULL);
   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
-      -1, _("Level"), renderer, "text", COL_LEVEL, NULL);
+      -1, _("Level"), renderer, "text", COL_DEBUG_LEVEL_STRING, NULL);
+
+  renderer = gtk_cell_renderer_text_new ();
+  g_object_set (renderer, "family", "Monospace", NULL);
   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
-      -1, _("Message"), renderer, "text", COL_MESSAGE, NULL);
+      -1, _("Message"), renderer, "text", COL_DEBUG_MESSAGE, NULL);
+
+  priv->store = gtk_list_store_new (NUM_DEBUG_COLS, G_TYPE_DOUBLE,
+      G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
+      G_TYPE_UINT);
+
+  priv->store_filter = gtk_tree_model_filter_new (
+      GTK_TREE_MODEL (priv->store), NULL);
 
-  priv->store = gtk_list_store_new (NUM_COLS, G_TYPE_DOUBLE,
-      G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING);
-  gtk_tree_view_set_model (GTK_TREE_VIEW (priv->view),
-      GTK_TREE_MODEL (priv->store));
+  gtk_tree_model_filter_set_visible_func (
+      GTK_TREE_MODEL_FILTER (priv->store_filter),
+      debug_dialog_visible_func, object, NULL);
+
+  gtk_tree_view_set_model (GTK_TREE_VIEW (priv->view), priv->store_filter);
 
   /* Scrolled window */
-  scrolled_win = gtk_scrolled_window_new (NULL, NULL);
-  gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
+  priv->scrolled_win = g_object_ref (gtk_scrolled_window_new (NULL, NULL));
+  gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->scrolled_win),
       GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
 
   gtk_widget_show (priv->view);
-  gtk_container_add (GTK_CONTAINER (scrolled_win), priv->view);
+  gtk_container_add (GTK_CONTAINER (priv->scrolled_win), priv->view);
+
+  gtk_widget_show (priv->scrolled_win);
 
-  gtk_widget_show (scrolled_win);
-  gtk_box_pack_start (GTK_BOX (vbox), scrolled_win, TRUE, TRUE, 0);
+  /* Not supported label */
+  priv->not_supported_label = g_object_ref (gtk_label_new (
+          _("The selected connection manager does not support the remote "
+              "debugging extension.")));
+  gtk_widget_show (priv->not_supported_label);
+  gtk_box_pack_start (GTK_BOX (vbox), priv->not_supported_label, TRUE, TRUE, 0);
 
+  priv->view_visible = FALSE;
+
+  debug_dialog_set_toolbar_sensitivity (EMPATHY_DEBUG_DIALOG (object), FALSE);
+  debug_dialog_fill_cm_chooser (EMPATHY_DEBUG_DIALOG (object));
   gtk_widget_show (GTK_WIDGET (object));
 
   return object;
@@ -495,17 +1165,12 @@ empathy_debug_dialog_init (EmpathyDebugDialog *empathy_debug_dialog)
 
 static void
 debug_dialog_set_property (GObject *object,
-                           guint prop_id,
-                           const GValue *value,
-                           GParamSpec *pspec)
+    guint prop_id,
+    const GValue *value,
+    GParamSpec *pspec)
 {
-  EmpathyDebugDialogPriv *priv = GET_PRIV (object);
-
   switch (prop_id)
     {
-      case PROP_PARENT:
-       priv->parent = GTK_WINDOW (g_value_dup_object (value));
-       break;
       default:
         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
         break;
@@ -514,17 +1179,12 @@ debug_dialog_set_property (GObject *object,
 
 static void
 debug_dialog_get_property (GObject *object,
-                           guint prop_id,
-                           GValue *value,
-                           GParamSpec *pspec)
+    guint prop_id,
+    GValue *value,
+    GParamSpec *pspec)
 {
-  EmpathyDebugDialogPriv *priv = GET_PRIV (object);
-
   switch (prop_id)
     {
-      case PROP_PARENT:
-       g_value_set_object (value, priv->parent);
-       break;
       default:
         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
         break;
@@ -542,20 +1202,26 @@ debug_dialog_dispose (GObject *object)
 
   priv->dispose_run = TRUE;
 
-  if (priv->parent)
-    g_object_unref (priv->parent);
-
-  if (priv->store)
+  if (priv->store != NULL)
     g_object_unref (priv->store);
 
-  if (priv->proxy)
+  if (priv->name_owner_changed_signal != NULL)
+    tp_proxy_signal_connection_disconnect (priv->name_owner_changed_signal);
+
+  if (priv->proxy != NULL)
     {
       debug_dialog_set_enabled (EMPATHY_DEBUG_DIALOG (object), FALSE);
       g_object_unref (priv->proxy);
     }
 
-  if (priv->signal_connection)
-    tp_proxy_signal_connection_disconnect (priv->signal_connection);
+  if (priv->new_debug_message_signal != NULL)
+    tp_proxy_signal_connection_disconnect (priv->new_debug_message_signal);
+
+  if (priv->cms != NULL)
+    g_object_unref (priv->cms);
+
+  if (priv->dbus != NULL)
+    g_object_unref (priv->dbus);
 
   (G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->dispose) (object);
 }
@@ -569,11 +1235,6 @@ empathy_debug_dialog_class_init (EmpathyDebugDialogClass *klass)
   object_class->set_property = debug_dialog_set_property;
   object_class->get_property = debug_dialog_get_property;
   g_type_class_add_private (klass, sizeof (EmpathyDebugDialogPriv));
-
-  g_object_class_install_property (object_class, PROP_PARENT,
-      g_param_spec_object ("parent", "parent", "parent",
-      GTK_TYPE_WINDOW, G_PARAM_CONSTRUCT_ONLY |
-      G_PARAM_READWRITE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
 }
 
 /* public methods */
@@ -584,5 +1245,5 @@ empathy_debug_dialog_new (GtkWindow *parent)
   g_return_val_if_fail (GTK_IS_WINDOW (parent), NULL);
 
   return GTK_WIDGET (g_object_new (EMPATHY_TYPE_DEBUG_DIALOG,
-      "parent", parent, NULL));
+      "transient-for", parent, NULL));
 }