]> git.0d.be Git - empathy.git/blob - src/empathy-accounts-dialog.c
empathy_accounts_dialog_show: check if priv->cms is not NULL before using it
[empathy.git] / src / empathy-accounts-dialog.c
1 /*
2  * Copyright (C) 2005-2007 Imendio AB
3  * Copyright (C) 2007-2009 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors: Martyn Russell <martyn@imendio.com>
21  *          Xavier Claessens <xclaesse@gmail.com>
22  *          Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
23  *          Jonathan Tellier <jonathan.tellier@gmail.com>
24  */
25
26 #include <config.h>
27
28 #include <string.h>
29 #include <stdlib.h>
30
31 #include <gtk/gtk.h>
32 #include <glib/gi18n.h>
33 #include <dbus/dbus-glib.h>
34
35 #include <telepathy-glib/account-manager.h>
36 #include <telepathy-glib/util.h>
37
38 #include <libempathy/empathy-utils.h>
39 #include <libempathy/empathy-connection-managers.h>
40 #include <libempathy-gtk/empathy-ui-utils.h>
41
42 #include <libempathy-gtk/empathy-protocol-chooser.h>
43 #include <libempathy-gtk/empathy-account-widget.h>
44 #include <libempathy-gtk/empathy-account-widget-irc.h>
45 #include <libempathy-gtk/empathy-account-widget-sip.h>
46 #include <libempathy-gtk/empathy-cell-renderer-activatable.h>
47 #include <libempathy-gtk/empathy-conf.h>
48 #include <libempathy-gtk/empathy-images.h>
49
50 #include "empathy-accounts-dialog.h"
51 #include "empathy-import-dialog.h"
52 #include "empathy-import-utils.h"
53
54 #define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
55 #include <libempathy/empathy-debug.h>
56
57 /* Flashing delay for icons (milliseconds). */
58 #define FLASH_TIMEOUT 500
59
60 /* The primary text of the dialog shown to the user when he is about to lose
61  * unsaved changes */
62 #define PENDING_CHANGES_QUESTION_PRIMARY_TEXT \
63   _("There are unsaved modification regarding your %s account.")
64 /* The primary text of the dialog shown to the user when he is about to lose
65  * an unsaved new account */
66 #define UNSAVED_NEW_ACCOUNT_QUESTION_PRIMARY_TEXT \
67   _("Your new account has not been saved yet.")
68
69 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyAccountsDialog)
70 G_DEFINE_TYPE (EmpathyAccountsDialog, empathy_accounts_dialog, G_TYPE_OBJECT);
71
72 static EmpathyAccountsDialog *dialog_singleton = NULL;
73
74 typedef struct {
75   GtkWidget *window;
76
77   GtkWidget *alignment_settings;
78
79   GtkWidget *vbox_details;
80   GtkWidget *frame_no_protocol;
81
82   GtkWidget *treeview;
83
84   GtkWidget *button_add;
85   GtkWidget *button_import;
86
87   GtkWidget *frame_new_account;
88   GtkWidget *combobox_protocol;
89   GtkWidget *hbox_type;
90   GtkWidget *button_create;
91   GtkWidget *button_back;
92   GtkWidget *radiobutton_reuse;
93   GtkWidget *radiobutton_register;
94
95   GtkWidget *image_type;
96   GtkWidget *label_name;
97   GtkWidget *label_type;
98   GtkWidget *settings_widget;
99
100   /* We have to keep a reference on the actual EmpathyAccountWidget, not just
101    * his GtkWidget. It is the only reliable source we can query to know if
102    * there are any unsaved changes to the currently selected account. We can't
103    * look at the account settings because it does not contain everything that
104    * can be changed using the EmpathyAccountWidget. For instance, it does not
105    * contain the state of the "Enabled" checkbox. */
106   EmpathyAccountWidget *setting_widget_object;
107
108   gboolean  connecting_show;
109   guint connecting_id;
110
111   gulong  settings_ready_id;
112   EmpathyAccountSettings *settings_ready;
113
114   TpAccountManager *account_manager;
115   EmpathyConnectionManagers *cms;
116
117   GtkWindow *parent_window;
118   TpAccount *initial_selection;
119
120   /* Those are needed when changing the selected row. When a user selects
121    * another account and there are unsaved changes on the currently selected
122    * one, a confirmation message box is presented to him. Since his answer
123    * is retrieved asynchronously, we keep some information as member of the
124    * EmpathyAccountsDialog object. */
125   gboolean force_change_row;
126   GtkTreeRowReference *destination_row;
127
128
129 } EmpathyAccountsDialogPriv;
130
131 enum {
132   COL_NAME,
133   COL_STATUS,
134   COL_ACCOUNT_POINTER,
135   COL_ACCOUNT_SETTINGS_POINTER,
136   COL_COUNT
137 };
138
139 enum {
140   PROP_PARENT = 1
141 };
142
143 static EmpathyAccountSettings * accounts_dialog_model_get_selected_settings (
144     EmpathyAccountsDialog *dialog);
145
146 static gboolean accounts_dialog_get_settings_iter (
147     EmpathyAccountsDialog *dialog,
148     EmpathyAccountSettings *settings,
149     GtkTreeIter *iter);
150
151 static void accounts_dialog_model_select_first (EmpathyAccountsDialog *dialog);
152
153 static void accounts_dialog_update_settings (EmpathyAccountsDialog *dialog,
154     EmpathyAccountSettings *settings);
155
156 static void
157 accounts_dialog_update_name_label (EmpathyAccountsDialog *dialog,
158     const gchar *display_name)
159 {
160   gchar *text;
161   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
162
163   text = g_markup_printf_escaped ("<big><b>%s</b></big>", display_name);
164   gtk_label_set_markup (GTK_LABEL (priv->label_name), text);
165
166   g_free (text);
167 }
168
169 static void
170 empathy_account_dialog_widget_cancelled_cb (
171     EmpathyAccountWidget *widget_object,
172     EmpathyAccountsDialog *dialog)
173 {
174   GtkTreeView *view;
175   GtkTreeModel *model;
176   GtkTreeSelection *selection;
177   GtkTreeIter iter;
178   EmpathyAccountSettings *settings;
179   TpAccount *account;
180   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
181
182   view = GTK_TREE_VIEW (priv->treeview);
183   selection = gtk_tree_view_get_selection (view);
184
185   if (!gtk_tree_selection_get_selected (selection, &model, &iter))
186     return;
187
188   gtk_tree_model_get (model, &iter,
189       COL_ACCOUNT_SETTINGS_POINTER, &settings,
190       COL_ACCOUNT_POINTER, &account, -1);
191
192   empathy_account_widget_discard_pending_changes (priv->setting_widget_object);
193
194   if (account == NULL)
195     {
196       /* We were creating an account. We remove the selected row */
197       gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
198     }
199   else
200     {
201       /* We were modifying an account. We discard the changes by reloading the
202        * settings and the UI. */
203       accounts_dialog_update_settings (dialog, settings);
204       g_object_unref (account);
205     }
206
207   if (settings != NULL)
208     g_object_unref (settings);
209 }
210
211 static gchar *
212 get_default_display_name (EmpathyAccountSettings *settings)
213 {
214   const gchar *login_id;
215   const gchar *protocol, *p;
216   gchar *default_display_name;
217
218   login_id = empathy_account_settings_get_string (settings, "account");
219   protocol = empathy_account_settings_get_protocol (settings);
220
221   if (login_id != NULL)
222     {
223       if (!tp_strdiff (protocol, "irc"))
224         {
225           const gchar* server;
226           server = empathy_account_settings_get_string (settings, "server");
227
228           /* To translators: The first parameter is the login id and the
229            * second one is the server. The resulting string will be something
230            * like: "MyUserName on chat.freenode.net".
231            * You should reverse the order of these arguments if the
232            * server should come before the login id in your locale.*/
233           default_display_name = g_strdup_printf (_("%1$s on %2$s"),
234               login_id, server);
235         }
236       else
237         {
238           default_display_name = g_strdup (login_id);
239         }
240
241       return default_display_name;
242     }
243
244   if ((p = empathy_protocol_name_to_display_name (protocol)) != NULL)
245     protocol = p;
246
247   if (protocol != NULL)
248     {
249       /* To translators: The parameter is the protocol name. The resulting
250        * string will be something like: "Jabber Account" */
251       default_display_name = g_strdup_printf (_("%s Account"), protocol);
252     }
253   else
254     {
255       default_display_name = g_strdup (_("New account"));
256     }
257
258   return default_display_name;
259 }
260
261 static void
262 empathy_account_dialog_account_created_cb (EmpathyAccountWidget *widget_object,
263     EmpathyAccountsDialog *dialog)
264 {
265   gchar *display_name;
266   EmpathyAccountSettings *settings =
267       accounts_dialog_model_get_selected_settings (dialog);
268
269   display_name = get_default_display_name (settings);
270
271   empathy_account_settings_set_display_name_async (settings,
272       display_name, NULL, NULL);
273
274   g_free (display_name);
275
276   accounts_dialog_update_settings (dialog, settings);
277
278   if (settings)
279     g_object_unref (settings);
280 }
281
282 static void
283 account_dialog_create_settings_widget (EmpathyAccountsDialog *dialog,
284     EmpathyAccountSettings *settings)
285 {
286   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
287   gchar *icon_name;
288
289   priv->setting_widget_object =
290       empathy_account_widget_new_for_protocol (settings, FALSE);
291
292   priv->settings_widget =
293       empathy_account_widget_get_widget (priv->setting_widget_object);
294
295   priv->settings_widget =
296       empathy_account_widget_get_widget (priv->setting_widget_object);
297   g_signal_connect (priv->setting_widget_object, "account-created",
298         G_CALLBACK (empathy_account_dialog_account_created_cb), dialog);
299   g_signal_connect (priv->setting_widget_object, "cancelled",
300           G_CALLBACK (empathy_account_dialog_widget_cancelled_cb), dialog);
301
302   gtk_container_add (GTK_CONTAINER (priv->alignment_settings),
303       priv->settings_widget);
304   gtk_widget_show (priv->settings_widget);
305
306   icon_name = empathy_account_settings_get_icon_name (settings);
307
308   if (!gtk_icon_theme_has_icon (gtk_icon_theme_get_default (),
309           icon_name))
310     /* show the default icon; keep this in sync with the default
311      * one in empathy-accounts-dialog.ui.
312      */
313     icon_name = GTK_STOCK_CUT;
314
315   gtk_image_set_from_icon_name (GTK_IMAGE (priv->image_type),
316       icon_name, GTK_ICON_SIZE_DIALOG);
317   gtk_widget_set_tooltip_text (priv->image_type,
318       empathy_protocol_name_to_display_name
319       (empathy_account_settings_get_protocol (settings)));
320   gtk_widget_show (priv->image_type);
321
322   accounts_dialog_update_name_label (dialog,
323       empathy_account_settings_get_display_name (settings));
324 }
325
326 static void
327 account_dialog_settings_ready_cb (EmpathyAccountSettings *settings,
328     GParamSpec *spec,
329     EmpathyAccountsDialog *dialog)
330 {
331   if (empathy_account_settings_is_ready (settings))
332     account_dialog_create_settings_widget (dialog, settings);
333 }
334
335 static void
336 accounts_dialog_model_select_first (EmpathyAccountsDialog *dialog)
337 {
338   GtkTreeView      *view;
339   GtkTreeModel     *model;
340   GtkTreeSelection *selection;
341   GtkTreeIter       iter;
342   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
343
344   /* select first */
345   view = GTK_TREE_VIEW (priv->treeview);
346   model = gtk_tree_view_get_model (view);
347
348   if (gtk_tree_model_get_iter_first (model, &iter))
349     {
350       selection = gtk_tree_view_get_selection (view);
351       gtk_tree_selection_select_iter (selection, &iter);
352     }
353   else
354     {
355       accounts_dialog_update_settings (dialog, NULL);
356     }
357 }
358
359 static gboolean
360 accounts_dialog_has_pending_change (EmpathyAccountsDialog *dialog,
361     TpAccount **account)
362 {
363   GtkTreeIter iter;
364   GtkTreeModel *model;
365   GtkTreeSelection *selection;
366   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
367
368   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview));
369
370   if (gtk_tree_selection_get_selected (selection, &model, &iter))
371     gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, account, -1);
372
373   return priv->setting_widget_object != NULL
374       && empathy_account_widget_contains_pending_changes (
375           priv->setting_widget_object);
376 }
377
378 static void
379 accounts_dialog_protocol_changed_cb (GtkWidget *widget,
380     EmpathyAccountsDialog *dialog)
381 {
382   TpConnectionManager *cm;
383   TpConnectionManagerProtocol *proto;
384   gboolean is_gtalk;
385   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
386
387   cm = empathy_protocol_chooser_dup_selected (
388       EMPATHY_PROTOCOL_CHOOSER (priv->combobox_protocol), &proto, &is_gtalk);
389
390   if (cm == NULL)
391     return;
392
393   if (proto == NULL)
394     {
395       g_object_unref (cm);
396       return;
397     }
398
399 #ifndef HAVE_MOBLIN
400   if (tp_connection_manager_protocol_can_register (proto) && !is_gtalk)
401     {
402       gtk_widget_show (priv->radiobutton_register);
403       gtk_widget_show (priv->radiobutton_reuse);
404     }
405   else
406     {
407       gtk_widget_hide (priv->radiobutton_register);
408       gtk_widget_hide (priv->radiobutton_reuse);
409     }
410 #else
411   gtk_widget_hide (priv->radiobutton_register);
412   gtk_widget_hide (priv->radiobutton_reuse);
413 #endif
414
415   g_object_unref (cm);
416 }
417
418 static void
419 accounts_dialog_setup_ui_to_add_account (EmpathyAccountsDialog *dialog)
420 {
421   GtkTreeView *view;
422   GtkTreeModel *model;
423   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
424
425   view = GTK_TREE_VIEW (priv->treeview);
426   model = gtk_tree_view_get_model (view);
427
428   gtk_widget_set_sensitive (priv->button_add, FALSE);
429   gtk_widget_hide (priv->vbox_details);
430   gtk_widget_hide (priv->frame_no_protocol);
431   gtk_widget_show (priv->frame_new_account);
432
433   /* If we have no account, no need of a back button */
434   if (gtk_tree_model_iter_n_children (model, NULL) > 0)
435     gtk_widget_show (priv->button_back);
436   else
437     gtk_widget_hide (priv->button_back);
438
439   accounts_dialog_protocol_changed_cb (priv->radiobutton_register, dialog);
440   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->radiobutton_reuse),
441       TRUE);
442   gtk_combo_box_set_active (GTK_COMBO_BOX (priv->combobox_protocol), 0);
443   gtk_widget_grab_focus (priv->combobox_protocol);
444 }
445
446 static void
447 accounts_dialog_show_question_dialog (EmpathyAccountsDialog *dialog,
448     const gchar *primary_text,
449     const gchar *secondary_text,
450     GCallback response_callback,
451     gpointer user_data,
452     const gchar *first_button_text,
453     ...)
454 {
455   va_list button_args;
456   GtkWidget *message_dialog;
457   const gchar *button_text;
458   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
459
460   message_dialog = gtk_message_dialog_new (GTK_WINDOW (priv->window),
461       GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
462       GTK_MESSAGE_QUESTION,
463       GTK_BUTTONS_NONE,
464       "%s", primary_text);
465
466   gtk_message_dialog_format_secondary_text (
467       GTK_MESSAGE_DIALOG (message_dialog), "%s", secondary_text);
468
469   va_start (button_args, first_button_text);
470   for (button_text = first_button_text;
471        button_text;
472        button_text = va_arg (button_args, const gchar *))
473     {
474       gint response_id;
475       response_id = va_arg (button_args, gint);
476
477       gtk_dialog_add_button (GTK_DIALOG (message_dialog), button_text,
478           response_id);
479     }
480   va_end (button_args);
481
482   g_signal_connect (message_dialog, "response", response_callback, user_data);
483
484   gtk_widget_show (message_dialog);
485 }
486
487 static void
488 accounts_dialog_add_pending_changes_response_cb (GtkDialog *message_dialog,
489   gint response_id,
490   gpointer *user_data)
491 {
492   EmpathyAccountsDialog *dialog = EMPATHY_ACCOUNTS_DIALOG (user_data);
493   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
494
495   gtk_widget_destroy (GTK_WIDGET (message_dialog));
496
497   if (response_id == GTK_RESPONSE_YES)
498     {
499       empathy_account_widget_discard_pending_changes (
500           priv->setting_widget_object);
501       accounts_dialog_setup_ui_to_add_account (dialog);
502     }
503 }
504
505 static gchar *
506 get_dialog_primary_text (TpAccount *account)
507 {
508   if (account != NULL)
509     {
510       /* Existing account */
511       return g_strdup_printf (PENDING_CHANGES_QUESTION_PRIMARY_TEXT,
512           tp_account_get_display_name (account));
513     }
514   else
515     {
516       /* Newly created account */
517       return g_strdup (UNSAVED_NEW_ACCOUNT_QUESTION_PRIMARY_TEXT);
518     }
519 }
520
521 static void
522 accounts_dialog_button_add_clicked_cb (GtkWidget *button,
523     EmpathyAccountsDialog *dialog)
524 {
525   TpAccount *account = NULL;
526
527   if (accounts_dialog_has_pending_change (dialog, &account))
528     {
529       gchar *question_dialog_primary_text = get_dialog_primary_text (account);
530
531       accounts_dialog_show_question_dialog (dialog,
532           question_dialog_primary_text,
533           _("You are about to create a new account, which will discard\n"
534               "your changes. Are you sure you want to proceed?"),
535           G_CALLBACK (accounts_dialog_add_pending_changes_response_cb),
536           dialog,
537           GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
538           GTK_STOCK_DISCARD, GTK_RESPONSE_YES, NULL);
539
540       g_free (question_dialog_primary_text);
541     }
542   else
543     {
544       accounts_dialog_setup_ui_to_add_account (dialog);
545     }
546 }
547
548 static void
549 accounts_dialog_update_settings (EmpathyAccountsDialog *dialog,
550     EmpathyAccountSettings *settings)
551 {
552   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
553
554   if (priv->settings_ready != NULL)
555     {
556       g_signal_handler_disconnect (priv->settings_ready,
557           priv->settings_ready_id);
558       priv->settings_ready = NULL;
559       priv->settings_ready_id = 0;
560     }
561
562   if (!settings)
563     {
564       GtkTreeView  *view;
565       GtkTreeModel *model;
566       GtkTreeSelection *selection;
567
568       view = GTK_TREE_VIEW (priv->treeview);
569       model = gtk_tree_view_get_model (view);
570       selection = gtk_tree_view_get_selection (view);
571
572       if (gtk_tree_model_iter_n_children (model, NULL) > 0)
573         {
574           /* We have configured accounts, select the first one if there
575            * is no other account selected already. */
576           if (!gtk_tree_selection_get_selected (selection, NULL, NULL))
577             accounts_dialog_model_select_first (dialog);
578
579           return;
580         }
581       if (empathy_connection_managers_get_cms_num (priv->cms) > 0)
582         {
583           /* We have no account configured but we have some
584            * profiles installed. The user obviously wants to add
585            * an account. Click on the Add button for him. */
586           accounts_dialog_button_add_clicked_cb (priv->button_add,
587               dialog);
588           return;
589         }
590
591       /* No account and no profile, warn the user */
592       gtk_widget_hide (priv->vbox_details);
593       gtk_widget_hide (priv->frame_new_account);
594       gtk_widget_show (priv->frame_no_protocol);
595       gtk_widget_set_sensitive (priv->button_add, FALSE);
596       return;
597     }
598
599   /* We have an account selected, destroy old settings and create a new
600    * one for the account selected */
601   gtk_widget_hide (priv->frame_new_account);
602   gtk_widget_hide (priv->frame_no_protocol);
603   gtk_widget_show (priv->vbox_details);
604   gtk_widget_set_sensitive (priv->button_add, TRUE);
605
606   if (priv->settings_widget)
607     {
608       gtk_widget_destroy (priv->settings_widget);
609       priv->settings_widget = NULL;
610     }
611
612   if (empathy_account_settings_is_ready (settings))
613     {
614       account_dialog_create_settings_widget (dialog, settings);
615     }
616   else
617     {
618       priv->settings_ready = settings;
619       priv->settings_ready_id =
620         g_signal_connect (settings, "notify::ready",
621             G_CALLBACK (account_dialog_settings_ready_cb), dialog);
622     }
623
624 }
625
626 static void
627 accounts_dialog_name_editing_started_cb (GtkCellRenderer *renderer,
628     GtkCellEditable *editable,
629     gchar *path,
630     EmpathyAccountsDialog *dialog)
631 {
632   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
633
634   if (priv->connecting_id)
635     g_source_remove (priv->connecting_id);
636
637   DEBUG ("Editing account name started; stopping flashing");
638 }
639
640 static void
641 accounts_dialog_model_pixbuf_data_func (GtkTreeViewColumn *tree_column,
642     GtkCellRenderer *cell,
643     GtkTreeModel *model,
644     GtkTreeIter *iter,
645     EmpathyAccountsDialog *dialog)
646 {
647   EmpathyAccountSettings  *settings;
648   gchar              *icon_name;
649   GdkPixbuf          *pixbuf;
650   TpConnectionStatus  status;
651   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
652
653   gtk_tree_model_get (model, iter,
654       COL_STATUS, &status,
655       COL_ACCOUNT_SETTINGS_POINTER, &settings,
656       -1);
657
658   icon_name = empathy_account_settings_get_icon_name (settings);
659   pixbuf = empathy_pixbuf_from_icon_name (icon_name, GTK_ICON_SIZE_BUTTON);
660
661   if (pixbuf)
662     {
663       if (status == TP_CONNECTION_STATUS_DISCONNECTED ||
664           (status == TP_CONNECTION_STATUS_CONNECTING &&
665               !priv->connecting_show))
666         {
667           GdkPixbuf *modded_pixbuf;
668
669           modded_pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB,
670               TRUE,
671               8,
672               gdk_pixbuf_get_width (pixbuf),
673               gdk_pixbuf_get_height (pixbuf));
674
675           gdk_pixbuf_saturate_and_pixelate (pixbuf,
676               modded_pixbuf,
677               1.0,
678               TRUE);
679           g_object_unref (pixbuf);
680           pixbuf = modded_pixbuf;
681         }
682     }
683
684   g_object_set (cell,
685       "visible", TRUE,
686       "pixbuf", pixbuf,
687       NULL);
688
689   g_object_unref (settings);
690
691   if (pixbuf)
692     g_object_unref (pixbuf);
693 }
694
695 static gboolean
696 accounts_dialog_row_changed_foreach (GtkTreeModel *model,
697     GtkTreePath *path,
698     GtkTreeIter *iter,
699     gpointer user_data)
700 {
701   gtk_tree_model_row_changed (model, path, iter);
702
703   return FALSE;
704 }
705
706 static gboolean
707 accounts_dialog_flash_connecting_cb (EmpathyAccountsDialog *dialog)
708 {
709   GtkTreeView  *view;
710   GtkTreeModel *model;
711   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
712
713   priv->connecting_show = !priv->connecting_show;
714
715   view = GTK_TREE_VIEW (priv->treeview);
716   model = gtk_tree_view_get_model (view);
717
718   gtk_tree_model_foreach (model, accounts_dialog_row_changed_foreach, NULL);
719
720   return TRUE;
721 }
722
723 static void
724 accounts_dialog_name_edited_cb (GtkCellRendererText *renderer,
725     gchar *path,
726     gchar *new_text,
727     EmpathyAccountsDialog *dialog)
728 {
729   EmpathyAccountSettings    *settings;
730   GtkTreeModel *model;
731   GtkTreePath  *treepath;
732   GtkTreeIter   iter;
733   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
734   gboolean connecting;
735
736   empathy_account_manager_get_accounts_connected (&connecting);
737
738   if (connecting)
739     {
740       priv->connecting_id = g_timeout_add (FLASH_TIMEOUT,
741           (GSourceFunc) accounts_dialog_flash_connecting_cb,
742           dialog);
743     }
744
745   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
746   treepath = gtk_tree_path_new_from_string (path);
747   gtk_tree_model_get_iter (model, &iter, treepath);
748   gtk_tree_model_get (model, &iter,
749       COL_ACCOUNT_SETTINGS_POINTER, &settings,
750       -1);
751   gtk_list_store_set (GTK_LIST_STORE (model), &iter,
752       COL_NAME, new_text,
753       -1);
754   gtk_tree_path_free (treepath);
755
756   empathy_account_settings_set_display_name_async (settings, new_text,
757       NULL, NULL);
758   g_object_set (settings, "display-name-overridden", TRUE, NULL);
759   g_object_unref (settings);
760 }
761
762 static void
763 accounts_dialog_delete_account_response_cb (GtkDialog *message_dialog,
764   gint response_id,
765   gpointer user_data)
766 {
767   TpAccount *account;
768   GtkTreeModel *model;
769   GtkTreeIter iter;
770   GtkTreeSelection *selection;
771   EmpathyAccountsDialog *account_dialog = EMPATHY_ACCOUNTS_DIALOG (user_data);
772   EmpathyAccountsDialogPriv *priv = GET_PRIV (account_dialog);
773
774   if (response_id == GTK_RESPONSE_YES)
775     {
776       selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview));
777
778       if (!gtk_tree_selection_get_selected (selection, &model, &iter))
779         return;
780
781       gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, &account, -1);
782
783       if (account != NULL)
784         {
785           tp_account_remove_async (account, NULL, NULL);
786           g_object_unref (account);
787           account = NULL;
788         }
789
790       gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
791       accounts_dialog_model_select_first (account_dialog);
792     }
793
794   gtk_widget_destroy (GTK_WIDGET (message_dialog));
795 }
796
797 static void
798 accounts_dialog_view_delete_activated_cb (EmpathyCellRendererActivatable *cell,
799     const gchar *path_string,
800     EmpathyAccountsDialog *dialog)
801 {
802   TpAccount *account;
803   GtkTreeModel *model;
804   GtkTreeIter iter;
805   gchar *question_dialog_primary_text;
806   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
807
808   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
809
810   if (!gtk_tree_model_get_iter_from_string (model, &iter, path_string))
811     return;
812
813   gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, &account, -1);
814
815   if (account == NULL || !tp_account_is_valid (account))
816     {
817       gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
818       accounts_dialog_model_select_first (dialog);
819       return;
820     }
821
822   question_dialog_primary_text = g_strdup_printf (
823       _("Do you want to remove %s from your computer?"),
824       tp_account_get_display_name (account));
825
826   accounts_dialog_show_question_dialog (dialog, question_dialog_primary_text,
827       _("This will not remove your account on the server."),
828       G_CALLBACK (accounts_dialog_delete_account_response_cb),
829       dialog,
830       GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
831       GTK_STOCK_REMOVE, GTK_RESPONSE_YES, NULL);
832
833   g_free (question_dialog_primary_text);
834
835   if (account != NULL)
836     {
837       g_object_unref (account);
838       account = NULL;
839     }
840 }
841
842 static void
843 accounts_dialog_model_add_columns (EmpathyAccountsDialog *dialog)
844 {
845   GtkTreeView       *view;
846   GtkTreeViewColumn *column;
847   GtkCellRenderer   *cell;
848   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
849
850   view = GTK_TREE_VIEW (priv->treeview);
851   gtk_tree_view_set_headers_visible (view, FALSE);
852
853   /* Account column */
854   column = gtk_tree_view_column_new ();
855   gtk_tree_view_column_set_expand (column, TRUE);
856   gtk_tree_view_append_column (view, column);
857
858   /* Icon renderer */
859   cell = gtk_cell_renderer_pixbuf_new ();
860   gtk_tree_view_column_pack_start (column, cell, FALSE);
861   gtk_tree_view_column_set_cell_data_func (column, cell,
862       (GtkTreeCellDataFunc)
863       accounts_dialog_model_pixbuf_data_func,
864       dialog,
865       NULL);
866
867   /* Name renderer */
868   cell = gtk_cell_renderer_text_new ();
869   g_object_set (cell,
870       "ellipsize", PANGO_ELLIPSIZE_END,
871       "width-chars", 25,
872       "editable", TRUE,
873       NULL);
874   gtk_tree_view_column_pack_start (column, cell, TRUE);
875   gtk_tree_view_column_add_attribute (column, cell, "text", COL_NAME);
876   g_signal_connect (cell, "edited",
877       G_CALLBACK (accounts_dialog_name_edited_cb),
878       dialog);
879   g_signal_connect (cell, "editing-started",
880       G_CALLBACK (accounts_dialog_name_editing_started_cb),
881       dialog);
882   g_object_set (cell, "ypad", 4, NULL);
883
884   /* Delete column */
885   cell = empathy_cell_renderer_activatable_new ();
886   gtk_tree_view_column_pack_start (column, cell, FALSE);
887   g_object_set (cell,
888         "icon-name", GTK_STOCK_DELETE,
889         "show-on-select", TRUE,
890         NULL);
891
892   g_signal_connect (cell, "path-activated",
893       G_CALLBACK (accounts_dialog_view_delete_activated_cb),
894       dialog);
895 }
896
897 static EmpathyAccountSettings *
898 accounts_dialog_model_get_selected_settings (EmpathyAccountsDialog *dialog)
899 {
900   GtkTreeView      *view;
901   GtkTreeModel     *model;
902   GtkTreeSelection *selection;
903   GtkTreeIter       iter;
904   EmpathyAccountSettings   *settings;
905   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
906
907   view = GTK_TREE_VIEW (priv->treeview);
908   selection = gtk_tree_view_get_selection (view);
909
910   if (!gtk_tree_selection_get_selected (selection, &model, &iter))
911     return NULL;
912
913   gtk_tree_model_get (model, &iter,
914       COL_ACCOUNT_SETTINGS_POINTER, &settings, -1);
915
916   return settings;
917 }
918
919 static void
920 accounts_dialog_model_selection_changed (GtkTreeSelection *selection,
921     EmpathyAccountsDialog *dialog)
922 {
923   EmpathyAccountSettings *settings;
924   GtkTreeModel *model;
925   GtkTreeIter   iter;
926   gboolean      is_selection;
927
928   is_selection = gtk_tree_selection_get_selected (selection, &model, &iter);
929
930   settings = accounts_dialog_model_get_selected_settings (dialog);
931   accounts_dialog_update_settings (dialog, settings);
932
933   if (settings != NULL)
934     g_object_unref (settings);
935 }
936
937 static void
938 accounts_dialog_selection_change_response_cb (GtkDialog *message_dialog,
939   gint response_id,
940   gpointer *user_data)
941 {
942   EmpathyAccountsDialog *dialog = EMPATHY_ACCOUNTS_DIALOG (user_data);
943   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
944
945   gtk_widget_destroy (GTK_WIDGET (message_dialog));
946
947     if (response_id == GTK_RESPONSE_YES && priv->destination_row != NULL)
948       {
949         /* The user wants to lose unsaved changes to the currently selected
950          * account and select another account. We discard the changes and
951          * select the other account. */
952         GtkTreePath *path;
953         GtkTreeSelection *selection;
954
955         priv->force_change_row = TRUE;
956         empathy_account_widget_discard_pending_changes (
957             priv->setting_widget_object);
958
959         path = gtk_tree_row_reference_get_path (priv->destination_row);
960         selection = gtk_tree_view_get_selection (
961             GTK_TREE_VIEW (priv->treeview));
962
963         if (path != NULL)
964           {
965             /* This will trigger a call to
966              * accounts_dialog_account_selection_change() */
967             gtk_tree_selection_select_path (selection, path);
968             gtk_tree_path_free (path);
969           }
970
971         gtk_tree_row_reference_free (priv->destination_row);
972       }
973     else
974       {
975         priv->force_change_row = FALSE;
976       }
977 }
978
979 static gboolean
980 accounts_dialog_account_selection_change (GtkTreeSelection *selection,
981     GtkTreeModel *model,
982     GtkTreePath *path,
983     gboolean path_currently_selected,
984     gpointer data)
985 {
986   TpAccount *account = NULL;
987   EmpathyAccountsDialog *dialog = EMPATHY_ACCOUNTS_DIALOG (data);
988   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
989
990   if (priv->force_change_row)
991     {
992       /* We came back here because the user wants to discard changes to his
993        * modified account. The changes have already been discarded so we
994        * just change the selected row. */
995       priv->force_change_row = FALSE;
996       return TRUE;
997     }
998
999   if (accounts_dialog_has_pending_change (dialog, &account))
1000     {
1001       /* The currently selected account has some unsaved changes. We ask
1002        * the user if he really wants to lose his changes and select another
1003        * account */
1004       gchar *question_dialog_primary_text = get_dialog_primary_text (account);
1005       priv->destination_row = gtk_tree_row_reference_new (model, path);
1006
1007       accounts_dialog_show_question_dialog (dialog,
1008           question_dialog_primary_text,
1009           _("You are about to select another account, which will discard\n"
1010               "your changes. Are you sure you want to proceed?"),
1011           G_CALLBACK (accounts_dialog_selection_change_response_cb),
1012           dialog,
1013           GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
1014           GTK_STOCK_DISCARD, GTK_RESPONSE_YES, NULL);
1015
1016       g_free (question_dialog_primary_text);
1017     }
1018   else
1019     {
1020       return TRUE;
1021     }
1022
1023   return FALSE;
1024 }
1025
1026 static void
1027 accounts_dialog_model_setup (EmpathyAccountsDialog *dialog)
1028 {
1029   GtkListStore     *store;
1030   GtkTreeSelection *selection;
1031   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1032
1033   store = gtk_list_store_new (COL_COUNT,
1034       G_TYPE_STRING,         /* name */
1035       G_TYPE_UINT,           /* status */
1036       TP_TYPE_ACCOUNT,   /* account */
1037       EMPATHY_TYPE_ACCOUNT_SETTINGS); /* settings */
1038
1039   gtk_tree_view_set_model (GTK_TREE_VIEW (priv->treeview),
1040       GTK_TREE_MODEL (store));
1041
1042   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview));
1043   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
1044   gtk_tree_selection_set_select_function (selection,
1045       accounts_dialog_account_selection_change, dialog, NULL);
1046
1047   g_signal_connect (selection, "changed",
1048       G_CALLBACK (accounts_dialog_model_selection_changed),
1049       dialog);
1050
1051   gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
1052       COL_NAME, GTK_SORT_ASCENDING);
1053
1054   accounts_dialog_model_add_columns (dialog);
1055
1056   g_object_unref (store);
1057 }
1058
1059 static gboolean
1060 accounts_dialog_get_settings_iter (EmpathyAccountsDialog *dialog,
1061     EmpathyAccountSettings *settings,
1062     GtkTreeIter *iter)
1063 {
1064   GtkTreeView      *view;
1065   GtkTreeSelection *selection;
1066   GtkTreeModel     *model;
1067   gboolean          ok;
1068   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1069
1070   /* Update the status in the model */
1071   view = GTK_TREE_VIEW (priv->treeview);
1072   selection = gtk_tree_view_get_selection (view);
1073   model = gtk_tree_view_get_model (view);
1074
1075   for (ok = gtk_tree_model_get_iter_first (model, iter);
1076        ok;
1077        ok = gtk_tree_model_iter_next (model, iter))
1078     {
1079       EmpathyAccountSettings *this_settings;
1080       gboolean   equal;
1081
1082       gtk_tree_model_get (model, iter,
1083           COL_ACCOUNT_SETTINGS_POINTER, &this_settings,
1084           -1);
1085
1086       equal = (this_settings == settings);
1087       g_object_unref (this_settings);
1088
1089       if (equal)
1090         return TRUE;
1091     }
1092
1093   return FALSE;
1094 }
1095
1096 static gboolean
1097 accounts_dialog_get_account_iter (EmpathyAccountsDialog *dialog,
1098     TpAccount *account,
1099     GtkTreeIter *iter)
1100 {
1101   GtkTreeView      *view;
1102   GtkTreeSelection *selection;
1103   GtkTreeModel     *model;
1104   gboolean          ok;
1105   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1106
1107   /* Update the status in the model */
1108   view = GTK_TREE_VIEW (priv->treeview);
1109   selection = gtk_tree_view_get_selection (view);
1110   model = gtk_tree_view_get_model (view);
1111
1112   for (ok = gtk_tree_model_get_iter_first (model, iter);
1113        ok;
1114        ok = gtk_tree_model_iter_next (model, iter))
1115     {
1116       EmpathyAccountSettings *settings;
1117       gboolean   equal;
1118
1119       gtk_tree_model_get (model, iter,
1120           COL_ACCOUNT_SETTINGS_POINTER, &settings,
1121           -1);
1122
1123       equal = empathy_account_settings_has_account (settings, account);
1124       g_object_unref (settings);
1125
1126       if (equal)
1127         return TRUE;
1128     }
1129
1130   return FALSE;
1131 }
1132
1133 static void
1134 accounts_dialog_model_set_selected (EmpathyAccountsDialog *dialog,
1135     EmpathyAccountSettings *settings)
1136 {
1137   GtkTreeSelection *selection;
1138   GtkTreeIter       iter;
1139   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1140
1141   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview));
1142   if (accounts_dialog_get_settings_iter (dialog, settings, &iter))
1143     gtk_tree_selection_select_iter (selection, &iter);
1144 }
1145 static void
1146 accounts_dialog_add (EmpathyAccountsDialog *dialog,
1147     EmpathyAccountSettings *settings)
1148 {
1149   GtkTreeModel       *model;
1150   GtkTreeIter         iter;
1151   const gchar        *name;
1152   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1153
1154   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
1155   name = empathy_account_settings_get_display_name (settings);
1156
1157   gtk_list_store_append (GTK_LIST_STORE (model), &iter);
1158
1159   gtk_list_store_set (GTK_LIST_STORE (model), &iter,
1160       COL_NAME, name,
1161       COL_STATUS, TP_CONNECTION_STATUS_DISCONNECTED,
1162       COL_ACCOUNT_SETTINGS_POINTER, settings,
1163       -1);
1164 }
1165
1166 static void
1167 accounts_dialog_connection_changed_cb (TpAccount *account,
1168     guint old_status,
1169     guint current,
1170     guint reason,
1171     gchar *dbus_error_name,
1172     GHashTable *details,
1173     EmpathyAccountsDialog *dialog)
1174 {
1175   GtkTreeModel *model;
1176   GtkTreeIter   iter;
1177   gboolean      found;
1178   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1179
1180   /* Update the status in the model */
1181   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
1182
1183   if (accounts_dialog_get_account_iter (dialog, account, &iter))
1184     {
1185       GtkTreePath *path;
1186
1187       gtk_list_store_set (GTK_LIST_STORE (model), &iter,
1188           COL_STATUS, current,
1189           -1);
1190
1191       path = gtk_tree_model_get_path (model, &iter);
1192       gtk_tree_model_row_changed (model, path, &iter);
1193       gtk_tree_path_free (path);
1194     }
1195
1196   empathy_account_manager_get_accounts_connected (&found);
1197
1198   if (!found && priv->connecting_id)
1199     {
1200       g_source_remove (priv->connecting_id);
1201       priv->connecting_id = 0;
1202     }
1203
1204   if (found && !priv->connecting_id)
1205     priv->connecting_id = g_timeout_add (FLASH_TIMEOUT,
1206         (GSourceFunc) accounts_dialog_flash_connecting_cb,
1207         dialog);
1208 }
1209
1210 static void
1211 accounts_dialog_account_display_name_changed_cb (TpAccount *account,
1212   GParamSpec *pspec,
1213   gpointer user_data)
1214 {
1215   const gchar *display_name;
1216   GtkTreeIter iter;
1217   GtkTreeModel *model;
1218   EmpathyAccountSettings *settings;
1219   TpAccount *selected_account;
1220   EmpathyAccountsDialog *dialog = EMPATHY_ACCOUNTS_DIALOG (user_data);
1221   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1222
1223   display_name = tp_account_get_display_name (account);
1224   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
1225   settings = accounts_dialog_model_get_selected_settings (dialog);
1226   if (settings == NULL)
1227     return;
1228
1229   selected_account = empathy_account_settings_get_account (settings);
1230
1231   if (accounts_dialog_get_account_iter (dialog, account, &iter))
1232     {
1233       gtk_list_store_set (GTK_LIST_STORE (model), &iter,
1234           COL_NAME, display_name,
1235           -1);
1236     }
1237
1238   if (selected_account == account)
1239     accounts_dialog_update_name_label (dialog, display_name);
1240
1241   g_object_unref (settings);
1242 }
1243
1244 static void
1245 accounts_dialog_add_account (EmpathyAccountsDialog *dialog,
1246     TpAccount *account)
1247 {
1248   EmpathyAccountSettings *settings;
1249   GtkTreeModel       *model;
1250   GtkTreeIter         iter;
1251   TpConnectionStatus  status;
1252   const gchar        *name;
1253   gboolean            enabled;
1254   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1255
1256   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
1257   status = tp_account_get_connection_status (account, NULL);
1258   name = tp_account_get_display_name (account);
1259   enabled = tp_account_is_enabled (account);
1260
1261   settings = empathy_account_settings_new_for_account (account);
1262
1263   if (!accounts_dialog_get_account_iter (dialog, account, &iter))
1264     gtk_list_store_append (GTK_LIST_STORE (model), &iter);
1265
1266   gtk_list_store_set (GTK_LIST_STORE (model), &iter,
1267       COL_NAME, name,
1268       COL_STATUS, status,
1269       COL_ACCOUNT_POINTER, account,
1270       COL_ACCOUNT_SETTINGS_POINTER, settings,
1271       -1);
1272
1273   accounts_dialog_connection_changed_cb (account,
1274       0,
1275       status,
1276       TP_CONNECTION_STATUS_DISCONNECTED,
1277       NULL,
1278       NULL,
1279       dialog);
1280
1281   empathy_signal_connect_weak (account, "notify::display-name",
1282       G_CALLBACK (accounts_dialog_account_display_name_changed_cb),
1283       G_OBJECT (dialog));
1284
1285   g_object_unref (settings);
1286 }
1287
1288 static void
1289 accounts_dialog_account_validity_changed_cb (TpAccountManager *manager,
1290     TpAccount *account,
1291     gboolean valid,
1292     EmpathyAccountsDialog *dialog)
1293 {
1294   accounts_dialog_add_account (dialog, account);
1295 }
1296
1297 static void
1298 accounts_dialog_account_removed_cb (TpAccountManager *manager,
1299     TpAccount *account,
1300     EmpathyAccountsDialog *dialog)
1301 {
1302   GtkTreeIter iter;
1303   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1304
1305   if (accounts_dialog_get_account_iter (dialog, account, &iter))
1306     {
1307       gtk_list_store_remove (GTK_LIST_STORE (
1308             gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview))), &iter);
1309     }
1310 }
1311
1312 static void
1313 enable_or_disable_account (EmpathyAccountsDialog *dialog,
1314     TpAccount *account,
1315     gboolean enabled)
1316 {
1317   GtkTreeModel *model;
1318   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1319
1320   /* Update the status in the model */
1321   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
1322
1323   DEBUG ("Account %s is now %s",
1324       tp_account_get_display_name (account),
1325       enabled ? "enabled" : "disabled");
1326 }
1327
1328 static void
1329 accounts_dialog_account_disabled_cb (TpAccountManager *manager,
1330     TpAccount *account,
1331     EmpathyAccountsDialog *dialog)
1332 {
1333   enable_or_disable_account (dialog, account, FALSE);
1334 }
1335
1336 static void
1337 accounts_dialog_account_enabled_cb (TpAccountManager *manager,
1338     TpAccount *account,
1339     EmpathyAccountsDialog *dialog)
1340 {
1341   enable_or_disable_account (dialog, account, TRUE);
1342 }
1343
1344 static void
1345 accounts_dialog_button_create_clicked_cb (GtkWidget *button,
1346     EmpathyAccountsDialog *dialog)
1347 {
1348   EmpathyAccountSettings *settings;
1349   gchar *str;
1350   const gchar *display_name;
1351   TpConnectionManager *cm;
1352   TpConnectionManagerProtocol *proto;
1353   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1354   gboolean is_gtalk;
1355
1356   cm = empathy_protocol_chooser_dup_selected (
1357       EMPATHY_PROTOCOL_CHOOSER (priv->combobox_protocol), &proto, &is_gtalk);
1358
1359   display_name = empathy_protocol_name_to_display_name (
1360       is_gtalk ? "gtalk" : proto->name);
1361
1362   if (display_name == NULL)
1363     display_name = proto->name;
1364
1365   /* Create account */
1366   /* To translator: %s is the name of the protocol, such as "Google Talk" or
1367    * "Yahoo!"
1368    */
1369   str = g_strdup_printf (_("New %s account"), display_name);
1370   settings = empathy_account_settings_new (cm->name, proto->name, str);
1371
1372   g_free (str);
1373
1374 #ifndef HAVE_MOBLIN
1375   if (tp_connection_manager_protocol_can_register (proto))
1376     {
1377       gboolean active;
1378
1379       active = gtk_toggle_button_get_active
1380         (GTK_TOGGLE_BUTTON (priv->radiobutton_register));
1381       if (active)
1382         empathy_account_settings_set_boolean (settings, "register", TRUE);
1383     }
1384 #endif
1385
1386   if (is_gtalk)
1387     empathy_account_settings_set_icon_name_async (settings, "im-google-talk",
1388         NULL, NULL);
1389
1390   accounts_dialog_add (dialog, settings);
1391   accounts_dialog_model_set_selected (dialog, settings);
1392
1393   g_object_unref (settings);
1394   g_object_unref (cm);
1395 }
1396
1397 static void
1398 accounts_dialog_button_back_clicked_cb (GtkWidget *button,
1399     EmpathyAccountsDialog *dialog)
1400 {
1401   EmpathyAccountSettings *settings;
1402
1403   settings = accounts_dialog_model_get_selected_settings (dialog);
1404   accounts_dialog_update_settings (dialog, settings);
1405
1406   if (settings)
1407     g_object_unref (settings);
1408 }
1409
1410 static void
1411 accounts_dialog_button_help_clicked_cb (GtkWidget *button,
1412     EmpathyAccountsDialog *dialog)
1413 {
1414   empathy_url_show (button, "ghelp:empathy?accounts-window");
1415 }
1416
1417 static void
1418 accounts_dialog_button_import_clicked_cb (GtkWidget *button,
1419     EmpathyAccountsDialog *dialog)
1420 {
1421   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1422   GtkWidget *import_dialog;
1423
1424   import_dialog = empathy_import_dialog_new (GTK_WINDOW (priv->window),
1425       FALSE);
1426   gtk_widget_show (import_dialog);
1427 }
1428
1429 static void
1430 accounts_dialog_close_response_cb (GtkDialog *message_dialog,
1431   gint response_id,
1432   gpointer user_data)
1433 {
1434   GtkWidget *account_dialog = GTK_WIDGET (user_data);
1435
1436   gtk_widget_destroy (GTK_WIDGET (message_dialog));
1437
1438   if (response_id == GTK_RESPONSE_YES)
1439     gtk_widget_destroy (account_dialog);
1440 }
1441
1442 static void
1443 accounts_dialog_response_cb (GtkWidget *widget,
1444     gint response,
1445     EmpathyAccountsDialog *dialog)
1446 {
1447   TpAccount *account = NULL;
1448
1449   if (accounts_dialog_has_pending_change (dialog, &account))
1450     {
1451       gchar *question_dialog_primary_text = get_dialog_primary_text (account);
1452
1453       accounts_dialog_show_question_dialog (dialog,
1454           question_dialog_primary_text,
1455           _("You are about to close the window, which will discard\n"
1456               "your changes. Are you sure you want to proceed?"),
1457           G_CALLBACK (accounts_dialog_close_response_cb),
1458           widget,
1459           GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
1460           GTK_STOCK_DISCARD, GTK_RESPONSE_YES, NULL);
1461
1462       g_free (question_dialog_primary_text);
1463     }
1464   else if (response == GTK_RESPONSE_CLOSE ||
1465            response == GTK_RESPONSE_DELETE_EVENT)
1466     gtk_widget_destroy (widget);
1467 }
1468
1469 static gboolean
1470 accounts_dialog_delete_event_cb (GtkWidget *widget,
1471     GdkEvent *event,
1472     EmpathyAccountsDialog *dialog)
1473 {
1474   /* we maunally handle responses to delete events */
1475   return TRUE;
1476 }
1477
1478 static void
1479 accounts_dialog_destroy_cb (GtkObject *obj,
1480     EmpathyAccountsDialog *dialog)
1481 {
1482   DEBUG ("%p", obj);
1483
1484   g_object_unref (dialog);
1485 }
1486
1487 static void
1488 accounts_dialog_set_selected_account (EmpathyAccountsDialog *dialog,
1489     TpAccount *account)
1490 {
1491   GtkTreeSelection *selection;
1492   GtkTreeIter       iter;
1493   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1494
1495   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview));
1496   if (accounts_dialog_get_account_iter (dialog, account, &iter))
1497     gtk_tree_selection_select_iter (selection, &iter);
1498 }
1499
1500 static void
1501 accounts_dialog_cms_ready_cb (EmpathyConnectionManagers *cms,
1502     GParamSpec *pspec,
1503     EmpathyAccountsDialog *dialog)
1504 {
1505   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1506
1507   if (empathy_connection_managers_is_ready (cms))
1508     {
1509       accounts_dialog_update_settings (dialog, NULL);
1510
1511       if (priv->initial_selection != NULL)
1512         {
1513           accounts_dialog_set_selected_account
1514               (dialog, priv->initial_selection);
1515           g_object_unref (priv->initial_selection);
1516           priv->initial_selection = NULL;
1517         }
1518     }
1519 }
1520
1521 static void
1522 accounts_dialog_accounts_setup (EmpathyAccountsDialog *dialog)
1523 {
1524   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1525   GList *accounts, *l;
1526
1527   g_signal_connect (priv->account_manager, "account-validity-changed",
1528       G_CALLBACK (accounts_dialog_account_validity_changed_cb),
1529       dialog);
1530   g_signal_connect (priv->account_manager, "account-removed",
1531       G_CALLBACK (accounts_dialog_account_removed_cb),
1532       dialog);
1533   g_signal_connect (priv->account_manager, "account-enabled",
1534       G_CALLBACK (accounts_dialog_account_enabled_cb),
1535       dialog);
1536   g_signal_connect (priv->account_manager, "account-disabled",
1537       G_CALLBACK (accounts_dialog_account_disabled_cb),
1538       dialog);
1539
1540   /* Add existing accounts */
1541   accounts = tp_account_manager_get_valid_accounts (priv->account_manager);
1542   for (l = accounts; l; l = l->next)
1543     {
1544       accounts_dialog_add_account (dialog, l->data);
1545
1546       empathy_signal_connect_weak (l->data, "status-changed",
1547           G_CALLBACK (accounts_dialog_connection_changed_cb), G_OBJECT (dialog));
1548     }
1549   g_list_free (accounts);
1550
1551   priv->cms = empathy_connection_managers_dup_singleton ();
1552   if (!empathy_connection_managers_is_ready (priv->cms))
1553     g_signal_connect (priv->cms, "notify::ready",
1554         G_CALLBACK (accounts_dialog_cms_ready_cb), dialog);
1555
1556   accounts_dialog_model_select_first (dialog);
1557 }
1558
1559 static void
1560 accounts_dialog_manager_ready_cb (GObject *source_object,
1561     GAsyncResult *result,
1562     gpointer user_data)
1563 {
1564   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
1565   GError *error = NULL;
1566
1567   if (!tp_account_manager_prepare_finish (manager, result, &error))
1568     {
1569       DEBUG ("Failed to prepare account manager: %s", error->message);
1570       g_error_free (error);
1571       return;
1572     }
1573
1574   accounts_dialog_accounts_setup (user_data);
1575 }
1576
1577 static void
1578 accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
1579 {
1580   GtkBuilder                   *gui;
1581   gchar                        *filename;
1582   EmpathyAccountsDialogPriv    *priv = GET_PRIV (dialog);
1583 #ifdef HAVE_MOBLIN
1584   GtkWidget                    *action_area;
1585 #endif
1586
1587   filename = empathy_file_lookup ("empathy-accounts-dialog.ui", "src");
1588
1589   gui = empathy_builder_get_file (filename,
1590       "accounts_dialog", &priv->window,
1591       "vbox_details", &priv->vbox_details,
1592       "frame_no_protocol", &priv->frame_no_protocol,
1593       "alignment_settings", &priv->alignment_settings,
1594       "treeview", &priv->treeview,
1595       "frame_new_account", &priv->frame_new_account,
1596       "hbox_type", &priv->hbox_type,
1597       "button_create", &priv->button_create,
1598       "button_back", &priv->button_back,
1599       "radiobutton_reuse", &priv->radiobutton_reuse,
1600       "radiobutton_register", &priv->radiobutton_register,
1601       "image_type", &priv->image_type,
1602       "label_name", &priv->label_name,
1603       "button_add", &priv->button_add,
1604       "button_import", &priv->button_import,
1605       NULL);
1606   g_free (filename);
1607
1608   empathy_builder_connect (gui, dialog,
1609       "accounts_dialog", "response", accounts_dialog_response_cb,
1610       "accounts_dialog", "destroy", accounts_dialog_destroy_cb,
1611       "accounts_dialog", "delete-event", accounts_dialog_delete_event_cb,
1612       "button_create", "clicked", accounts_dialog_button_create_clicked_cb,
1613       "button_back", "clicked", accounts_dialog_button_back_clicked_cb,
1614       "button_add", "clicked", accounts_dialog_button_add_clicked_cb,
1615       "button_help", "clicked", accounts_dialog_button_help_clicked_cb,
1616       "button_import", "clicked", accounts_dialog_button_import_clicked_cb,
1617       NULL);
1618
1619   g_object_unref (gui);
1620
1621 #ifdef HAVE_MOBLIN
1622   action_area = gtk_dialog_get_action_area (GTK_DIALOG (priv->window));
1623   gtk_widget_hide (action_area);
1624
1625   /* Translators: this is used only when built on a moblin platform */
1626   gtk_button_set_label (GTK_BUTTON (priv->button_create), _("_Next"));
1627   gtk_button_set_use_underline (GTK_BUTTON (priv->button_create), TRUE);
1628 #endif
1629
1630   priv->combobox_protocol = empathy_protocol_chooser_new ();
1631   gtk_box_pack_start (GTK_BOX (priv->hbox_type),
1632       priv->combobox_protocol,
1633       TRUE, TRUE, 0);
1634   gtk_widget_show (priv->combobox_protocol);
1635   g_signal_connect (priv->combobox_protocol, "changed",
1636       G_CALLBACK (accounts_dialog_protocol_changed_cb),
1637       dialog);
1638
1639   if (priv->parent_window)
1640     gtk_window_set_transient_for (GTK_WINDOW (priv->window),
1641         priv->parent_window);
1642 }
1643
1644 static void
1645 do_dispose (GObject *obj)
1646 {
1647   EmpathyAccountsDialog *dialog = EMPATHY_ACCOUNTS_DIALOG (obj);
1648   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1649
1650   /* Disconnect signals */
1651   g_signal_handlers_disconnect_by_func (priv->account_manager,
1652       accounts_dialog_account_validity_changed_cb,
1653       dialog);
1654   g_signal_handlers_disconnect_by_func (priv->account_manager,
1655       accounts_dialog_account_removed_cb,
1656       dialog);
1657   g_signal_handlers_disconnect_by_func (priv->account_manager,
1658       accounts_dialog_account_enabled_cb,
1659       dialog);
1660   g_signal_handlers_disconnect_by_func (priv->account_manager,
1661       accounts_dialog_account_disabled_cb,
1662       dialog);
1663   g_signal_handlers_disconnect_by_func (priv->account_manager,
1664       accounts_dialog_manager_ready_cb,
1665       dialog);
1666
1667   if (priv->connecting_id)
1668     g_source_remove (priv->connecting_id);
1669
1670   if (priv->account_manager != NULL)
1671     {
1672       g_object_unref (priv->account_manager);
1673       priv->account_manager = NULL;
1674     }
1675
1676   if (priv->cms != NULL)
1677     {
1678       g_object_unref (priv->cms);
1679       priv->cms = NULL;
1680     }
1681
1682   if (priv->initial_selection != NULL)
1683     g_object_unref (priv->initial_selection);
1684   priv->initial_selection = NULL;
1685
1686   G_OBJECT_CLASS (empathy_accounts_dialog_parent_class)->dispose (obj);
1687 }
1688
1689 static GObject *
1690 do_constructor (GType type,
1691     guint n_props,
1692     GObjectConstructParam *props)
1693 {
1694   GObject *retval;
1695
1696   if (dialog_singleton)
1697     {
1698       retval = G_OBJECT (dialog_singleton);
1699       g_object_ref (retval);
1700     }
1701   else
1702     {
1703       retval =
1704         G_OBJECT_CLASS (empathy_accounts_dialog_parent_class)->constructor
1705             (type, n_props, props);
1706
1707       dialog_singleton = EMPATHY_ACCOUNTS_DIALOG (retval);
1708       g_object_add_weak_pointer (retval, (gpointer) &dialog_singleton);
1709       /* We add an extra reference that we'll release when the dialog is
1710        * destroyed (accounts_dialog_destroy_cb) */
1711       g_object_ref (retval);
1712     }
1713
1714   return retval;
1715 }
1716
1717 static void
1718 do_get_property (GObject *object,
1719     guint property_id,
1720     GValue *value,
1721     GParamSpec *pspec)
1722 {
1723   EmpathyAccountsDialogPriv *priv = GET_PRIV (object);
1724
1725   switch (property_id)
1726     {
1727     case PROP_PARENT:
1728       g_value_set_object (value, priv->parent_window);
1729       break;
1730     default:
1731       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
1732     }
1733 }
1734
1735 static void
1736 do_set_property (GObject *object,
1737     guint property_id,
1738     const GValue *value,
1739     GParamSpec *pspec)
1740 {
1741   EmpathyAccountsDialogPriv *priv = GET_PRIV (object);
1742
1743   switch (property_id)
1744     {
1745     case PROP_PARENT:
1746       priv->parent_window = g_value_get_object (value);
1747       break;
1748     default:
1749       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
1750     }
1751 }
1752
1753 static void
1754 do_constructed (GObject *object)
1755 {
1756   EmpathyAccountsDialog *dialog = EMPATHY_ACCOUNTS_DIALOG (object);
1757   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
1758   gboolean import_asked;
1759
1760   accounts_dialog_build_ui (dialog);
1761   accounts_dialog_model_setup (dialog);
1762
1763   /* Set up signalling */
1764   priv->account_manager = tp_account_manager_dup ();
1765
1766   tp_account_manager_prepare_async (priv->account_manager, NULL,
1767       accounts_dialog_manager_ready_cb, dialog);
1768
1769   empathy_conf_get_bool (empathy_conf_get (),
1770       EMPATHY_PREFS_IMPORT_ASKED, &import_asked);
1771
1772   if (empathy_import_accounts_to_import ())
1773     {
1774       gtk_widget_show (priv->button_import);
1775
1776       if (!import_asked)
1777         {
1778           GtkWidget *import_dialog;
1779
1780           empathy_conf_set_bool (empathy_conf_get (),
1781               EMPATHY_PREFS_IMPORT_ASKED, TRUE);
1782           import_dialog = empathy_import_dialog_new (GTK_WINDOW (priv->window),
1783               FALSE);
1784           gtk_widget_show (import_dialog);
1785         }
1786     }
1787 }
1788
1789 static void
1790 empathy_accounts_dialog_class_init (EmpathyAccountsDialogClass *klass)
1791 {
1792   GObjectClass *oclass = G_OBJECT_CLASS (klass);
1793   GParamSpec *param_spec;
1794
1795   oclass->constructor = do_constructor;
1796   oclass->dispose = do_dispose;
1797   oclass->constructed = do_constructed;
1798   oclass->set_property = do_set_property;
1799   oclass->get_property = do_get_property;
1800
1801   param_spec = g_param_spec_object ("parent",
1802       "parent", "The parent window",
1803       GTK_TYPE_WINDOW,
1804       G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY);
1805   g_object_class_install_property (oclass, PROP_PARENT, param_spec);
1806
1807   g_type_class_add_private (klass, sizeof (EmpathyAccountsDialogPriv));
1808 }
1809
1810 static void
1811 empathy_accounts_dialog_init (EmpathyAccountsDialog *dialog)
1812 {
1813   EmpathyAccountsDialogPriv *priv;
1814
1815   priv = G_TYPE_INSTANCE_GET_PRIVATE ((dialog),
1816       EMPATHY_TYPE_ACCOUNTS_DIALOG,
1817       EmpathyAccountsDialogPriv);
1818   dialog->priv = priv;
1819 }
1820
1821 /* public methods */
1822
1823 GtkWidget *
1824 empathy_accounts_dialog_show (GtkWindow *parent,
1825     TpAccount *selected_account)
1826 {
1827   EmpathyAccountsDialog *dialog;
1828   EmpathyAccountsDialogPriv *priv;
1829
1830   dialog = g_object_new (EMPATHY_TYPE_ACCOUNTS_DIALOG,
1831       "parent", parent, NULL);
1832
1833   priv = GET_PRIV (dialog);
1834
1835   if (selected_account)
1836     {
1837       if (priv->cms != NULL && empathy_connection_managers_is_ready (priv->cms))
1838         accounts_dialog_set_selected_account (dialog, selected_account);
1839       else
1840         /* save the selection to set it later when the cms
1841          * becomes ready.
1842          */
1843         priv->initial_selection = g_object_ref (selected_account);
1844     }
1845
1846   gtk_window_present (GTK_WINDOW (priv->window));
1847   /* EmpathyAccountsDialog kepts a ref on itself until the dialog is
1848    * destroyed so we can release the ref returned by the constructor now. */
1849   g_object_unref (dialog);
1850
1851   return priv->window;
1852 }