]> git.0d.be Git - empathy.git/blob - src/empathy-debug-dialog.c
Implement level combo box.
[empathy.git] / src / empathy-debug-dialog.c
1 /*
2 *  Copyright (C) 2009 Collabora Ltd.
3 *
4 *  This library is free software; you can redistribute it and/or
5 *  modify it under the terms of the GNU Lesser General Public
6 *  License as published by the Free Software Foundation; either
7 *  version 2.1 of the License, or (at your option) any later version.
8 *
9 *  This library is distributed in the hope that it will be useful,
10 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 *  Lesser General Public License for more details.
13 *
14 *  You should have received a copy of the GNU Lesser General Public
15 *  License along with this library; if not, write to the Free Software
16 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 *
18 *  Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
19 */
20
21 #include "config.h"
22
23 #include <glib/gi18n.h>
24 #include <gtk/gtk.h>
25
26 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
27 #include <libempathy/empathy-debug.h>
28 #include <libempathy/empathy-utils.h>
29
30 #include <libempathy-gtk/empathy-account-chooser.h>
31
32 #include <telepathy-glib/dbus.h>
33 #include <telepathy-glib/util.h>
34 #include <telepathy-glib/proxy-subclass.h>
35
36 #include "extensions/extensions.h"
37
38 #include "empathy-debug-dialog.h"
39
40 G_DEFINE_TYPE (EmpathyDebugDialog, empathy_debug_dialog,
41     GTK_TYPE_DIALOG)
42
43 enum
44 {
45   PROP_0,
46   PROP_PARENT
47 };
48
49 enum
50 {
51   COL_DEBUG_TIMESTAMP = 0,
52   COL_DEBUG_DOMAIN,
53   COL_DEBUG_CATEGORY,
54   COL_DEBUG_LEVEL_STRING,
55   COL_DEBUG_MESSAGE,
56   COL_DEBUG_LEVEL_VALUE,
57   NUM_DEBUG_COLS
58 };
59
60 enum
61 {
62   COL_CM_NAME = 0,
63   COL_CM_BUS,
64   NUM_COLS_CM
65 };
66
67 enum
68 {
69   COL_LEVEL_NAME,
70   COL_LEVEL_VALUE,
71   NUM_COLS_LEVEL
72 };
73
74 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyDebugDialog)
75 typedef struct
76 {
77   GtkWidget *filter;
78   GtkWindow *parent;
79   GtkWidget *view;
80   GtkWidget *cm_chooser;
81   GtkListStore *store;
82   GtkTreeModel *store_filter;
83   TpProxy *proxy;
84   TpProxySignalConnection *signal_connection;
85   gboolean paused;
86   GtkListStore *cms;
87   gboolean dispose_run;
88 } EmpathyDebugDialogPriv;
89
90 static const gchar *
91 log_level_to_string (guint level)
92 {
93   switch (level)
94     {
95     case EMP_DEBUG_LEVEL_ERROR:
96       return _("Error");
97       break;
98     case EMP_DEBUG_LEVEL_CRITICAL:
99       return _("Critical");
100       break;
101     case EMP_DEBUG_LEVEL_WARNING:
102       return _("Warning");
103       break;
104     case EMP_DEBUG_LEVEL_MESSAGE:
105       return _("Message");
106       break;
107     case EMP_DEBUG_LEVEL_INFO:
108       return _("Info");
109       break;
110     case EMP_DEBUG_LEVEL_DEBUG:
111       return _("Debug");
112       break;
113     default:
114       g_assert_not_reached ();
115       break;
116     }
117 }
118
119 static void
120 debug_dialog_add_message (EmpathyDebugDialog *debug_dialog,
121                           gdouble timestamp,
122                           const gchar *domain_category,
123                           guint level,
124                           const gchar *message)
125 {
126   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
127   gchar *domain, *category;
128   GtkTreeIter iter;
129   gchar *string;
130
131   if (g_strrstr (domain_category, "/"))
132     {
133       gchar **parts = g_strsplit (domain_category, "/", 2);
134       domain = g_strdup (parts[0]);
135       category = g_strdup (parts[1]);
136       g_strfreev (parts);
137     }
138   else
139     {
140       domain = g_strdup (domain_category);
141       category = g_strdup ("");
142     }
143
144   if (g_str_has_suffix (message, "\n"))
145     string = g_strchomp (g_strdup (message));
146   else
147     string = g_strdup (message);
148
149
150   gtk_list_store_append (priv->store, &iter);
151   gtk_list_store_set (priv->store, &iter,
152       COL_DEBUG_TIMESTAMP, timestamp,
153       COL_DEBUG_DOMAIN, domain,
154       COL_DEBUG_CATEGORY, category,
155       COL_DEBUG_LEVEL_STRING, log_level_to_string (level),
156       COL_DEBUG_MESSAGE, string,
157       COL_DEBUG_LEVEL_VALUE, level,
158       -1);
159
160   g_free (string);
161   g_free (domain);
162   g_free (category);
163 }
164
165 static void
166 debug_dialog_new_debug_message_cb (TpProxy *proxy,
167                                    gdouble timestamp,
168                                    const gchar *domain,
169                                    guint level,
170                                    const gchar *message,
171                                    gpointer user_data,
172                                    GObject *weak_object)
173 {
174   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
175
176   debug_dialog_add_message (debug_dialog, timestamp, domain, level,
177       message);
178 }
179
180 static void
181 debug_dialog_set_enabled (EmpathyDebugDialog *debug_dialog,
182                           gboolean enabled)
183 {
184   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
185   GValue *val;
186
187   val = tp_g_value_slice_new_boolean (enabled);
188
189   tp_cli_dbus_properties_call_set (priv->proxy, -1, EMP_IFACE_DEBUG,
190       "Enabled", val, NULL, NULL, NULL, NULL);
191
192   tp_g_value_slice_free (val);
193 }
194
195 static void
196 debug_dialog_get_messages_cb (TpProxy *proxy,
197                               const GPtrArray *messages,
198                               const GError *error,
199                               gpointer user_data,
200                               GObject *weak_object)
201 {
202   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
203   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
204   gint i;
205
206   if (error != NULL)
207     {
208       DEBUG ("GetMessages failed: %s", error->message);
209       return;
210     }
211
212   for (i = 0; i < messages->len; i++)
213     {
214       GValueArray *values = g_ptr_array_index (messages, i);
215
216       debug_dialog_add_message (debug_dialog,
217           g_value_get_double (g_value_array_get_nth (values, 0)),
218           g_value_get_string (g_value_array_get_nth (values, 1)),
219           g_value_get_uint (g_value_array_get_nth (values, 2)),
220           g_value_get_string (g_value_array_get_nth (values, 3)));
221     }
222
223   /* Connect to NewDebugMessage */
224   priv->signal_connection = emp_cli_debug_connect_to_new_debug_message (
225       proxy, debug_dialog_new_debug_message_cb, debug_dialog,
226       NULL, NULL, NULL);
227
228   /* Set Enabled as appropriate */
229   debug_dialog_set_enabled (debug_dialog, !priv->paused);
230 }
231
232 static void
233 debug_dialog_cm_chooser_changed_cb (GtkComboBox *cm_chooser,
234                                     EmpathyDebugDialog *debug_dialog)
235 {
236   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
237   MissionControl *mc;
238   TpDBusDaemon *dbus;
239   GError *error = NULL;
240   gchar *bus_name;
241   TpConnection *connection;
242   GtkTreeIter iter;
243
244   if (!gtk_combo_box_get_active_iter (cm_chooser, &iter))
245     {
246       DEBUG ("No CM is selected");
247       return;
248     }
249
250   mc = empathy_mission_control_dup_singleton ();
251   dbus = tp_dbus_daemon_dup (&error);
252
253   if (error != NULL)
254     {
255       DEBUG ("Failed at duping the dbus daemon: %s", error->message);
256       g_object_unref (mc);
257     }
258
259   gtk_tree_model_get (GTK_TREE_MODEL (priv->cms), &iter,
260       COL_CM_BUS, &bus_name, -1);
261   connection = tp_connection_new (dbus, bus_name, DEBUG_OBJECT_PATH, &error);
262   g_free (bus_name);
263
264   if (error != NULL)
265     {
266       DEBUG ("Getting a new TpConnection failed: %s", error->message);
267       g_error_free (error);
268       g_object_unref (dbus);
269       g_object_unref (mc);
270       return;
271     }
272
273   /* Disable debug signalling */
274   if (priv->proxy != NULL)
275     debug_dialog_set_enabled (debug_dialog, FALSE);
276
277   /* Disconnect from previous NewDebugMessage signal */
278   if (priv->signal_connection)
279     {
280       tp_proxy_signal_connection_disconnect (priv->signal_connection);
281       priv->signal_connection = NULL;
282     }
283
284   if (priv->proxy)
285     g_object_unref (priv->proxy);
286
287   priv->proxy = TP_PROXY (connection);
288
289   tp_proxy_add_interface_by_id (priv->proxy, emp_iface_quark_debug ());
290
291   emp_cli_debug_call_get_messages (priv->proxy, -1,
292       debug_dialog_get_messages_cb, debug_dialog, NULL, NULL);
293
294   g_object_unref (dbus);
295   g_object_unref (mc);
296 }
297
298 static void
299 debug_dialog_list_connection_names_cb (const gchar * const *names,
300                                        gsize n,
301                                        const gchar * const *cms,
302                                        const gchar * const *protocols,
303                                        const GError *error,
304                                        gpointer user_data,
305                                        GObject *weak_object)
306 {
307   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
308   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
309   int i;
310
311   if (error != NULL)
312     {
313       DEBUG ("list_connection_names failed: %s", error->message);
314       return;
315     }
316
317   for (i = 0; cms[i] != NULL; i++)
318     {
319       GtkTreeIter iter;
320       gtk_list_store_append (priv->cms, &iter);
321       gtk_list_store_set (priv->cms, &iter,
322                           COL_CM_NAME, cms[i],
323                           COL_CM_BUS, names[i],
324                           -1);
325     }
326
327   gtk_combo_box_set_active (GTK_COMBO_BOX (priv->cm_chooser), 0);
328
329   /* Fill treeview */
330   debug_dialog_cm_chooser_changed_cb (GTK_COMBO_BOX (priv->cm_chooser), debug_dialog);
331 }
332
333 static void
334 debug_dialog_fill_cm_chooser (EmpathyDebugDialog *debug_dialog)
335 {
336   TpDBusDaemon *dbus;
337   GError *error = NULL;
338
339   dbus = tp_dbus_daemon_dup (&error);
340
341   if (error != NULL)
342     {
343       DEBUG ("Failed to dup dbus daemon: %s", error->message);
344       g_error_free (error);
345       return;
346     }
347
348   tp_list_connection_names (dbus, debug_dialog_list_connection_names_cb,
349       debug_dialog, NULL, NULL);
350
351   g_object_unref (dbus);
352 }
353
354 static void
355 debug_dialog_pause_toggled_cb (GtkToggleToolButton *pause,
356                                EmpathyDebugDialog *debug_dialog)
357 {
358   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
359
360   priv->paused = gtk_toggle_tool_button_get_active (pause);
361
362   debug_dialog_set_enabled (debug_dialog, !priv->paused);
363 }
364
365 static gboolean
366 debug_dialog_visible_func (GtkTreeModel *model,
367                            GtkTreeIter *iter,
368                            gpointer user_data)
369 {
370   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
371   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
372   guint filter_value, level;
373   GtkTreeModel *filter_model;
374   GtkTreeIter filter_iter;
375
376   filter_model = gtk_combo_box_get_model (GTK_COMBO_BOX (priv->filter));
377   gtk_combo_box_get_active_iter (GTK_COMBO_BOX (priv->filter),
378       &filter_iter);
379
380   gtk_tree_model_get (model, iter, COL_DEBUG_LEVEL_VALUE, &level, -1);
381   gtk_tree_model_get (filter_model, &filter_iter,
382       COL_LEVEL_VALUE, &filter_value, -1);
383
384   if (level <= filter_value)
385     return TRUE;
386
387   return FALSE;
388 }
389
390 static void
391 debug_dialog_filter_changed_cb (GtkComboBox *filter,
392                                 EmpathyDebugDialog *debug_dialog)
393 {
394   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
395
396   gtk_tree_model_filter_refilter (
397       GTK_TREE_MODEL_FILTER (priv->store_filter));
398 }
399
400 static GObject *
401 debug_dialog_constructor (GType type,
402                           guint n_construct_params,
403                           GObjectConstructParam *construct_params)
404 {
405   GObject *object;
406   EmpathyDebugDialogPriv *priv;
407   GtkWidget *vbox;
408   GtkWidget *toolbar;
409   GtkWidget *image;
410   GtkWidget *label;
411   GtkToolItem *item;
412   GtkCellRenderer *renderer;
413   GtkWidget *scrolled_win;
414   GtkListStore *level_store;
415   GtkTreeIter iter;
416
417   object = G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->constructor
418     (type, n_construct_params, construct_params);
419   priv = GET_PRIV (object);
420
421   gtk_window_set_title (GTK_WINDOW (object), _("Debug Window"));
422   gtk_window_set_default_size (GTK_WINDOW (object), 800, 400);
423   gtk_window_set_transient_for (GTK_WINDOW (object), priv->parent);
424
425   vbox = GTK_DIALOG (object)->vbox;
426
427   toolbar = gtk_toolbar_new ();
428   gtk_toolbar_set_style (GTK_TOOLBAR (toolbar), GTK_TOOLBAR_BOTH_HORIZ);
429   gtk_toolbar_set_show_arrow (GTK_TOOLBAR (toolbar), TRUE);
430   gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar), GTK_ICON_SIZE_SMALL_TOOLBAR);
431   gtk_widget_show (toolbar);
432
433   gtk_box_pack_start (GTK_BOX (vbox), toolbar, FALSE, FALSE, 0);
434
435   /* CM */
436   priv->cm_chooser = gtk_combo_box_new_text ();
437   priv->cms = gtk_list_store_new (NUM_COLS_CM, G_TYPE_STRING, G_TYPE_STRING);
438   gtk_combo_box_set_model (GTK_COMBO_BOX (priv->cm_chooser),
439       GTK_TREE_MODEL (priv->cms));
440   gtk_widget_show (priv->cm_chooser);
441
442   item = gtk_tool_item_new ();
443   gtk_widget_show (GTK_WIDGET (item));
444   gtk_container_add (GTK_CONTAINER (item), priv->cm_chooser);
445   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
446   debug_dialog_fill_cm_chooser (EMPATHY_DEBUG_DIALOG (object));
447   g_signal_connect (priv->cm_chooser, "changed",
448       G_CALLBACK (debug_dialog_cm_chooser_changed_cb), object);
449   gtk_widget_show (GTK_WIDGET (priv->cm_chooser));
450
451   item = gtk_separator_tool_item_new ();
452   gtk_widget_show (GTK_WIDGET (item));
453   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
454
455   /* Save */
456   item = gtk_tool_button_new_from_stock (GTK_STOCK_SAVE);
457   gtk_widget_show (GTK_WIDGET (item));
458   gtk_tool_item_set_is_important (GTK_TOOL_ITEM (item), TRUE);
459   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
460
461   /* Clear */
462   item = gtk_tool_button_new_from_stock (GTK_STOCK_CLEAR);
463   gtk_widget_show (GTK_WIDGET (item));
464   gtk_tool_item_set_is_important (GTK_TOOL_ITEM (item), TRUE);
465   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
466
467   item = gtk_separator_tool_item_new ();
468   gtk_widget_show (GTK_WIDGET (item));
469   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
470
471   /* Pause */
472   priv->paused = FALSE;
473   image = gtk_image_new_from_stock (GTK_STOCK_MEDIA_PAUSE, GTK_ICON_SIZE_MENU);
474   gtk_widget_show (image);
475   item = gtk_toggle_tool_button_new ();
476   gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (item), priv->paused);
477   g_signal_connect (item, "toggled", G_CALLBACK (debug_dialog_pause_toggled_cb),
478       object);
479   gtk_widget_show (GTK_WIDGET (item));
480   gtk_tool_item_set_is_important (GTK_TOOL_ITEM (item), TRUE);
481   gtk_tool_button_set_label (GTK_TOOL_BUTTON (item), _("Pause"));
482   gtk_tool_button_set_icon_widget (GTK_TOOL_BUTTON (item), image);
483   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
484
485   item = gtk_separator_tool_item_new ();
486   gtk_widget_show (GTK_WIDGET (item));
487   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
488
489   /* Level */
490   item = gtk_tool_item_new ();
491   gtk_widget_show (GTK_WIDGET (item));
492   label = gtk_label_new (_("Level "));
493   gtk_widget_show (label);
494   gtk_container_add (GTK_CONTAINER (item), label);
495   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
496
497   priv->filter = gtk_combo_box_new_text ();
498   gtk_widget_show (priv->filter);
499
500   item = gtk_tool_item_new ();
501   gtk_widget_show (GTK_WIDGET (item));
502   gtk_container_add (GTK_CONTAINER (item), priv->filter);
503   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
504
505   level_store = gtk_list_store_new (NUM_COLS_LEVEL,
506       G_TYPE_STRING, G_TYPE_UINT);
507   gtk_combo_box_set_model (GTK_COMBO_BOX (priv->filter),
508       GTK_TREE_MODEL (level_store));
509
510   gtk_list_store_append (level_store, &iter);
511   gtk_list_store_set (level_store, &iter,
512       COL_LEVEL_NAME, _("Debug"),
513       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_DEBUG,
514       -1);
515
516   gtk_list_store_append (level_store, &iter);
517   gtk_list_store_set (level_store, &iter,
518       COL_LEVEL_NAME, _("Info"),
519       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_INFO,
520       -1);
521
522   gtk_list_store_append (level_store, &iter);
523   gtk_list_store_set (level_store, &iter,
524       COL_LEVEL_NAME, _("Message"),
525       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_MESSAGE,
526       -1);
527
528   gtk_list_store_append (level_store, &iter);
529   gtk_list_store_set (level_store, &iter,
530       COL_LEVEL_NAME, _("Warning"),
531       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_WARNING,
532       -1);
533
534   gtk_list_store_append (level_store, &iter);
535   gtk_list_store_set (level_store, &iter,
536       COL_LEVEL_NAME, _("Critical"),
537       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_CRITICAL,
538       -1);
539
540   gtk_list_store_append (level_store, &iter);
541   gtk_list_store_set (level_store, &iter,
542       COL_LEVEL_NAME, _("Error"),
543       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_ERROR,
544       -1);
545
546   gtk_combo_box_set_active (GTK_COMBO_BOX (priv->filter), 0);
547   g_signal_connect (priv->filter, "changed",
548       G_CALLBACK (debug_dialog_filter_changed_cb), object);
549
550   /* Debug treeview */
551   priv->view = gtk_tree_view_new ();
552   gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (priv->view), TRUE);
553
554   renderer = gtk_cell_renderer_text_new ();
555   g_object_set (renderer, "yalign", 0, NULL);
556
557   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
558       -1, _("Time"), renderer, "text", COL_DEBUG_TIMESTAMP, NULL);
559   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
560       -1, _("Domain"), renderer, "text", COL_DEBUG_DOMAIN, NULL);
561   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
562       -1, _("Category"), renderer, "text", COL_DEBUG_CATEGORY, NULL);
563   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
564       -1, _("Level"), renderer, "text", COL_DEBUG_LEVEL_STRING, NULL);
565   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
566       -1, _("Message"), renderer, "text", COL_DEBUG_MESSAGE, NULL);
567
568   priv->store = gtk_list_store_new (NUM_DEBUG_COLS, G_TYPE_DOUBLE,
569       G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
570       G_TYPE_UINT);
571
572   priv->store_filter = gtk_tree_model_filter_new (
573       GTK_TREE_MODEL (priv->store), NULL);
574
575   gtk_tree_model_filter_set_visible_func (
576       GTK_TREE_MODEL_FILTER (priv->store_filter),
577       debug_dialog_visible_func, object, NULL);
578
579   gtk_tree_view_set_model (GTK_TREE_VIEW (priv->view), priv->store_filter);
580
581   /* Scrolled window */
582   scrolled_win = gtk_scrolled_window_new (NULL, NULL);
583   gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
584       GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
585
586   gtk_widget_show (priv->view);
587   gtk_container_add (GTK_CONTAINER (scrolled_win), priv->view);
588
589   gtk_widget_show (scrolled_win);
590   gtk_box_pack_start (GTK_BOX (vbox), scrolled_win, TRUE, TRUE, 0);
591
592   gtk_widget_show (GTK_WIDGET (object));
593
594   return object;
595 }
596
597 static void
598 empathy_debug_dialog_init (EmpathyDebugDialog *empathy_debug_dialog)
599 {
600   EmpathyDebugDialogPriv *priv =
601       G_TYPE_INSTANCE_GET_PRIVATE (empathy_debug_dialog,
602       EMPATHY_TYPE_DEBUG_DIALOG, EmpathyDebugDialogPriv);
603
604   empathy_debug_dialog->priv = priv;
605
606   priv->dispose_run = FALSE;
607 }
608
609 static void
610 debug_dialog_set_property (GObject *object,
611                            guint prop_id,
612                            const GValue *value,
613                            GParamSpec *pspec)
614 {
615   EmpathyDebugDialogPriv *priv = GET_PRIV (object);
616
617   switch (prop_id)
618     {
619       case PROP_PARENT:
620         priv->parent = GTK_WINDOW (g_value_dup_object (value));
621         break;
622       default:
623         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
624         break;
625     }
626 }
627
628 static void
629 debug_dialog_get_property (GObject *object,
630                            guint prop_id,
631                            GValue *value,
632                            GParamSpec *pspec)
633 {
634   EmpathyDebugDialogPriv *priv = GET_PRIV (object);
635
636   switch (prop_id)
637     {
638       case PROP_PARENT:
639         g_value_set_object (value, priv->parent);
640         break;
641       default:
642         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
643         break;
644     }
645 }
646
647 static void
648 debug_dialog_dispose (GObject *object)
649 {
650   EmpathyDebugDialog *selector = EMPATHY_DEBUG_DIALOG (object);
651   EmpathyDebugDialogPriv *priv = GET_PRIV (selector);
652
653   if (priv->dispose_run)
654     return;
655
656   priv->dispose_run = TRUE;
657
658   if (priv->parent)
659     g_object_unref (priv->parent);
660
661   if (priv->store)
662     g_object_unref (priv->store);
663
664   if (priv->proxy)
665     {
666       debug_dialog_set_enabled (EMPATHY_DEBUG_DIALOG (object), FALSE);
667       g_object_unref (priv->proxy);
668     }
669
670   if (priv->signal_connection)
671     tp_proxy_signal_connection_disconnect (priv->signal_connection);
672
673   if (priv->cms)
674     g_object_unref (priv->cms);
675
676   (G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->dispose) (object);
677 }
678
679 static void
680 empathy_debug_dialog_class_init (EmpathyDebugDialogClass *klass)
681 {
682   GObjectClass *object_class = G_OBJECT_CLASS (klass);
683   object_class->constructor = debug_dialog_constructor;
684   object_class->dispose = debug_dialog_dispose;
685   object_class->set_property = debug_dialog_set_property;
686   object_class->get_property = debug_dialog_get_property;
687   g_type_class_add_private (klass, sizeof (EmpathyDebugDialogPriv));
688
689   g_object_class_install_property (object_class, PROP_PARENT,
690       g_param_spec_object ("parent", "parent", "parent",
691       GTK_TYPE_WINDOW, G_PARAM_CONSTRUCT_ONLY |
692       G_PARAM_READWRITE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
693 }
694
695 /* public methods */
696
697 GtkWidget *
698 empathy_debug_dialog_new (GtkWindow *parent)
699 {
700   g_return_val_if_fail (GTK_IS_WINDOW (parent), NULL);
701
702   return GTK_WIDGET (g_object_new (EMPATHY_TYPE_DEBUG_DIALOG,
703       "parent", parent, NULL));
704 }