]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-accounts-dialog.c
Align param names on the left.
[empathy.git] / libempathy-gtk / empathy-accounts-dialog.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2005-2007 Imendio AB
4  * Copyright (C) 2007 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  * 
21  * Authors: Martyn Russell <martyn@imendio.com>
22  *          Xavier Claessens <xclaesse@gmail.com>
23  */
24
25 #include <config.h>
26
27 #include <string.h>
28 #include <stdlib.h>
29
30 #include <gtk/gtk.h>
31 #include <glade/glade.h>
32 #include <glib/gi18n.h>
33 #include <dbus/dbus-glib.h>
34
35 #include <libmissioncontrol/mc-account.h>
36 #include <libmissioncontrol/mc-profile.h>
37 #include <libmissioncontrol/mission-control.h>
38 #include <libmissioncontrol/mc-account-monitor.h>
39 #include <libtelepathy/tp-constants.h>
40
41 #include <libempathy/empathy-debug.h>
42 #include <libempathy/empathy-utils.h>
43 #include <libempathy-gtk/empathy-ui-utils.h>
44
45 #include "empathy-accounts-dialog.h"
46 #include "empathy-profile-chooser.h"
47 #include "empathy-account-widget-generic.h"
48 #include "empathy-account-widget-jabber.h"
49 #include "empathy-account-widget-msn.h"
50
51 #define DEBUG_DOMAIN "AccountDialog"
52
53 /* Flashing delay for icons (milliseconds). */
54 #define FLASH_TIMEOUT 500
55
56 typedef struct {
57         GtkWidget        *window;
58
59         GtkWidget        *alignment_settings;
60
61         GtkWidget        *vbox_details;
62         GtkWidget        *frame_no_account;
63         GtkWidget        *label_no_account;
64         GtkWidget        *label_no_account_blurb;
65
66         GtkWidget        *treeview;
67
68         GtkWidget        *button_remove;
69         GtkWidget        *button_connect;
70
71         GtkWidget        *frame_new_account;
72         GtkWidget        *combobox_profile;
73         GtkWidget        *entry_name;
74         GtkWidget        *table_new_account;
75         GtkWidget        *button_create;
76         GtkWidget        *button_back;
77
78         GtkWidget        *image_type;
79         GtkWidget        *label_name;
80         GtkWidget        *label_type;
81         GtkWidget        *settings_widget;
82
83         gboolean          connecting_show;
84         guint             connecting_id;
85         gboolean          account_changed;
86
87         MissionControl   *mc;
88         McAccountMonitor *monitor;
89 } EmpathyAccountsDialog;
90
91 enum {
92         COL_NAME,
93         COL_STATUS,
94         COL_ACCOUNT_POINTER,
95         COL_COUNT
96 };
97
98 static void       accounts_dialog_setup                     (EmpathyAccountsDialog            *dialog);
99 static void       accounts_dialog_update_account            (EmpathyAccountsDialog            *dialog,
100                                                              McAccount                       *account);
101 static void       accounts_dialog_model_setup               (EmpathyAccountsDialog            *dialog);
102 static void       accounts_dialog_model_add_columns         (EmpathyAccountsDialog            *dialog);
103 static void       accounts_dialog_model_select_first        (EmpathyAccountsDialog            *dialog);
104 static void       accounts_dialog_model_pixbuf_data_func    (GtkTreeViewColumn               *tree_column,
105                                                              GtkCellRenderer                 *cell,
106                                                              GtkTreeModel                    *model,
107                                                              GtkTreeIter                     *iter,
108                                                              EmpathyAccountsDialog            *dialog);
109 static McAccount *accounts_dialog_model_get_selected        (EmpathyAccountsDialog            *dialog);
110 static void       accounts_dialog_model_set_selected        (EmpathyAccountsDialog            *dialog,
111                                                              McAccount                       *account);
112 static gboolean   accounts_dialog_model_remove_selected     (EmpathyAccountsDialog            *dialog);
113 static void       accounts_dialog_model_selection_changed   (GtkTreeSelection                *selection,
114                                                              EmpathyAccountsDialog            *dialog);
115 static void       accounts_dialog_add_account               (EmpathyAccountsDialog            *dialog,
116                                                              McAccount                       *account);
117 static void       accounts_dialog_account_added_cb          (McAccountMonitor                *monitor,
118                                                              gchar                           *unique_name,
119                                                              EmpathyAccountsDialog            *dialog);
120 static void       accounts_dialog_account_removed_cb        (McAccountMonitor                *monitor,
121                                                              gchar                           *unique_name,
122                                                              EmpathyAccountsDialog            *dialog);
123 static gboolean   accounts_dialog_row_changed_foreach       (GtkTreeModel                    *model,
124                                                              GtkTreePath                     *path,
125                                                              GtkTreeIter                     *iter,
126                                                              gpointer                         user_data);
127 static gboolean   accounts_dialog_flash_connecting_cb       (EmpathyAccountsDialog            *dialog);
128 static void       accounts_dialog_status_changed_cb         (MissionControl                  *mc,
129                                                              TelepathyConnectionStatus        status,
130                                                              McPresence                       presence,
131                                                              TelepathyConnectionStatusReason  reason,
132                                                              const gchar                     *unique_name,
133                                                              EmpathyAccountsDialog            *dialog);
134 static void       accounts_dialog_entry_name_changed_cb     (GtkWidget                       *widget,
135                                                              EmpathyAccountsDialog            *dialog);
136 static void       accounts_dialog_button_create_clicked_cb  (GtkWidget                       *button,
137                                                              EmpathyAccountsDialog            *dialog);
138 static void       accounts_dialog_button_back_clicked_cb    (GtkWidget                       *button,
139                                                              EmpathyAccountsDialog            *dialog);
140 static void       accounts_dialog_button_connect_clicked_cb (GtkWidget                       *button,
141                                                              EmpathyAccountsDialog            *dialog);
142 static void       accounts_dialog_button_add_clicked_cb     (GtkWidget                       *button,
143                                                              EmpathyAccountsDialog            *dialog);
144 static void       accounts_dialog_remove_response_cb        (GtkWidget                       *dialog,
145                                                              gint                             response,
146                                                              McAccount                       *account);
147 static void       accounts_dialog_button_remove_clicked_cb  (GtkWidget                       *button,
148                                                              EmpathyAccountsDialog            *dialog);
149 static void       accounts_dialog_treeview_row_activated_cb (GtkTreeView                     *tree_view,
150                                                              GtkTreePath                     *path,
151                                                              GtkTreeViewColumn               *column,
152                                                              EmpathyAccountsDialog            *dialog);
153 static void       accounts_dialog_response_cb               (GtkWidget                       *widget,
154                                                              gint                             response,
155                                                              EmpathyAccountsDialog            *dialog);
156 static void       accounts_dialog_destroy_cb                (GtkWidget                       *widget,
157                                                              EmpathyAccountsDialog            *dialog);
158
159 static void
160 accounts_dialog_setup (EmpathyAccountsDialog *dialog)
161 {
162         GtkTreeView  *view;
163         GtkListStore *store;
164         GtkTreeIter   iter;
165         GList        *accounts, *l;
166
167         view = GTK_TREE_VIEW (dialog->treeview);
168         store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
169
170         accounts = mc_accounts_list ();
171
172         for (l = accounts; l; l = l->next) {
173                 McAccount                 *account;
174                 const gchar               *name;
175                 TelepathyConnectionStatus  status;
176
177                 account = l->data;
178
179                 name = mc_account_get_display_name (account);
180                 if (!name) {
181                         continue;
182                 }
183
184                 status = mission_control_get_connection_status (dialog->mc, account, NULL);
185
186                 gtk_list_store_insert_with_values (store, &iter,
187                                                    -1,
188                                                    COL_NAME, name,
189                                                    COL_STATUS, status,
190                                                    COL_ACCOUNT_POINTER, account,
191                                                    -1);
192
193                 accounts_dialog_status_changed_cb (dialog->mc,
194                                                    status,
195                                                    MC_PRESENCE_UNSET,
196                                                    TP_CONN_STATUS_REASON_NONE_SPECIFIED,
197                                                    mc_account_get_unique_name (account),
198                                                    dialog);
199
200                 g_object_unref (account);
201         }
202
203         g_list_free (accounts);
204 }
205
206 static void
207 accounts_dialog_update_connect_button (EmpathyAccountsDialog *dialog)
208 {
209         McAccount   *account;
210         GtkWidget   *image;
211         const gchar *stock_id;
212         const gchar *label;
213
214         account = accounts_dialog_model_get_selected (dialog);
215         
216         gtk_widget_set_sensitive (dialog->button_connect, account != NULL);
217
218         if (account && mc_account_is_enabled (account)) {
219                 label = _("Disable");
220                 stock_id = GTK_STOCK_DISCONNECT;
221         } else {
222                 label = _("Enable");
223                 stock_id = GTK_STOCK_CONNECT;
224         }
225
226         image = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON);
227
228         gtk_button_set_label (GTK_BUTTON (dialog->button_connect), label);
229         gtk_button_set_image (GTK_BUTTON (dialog->button_connect), image);
230 }
231
232 static void
233 accounts_dialog_update_account (EmpathyAccountsDialog *dialog,
234                                 McAccount            *account)
235 {
236         if (dialog->settings_widget) {
237                 gtk_widget_destroy (dialog->settings_widget);
238                 dialog->settings_widget = NULL;
239         }
240
241         if (!account) {
242                 GtkTreeView  *view;
243                 GtkTreeModel *model;
244
245                 gtk_widget_show (dialog->frame_no_account);
246                 gtk_widget_hide (dialog->vbox_details);
247
248                 gtk_widget_set_sensitive (dialog->button_connect, FALSE);
249                 gtk_widget_set_sensitive (dialog->button_remove, FALSE);
250
251                 view = GTK_TREE_VIEW (dialog->treeview);
252                 model = gtk_tree_view_get_model (view);
253
254                 if (gtk_tree_model_iter_n_children (model, NULL) > 0) {
255                         gtk_label_set_markup (GTK_LABEL (dialog->label_no_account),
256                                               _("<b>No Account Selected</b>"));
257                         gtk_label_set_markup (GTK_LABEL (dialog->label_no_account_blurb),
258                                               _("To add a new account, you can click on the "
259                                                 "'Add' button and a new entry will be created "
260                                                 "for you to start configuring.\n"
261                                                 "\n"
262                                                 "If you do not want to add an account, simply "
263                                                 "click on the account you want to configure in "
264                                                 "the list on the left."));
265                 } else {
266                         gtk_label_set_markup (GTK_LABEL (dialog->label_no_account),
267                                               _("<b>No Accounts Configured</b>"));
268                         gtk_label_set_markup (GTK_LABEL (dialog->label_no_account_blurb),
269                                               _("To add a new account, you can click on the "
270                                                 "'Add' button and a new entry will be created "
271                                                 "for you to start configuring."));
272                 }
273         } else {
274                 McProfile *profile;
275                 const gchar *config_ui;
276
277                 gtk_widget_hide (dialog->frame_no_account);
278                 gtk_widget_show (dialog->vbox_details);
279
280                 profile = mc_account_get_profile (account);
281                 config_ui = mc_profile_get_configuration_ui (profile);
282                 g_object_unref (profile);
283
284                 if (strcmp (config_ui, "jabber") == 0) {
285                         dialog->settings_widget = 
286                                 empathy_account_widget_jabber_new (account);
287                 } 
288                 else if (strcmp (config_ui, "msn") == 0) {
289                         dialog ->settings_widget =
290                                 empathy_account_widget_msn_new (account);
291                 }
292                 else {
293                         dialog->settings_widget = 
294                                 empathy_account_widget_generic_new (account);
295                 }
296                 
297                 gtk_widget_grab_focus (dialog->settings_widget);
298         }
299
300         if (dialog->settings_widget) {
301                 gtk_container_add (GTK_CONTAINER (dialog->alignment_settings),
302                                    dialog->settings_widget);
303         }
304
305         if (account) {
306                 McProfile *profile;
307                 gchar     *text;
308
309                 profile = mc_account_get_profile (account);
310                 gtk_image_set_from_icon_name (GTK_IMAGE (dialog->image_type),
311                                               mc_profile_get_icon_name (profile),
312                                               GTK_ICON_SIZE_DIALOG);
313                 /* FIXME: Uncomment once we depend on GTK+ 2.12
314                 gtk_widget_set_tooltip_text (dialog->image_type,
315                                              mc_profile_get_display_name (profile));
316                 */
317
318                 text = g_strdup_printf ("<big><b>%s</b></big>", mc_account_get_display_name (account));
319                 gtk_label_set_markup (GTK_LABEL (dialog->label_name), text);
320                 g_free (text);
321         }
322 }
323
324 static void
325 accounts_dialog_model_setup (EmpathyAccountsDialog *dialog)
326 {
327         GtkListStore     *store;
328         GtkTreeSelection *selection;
329
330         store = gtk_list_store_new (COL_COUNT,
331                                     G_TYPE_STRING,     /* name */
332                                     G_TYPE_UINT,       /* status */
333                                     MC_TYPE_ACCOUNT);  /* account */
334
335         gtk_tree_view_set_model (GTK_TREE_VIEW (dialog->treeview),
336                                  GTK_TREE_MODEL (store));
337
338         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (dialog->treeview));
339         gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
340
341         g_signal_connect (selection, "changed",
342                           G_CALLBACK (accounts_dialog_model_selection_changed),
343                           dialog);
344
345         gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
346                                               COL_NAME, GTK_SORT_ASCENDING);
347
348         accounts_dialog_model_add_columns (dialog);
349
350         g_object_unref (store);
351 }
352
353 static void
354 accounts_dialog_model_add_columns (EmpathyAccountsDialog *dialog)
355 {
356         GtkTreeView       *view;
357         GtkTreeViewColumn *column;
358         GtkCellRenderer   *cell;
359
360         view = GTK_TREE_VIEW (dialog->treeview);
361         gtk_tree_view_set_headers_visible (view, TRUE);
362
363         /* account name/status */
364         column = gtk_tree_view_column_new ();
365         gtk_tree_view_column_set_title (column, _("Accounts"));
366
367         cell = gtk_cell_renderer_pixbuf_new ();
368         gtk_tree_view_column_pack_start (column, cell, FALSE);
369         gtk_tree_view_column_set_cell_data_func (column, cell,
370                                                  (GtkTreeCellDataFunc)
371                                                  accounts_dialog_model_pixbuf_data_func,
372                                                  dialog,
373                                                  NULL);
374
375         cell = gtk_cell_renderer_text_new ();
376         g_object_set (cell, "ellipsize", PANGO_ELLIPSIZE_END, NULL);
377         gtk_tree_view_column_pack_start (column, cell, TRUE);
378         gtk_tree_view_column_add_attribute (column,
379                                             cell,
380                                             "text", COL_NAME);
381
382         gtk_tree_view_column_set_expand (column, TRUE);
383         gtk_tree_view_append_column (view, column);
384 }
385
386 static void
387 accounts_dialog_model_select_first (EmpathyAccountsDialog *dialog)
388 {
389         GtkTreeView      *view;
390         GtkTreeModel     *model;
391         GtkTreeSelection *selection;
392         GtkTreeIter       iter;
393
394         /* select first */
395         view = GTK_TREE_VIEW (dialog->treeview);
396         model = gtk_tree_view_get_model (view);
397         
398         if (gtk_tree_model_get_iter_first (model, &iter)) {
399                 selection = gtk_tree_view_get_selection (view);
400                 gtk_tree_selection_select_iter (selection, &iter);
401         } else {
402                 accounts_dialog_update_account (dialog, NULL);
403         }
404 }
405
406 static void
407 accounts_dialog_model_pixbuf_data_func (GtkTreeViewColumn    *tree_column,
408                                         GtkCellRenderer      *cell,
409                                         GtkTreeModel         *model,
410                                         GtkTreeIter          *iter,
411                                         EmpathyAccountsDialog *dialog)
412 {
413         McAccount                 *account;
414         const gchar               *icon_name;
415         GdkPixbuf                 *pixbuf;
416         TelepathyConnectionStatus  status;
417
418         gtk_tree_model_get (model, iter,
419                             COL_STATUS, &status,
420                             COL_ACCOUNT_POINTER, &account,
421                             -1);
422
423         icon_name = empathy_icon_name_from_account (account);
424         pixbuf = empathy_pixbuf_from_icon_name (icon_name, GTK_ICON_SIZE_BUTTON);
425
426         if (pixbuf) {
427                 if (status == TP_CONN_STATUS_DISCONNECTED ||
428                     (status == TP_CONN_STATUS_CONNECTING && 
429                      !dialog->connecting_show)) {
430                         GdkPixbuf *modded_pixbuf;
431
432                         modded_pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB,
433                                                         TRUE,
434                                                         8,
435                                                         gdk_pixbuf_get_width (pixbuf),
436                                                         gdk_pixbuf_get_height (pixbuf));
437
438                         gdk_pixbuf_saturate_and_pixelate (pixbuf,
439                                                           modded_pixbuf,
440                                                           1.0,
441                                                           TRUE);
442                         g_object_unref (pixbuf);
443                         pixbuf = modded_pixbuf;
444                 }
445         }
446
447         g_object_set (cell,
448                       "visible", TRUE,
449                       "pixbuf", pixbuf,
450                       NULL);
451
452         g_object_unref (account);
453         if (pixbuf) {
454                 g_object_unref (pixbuf);
455         }
456 }
457
458 static McAccount *
459 accounts_dialog_model_get_selected (EmpathyAccountsDialog *dialog)
460 {
461         GtkTreeView      *view;
462         GtkTreeModel     *model;
463         GtkTreeSelection *selection;
464         GtkTreeIter       iter;
465         McAccount        *account;
466
467         view = GTK_TREE_VIEW (dialog->treeview);
468         selection = gtk_tree_view_get_selection (view);
469
470         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
471                 return NULL;
472         }
473
474         gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, &account, -1);
475
476         return account;
477 }
478
479 static void
480 accounts_dialog_model_set_selected (EmpathyAccountsDialog *dialog,
481                                     McAccount            *account)
482 {
483         GtkTreeView      *view;
484         GtkTreeSelection *selection;
485         GtkTreeModel     *model;
486         GtkTreeIter       iter;
487         gboolean          ok;
488
489         view = GTK_TREE_VIEW (dialog->treeview);
490         model = gtk_tree_view_get_model (view);
491         selection = gtk_tree_view_get_selection (view);
492
493         for (ok = gtk_tree_model_get_iter_first (model, &iter);
494              ok;
495              ok = gtk_tree_model_iter_next (model, &iter)) {
496                 McAccount *this_account;
497                 gboolean   equal;
498
499                 gtk_tree_model_get (model, &iter,
500                                     COL_ACCOUNT_POINTER, &this_account,
501                                     -1);
502
503                 equal = empathy_account_equal (this_account, account);
504                 g_object_unref (this_account);
505
506                 if (equal) {
507                         gtk_tree_selection_select_iter (selection, &iter);
508                         break;
509                 }
510         }
511 }
512
513 static gboolean
514 accounts_dialog_model_remove_selected (EmpathyAccountsDialog *dialog)
515 {
516         GtkTreeView      *view;
517         GtkTreeModel     *model;
518         GtkTreeSelection *selection;
519         GtkTreeIter       iter;
520
521         view = GTK_TREE_VIEW (dialog->treeview);
522         selection = gtk_tree_view_get_selection (view);
523
524         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
525                 return FALSE;
526         }
527
528         return gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
529 }
530
531 static void
532 accounts_dialog_model_selection_changed (GtkTreeSelection     *selection,
533                                          EmpathyAccountsDialog *dialog)
534 {
535         McAccount    *account;
536         GtkTreeModel *model;
537         GtkTreeIter   iter;
538         gboolean      is_selection;
539
540         is_selection = gtk_tree_selection_get_selected (selection, &model, &iter);
541
542         gtk_widget_set_sensitive (dialog->button_remove, is_selection);
543         gtk_widget_set_sensitive (dialog->button_connect, is_selection);
544
545         accounts_dialog_update_connect_button (dialog);
546
547         account = accounts_dialog_model_get_selected (dialog);
548         accounts_dialog_update_account (dialog, account);
549
550         if (account) {
551                 g_object_unref (account);
552         }
553
554         /* insure new account frame is hidden when a row is selected*/
555         gtk_widget_hide (dialog->frame_new_account);
556 }
557
558 static void
559 accounts_dialog_add_account (EmpathyAccountsDialog *dialog,
560                              McAccount            *account)
561 {
562         TelepathyConnectionStatus  status;
563         const gchar               *name;
564         GtkTreeView               *view;
565         GtkTreeModel              *model;
566         GtkListStore              *store;
567         GtkTreeIter                iter;
568         gboolean                   ok;
569
570         view = GTK_TREE_VIEW (dialog->treeview);
571         model = gtk_tree_view_get_model (view);
572         store = GTK_LIST_STORE (model);
573
574         for (ok = gtk_tree_model_get_iter_first (model, &iter);
575              ok;
576              ok = gtk_tree_model_iter_next (model, &iter)) {
577                 McAccount *this_account;
578                 gboolean   equal;
579
580                 gtk_tree_model_get (model, &iter,
581                                     COL_ACCOUNT_POINTER, &this_account,
582                                     -1);
583
584                 equal =  empathy_account_equal (this_account, account);
585                 g_object_unref (this_account);
586
587                 if (equal) {
588                         return;
589                 }
590         }
591
592         status = mission_control_get_connection_status (dialog->mc, account, NULL);
593         name = mc_account_get_display_name (account);
594
595         g_return_if_fail (name != NULL);
596
597         empathy_debug (DEBUG_DOMAIN, "Adding new account: %s", name);
598
599         gtk_list_store_insert_with_values (store, &iter,
600                                            -1,
601                                            COL_NAME, name,
602                                            COL_STATUS, status,
603                                            COL_ACCOUNT_POINTER, account,
604                                            -1);
605 }
606
607 static void
608 accounts_dialog_account_added_cb (McAccountMonitor     *monitor,
609                                   gchar                *unique_name,
610                                   EmpathyAccountsDialog *dialog)
611 {
612         McAccount *account;
613
614         account = mc_account_lookup (unique_name);
615         accounts_dialog_add_account (dialog, account);
616         g_object_unref (account);
617 }
618
619 static void
620 accounts_dialog_account_removed_cb (McAccountMonitor     *monitor,
621                                     gchar                *unique_name,
622                                     EmpathyAccountsDialog *dialog)
623 {
624         McAccount *account;
625
626         account = mc_account_lookup (unique_name);
627
628         accounts_dialog_model_set_selected (dialog, account);
629         accounts_dialog_model_remove_selected (dialog);
630
631         g_object_unref (account);
632 }
633
634 static gboolean
635 accounts_dialog_row_changed_foreach (GtkTreeModel *model,
636                                      GtkTreePath  *path,
637                                      GtkTreeIter  *iter,
638                                      gpointer      user_data)
639 {
640         gtk_tree_model_row_changed (model, path, iter);
641
642         return FALSE;
643 }
644
645 static gboolean
646 accounts_dialog_flash_connecting_cb (EmpathyAccountsDialog *dialog)
647 {
648         GtkTreeView  *view;
649         GtkTreeModel *model;
650
651         dialog->connecting_show = !dialog->connecting_show;
652
653         view = GTK_TREE_VIEW (dialog->treeview);
654         model = gtk_tree_view_get_model (view);
655
656         gtk_tree_model_foreach (model, accounts_dialog_row_changed_foreach, NULL);
657
658         return TRUE;
659 }
660
661 static void
662 accounts_dialog_status_changed_cb (MissionControl                  *mc,
663                                    TelepathyConnectionStatus        status,
664                                    McPresence                       presence,
665                                    TelepathyConnectionStatusReason  reason,
666                                    const gchar                     *unique_name,
667                                    EmpathyAccountsDialog            *dialog)
668 {
669         GtkTreeView      *view;
670         GtkTreeSelection *selection;
671         GtkTreeModel     *model;
672         GtkTreeIter       iter;
673         gboolean          ok;
674         McAccount        *account;
675         GList            *accounts, *l;
676         gboolean          found = FALSE;
677         
678         /* Update the status in the model */
679         view = GTK_TREE_VIEW (dialog->treeview);
680         selection = gtk_tree_view_get_selection (view);
681         model = gtk_tree_view_get_model (view);
682         account = mc_account_lookup (unique_name);
683
684         empathy_debug (DEBUG_DOMAIN, "Status changed for account %s: "
685                       "status=%d presence=%d",
686                       unique_name, status, presence);
687
688         for (ok = gtk_tree_model_get_iter_first (model, &iter);
689              ok;
690              ok = gtk_tree_model_iter_next (model, &iter)) {
691                 McAccount *this_account;
692                 gboolean   equal;
693
694                 gtk_tree_model_get (model, &iter,
695                                     COL_ACCOUNT_POINTER, &this_account,
696                                     -1);
697
698                 equal = empathy_account_equal (this_account, account);
699                 g_object_unref (this_account);
700
701                 if (equal) {
702                         GtkTreePath *path;
703
704                         gtk_list_store_set (GTK_LIST_STORE (model), &iter,
705                                             COL_STATUS, status,
706                                             -1);
707
708                         path = gtk_tree_model_get_path (model, &iter);
709                         gtk_tree_model_row_changed (model, path, &iter);
710                         gtk_tree_path_free (path);
711
712                         break;
713                 }
714         }
715
716         g_object_unref (account);
717
718         /* Start to flash account if status is connecting */
719         if (status == TP_CONN_STATUS_CONNECTING) {
720                 if (!dialog->connecting_id) {
721                         dialog->connecting_id = g_timeout_add (FLASH_TIMEOUT,
722                                                                (GSourceFunc) accounts_dialog_flash_connecting_cb,
723                                                                dialog);
724                 }
725
726                 return;
727         }
728
729         /* Stop to flash if no account is connecting */
730         accounts = mc_accounts_list ();
731         for (l = accounts; l; l = l->next) {
732                 McAccount *this_account;
733
734                 this_account = l->data;
735
736                 if (mission_control_get_connection_status (mc, this_account, NULL) == TP_CONN_STATUS_CONNECTING) {
737                         found = TRUE;
738                         break;
739                 }
740
741                 g_object_unref (this_account);
742         }
743         g_list_free (accounts);
744
745         if (!found && dialog->connecting_id) {
746                 g_source_remove (dialog->connecting_id);
747                 dialog->connecting_id = 0;
748         }
749
750         gtk_widget_show (dialog->window);
751 }
752
753 static void          
754 accounts_dialog_entry_name_changed_cb (GtkWidget             *widget,
755                                        EmpathyAccountsDialog  *dialog)
756 {
757         const gchar *str;
758         
759         str = gtk_entry_get_text (GTK_ENTRY (widget));
760         gtk_widget_set_sensitive (dialog->button_create, !G_STR_EMPTY (str));
761 }
762
763 static void
764 accounts_dialog_button_create_clicked_cb (GtkWidget             *button,
765                                           EmpathyAccountsDialog  *dialog)
766 {
767         McProfile   *profile;
768         McAccount   *account;
769         const gchar *str;
770
771         /* Update widgets */
772         gtk_widget_show (dialog->vbox_details);
773         gtk_widget_hide (dialog->frame_no_account);
774         gtk_widget_hide (dialog->frame_new_account);
775
776         profile = empathy_profile_chooser_get_selected (dialog->combobox_profile);
777
778         /* Create account */
779         account = mc_account_create (profile);
780
781         str = gtk_entry_get_text (GTK_ENTRY (dialog->entry_name));
782         mc_account_set_display_name (account, str);
783
784         accounts_dialog_add_account (dialog, account);
785         accounts_dialog_model_set_selected (dialog, account);
786
787         g_object_unref (account);
788         g_object_unref (profile);
789 }
790
791 static void
792 accounts_dialog_button_back_clicked_cb (GtkWidget             *button,
793                                         EmpathyAccountsDialog  *dialog)
794 {
795         McAccount *account;
796
797         gtk_widget_hide (dialog->vbox_details);
798         gtk_widget_hide (dialog->frame_no_account);
799         gtk_widget_hide (dialog->frame_new_account);
800
801         account = accounts_dialog_model_get_selected (dialog);
802         accounts_dialog_update_account (dialog, account);
803 }
804
805 static void
806 accounts_dialog_button_connect_clicked_cb (GtkWidget            *button,
807                                            EmpathyAccountsDialog *dialog)
808 {
809         McAccount *account;
810         gboolean   enable;
811
812         account = accounts_dialog_model_get_selected (dialog);
813         enable = (!mc_account_is_enabled (account));
814         mc_account_set_enabled (account, enable);
815         accounts_dialog_update_connect_button (dialog);
816
817         g_object_unref (account);
818 }
819
820 static void
821 accounts_dialog_button_add_clicked_cb (GtkWidget            *button,
822                                        EmpathyAccountsDialog *dialog)
823 {
824         gtk_widget_hide (dialog->vbox_details);
825         gtk_widget_hide (dialog->frame_no_account);
826         gtk_widget_show (dialog->frame_new_account);
827
828         gtk_combo_box_set_active (GTK_COMBO_BOX (dialog->combobox_profile), 0);
829         gtk_entry_set_text (GTK_ENTRY (dialog->entry_name), "");
830         gtk_widget_grab_focus (dialog->entry_name);
831 }
832
833 static void
834 accounts_dialog_remove_response_cb (GtkWidget *dialog,
835                                     gint       response,
836                                     McAccount *account)
837 {
838         if (response == GTK_RESPONSE_YES) {
839                 mc_account_delete (account);
840         }
841
842         gtk_widget_destroy (dialog);
843 }
844
845 static void
846 accounts_dialog_button_remove_clicked_cb (GtkWidget            *button,
847                                           EmpathyAccountsDialog *dialog)
848 {
849         McAccount *account;
850         GtkWidget *message_dialog;
851
852         account = accounts_dialog_model_get_selected (dialog);
853
854         if (!mc_account_is_complete (account)) {
855                 accounts_dialog_model_remove_selected (dialog);
856                 return;
857         }
858         message_dialog = gtk_message_dialog_new
859                 (GTK_WINDOW (dialog->window),
860                  GTK_DIALOG_DESTROY_WITH_PARENT,
861                  GTK_MESSAGE_QUESTION,
862                  GTK_BUTTONS_NONE,
863                  _("You are about to remove your %s account!\n"
864                    "Are you sure you want to proceed?"),
865                  mc_account_get_display_name (account));
866
867         gtk_message_dialog_format_secondary_text
868                 (GTK_MESSAGE_DIALOG (message_dialog),
869                  _("Any associated conversations and chat rooms will NOT be "
870                    "removed if you decide to proceed.\n"
871                    "\n"
872                    "Should you decide to add the account back at a later time, "
873                    "they will still be available."));
874
875         gtk_dialog_add_button (GTK_DIALOG (message_dialog),
876                                GTK_STOCK_CANCEL, 
877                                GTK_RESPONSE_NO);
878         gtk_dialog_add_button (GTK_DIALOG (message_dialog),
879                                GTK_STOCK_REMOVE, 
880                                GTK_RESPONSE_YES);
881
882         g_signal_connect (message_dialog, "response",
883                           G_CALLBACK (accounts_dialog_remove_response_cb),
884                           account);
885
886         gtk_widget_show (message_dialog);
887 }
888
889 static void
890 accounts_dialog_treeview_row_activated_cb (GtkTreeView          *tree_view,
891                                            GtkTreePath          *path,
892                                            GtkTreeViewColumn    *column,
893                                            EmpathyAccountsDialog *dialog)
894 {
895
896         accounts_dialog_button_connect_clicked_cb (dialog->button_connect,
897                                                    dialog);
898 }
899
900 static void
901 accounts_dialog_response_cb (GtkWidget            *widget,
902                              gint                  response,
903                              EmpathyAccountsDialog *dialog)
904 {
905         gtk_widget_destroy (widget);
906 }
907
908 static void
909 accounts_dialog_destroy_cb (GtkWidget            *widget,
910                             EmpathyAccountsDialog *dialog)
911 {
912         GList *accounts, *l;
913
914         /* Disconnect signals */
915         g_signal_handlers_disconnect_by_func (dialog->monitor,
916                                               accounts_dialog_account_added_cb,
917                                               dialog);
918         g_signal_handlers_disconnect_by_func (dialog->monitor,
919                                               accounts_dialog_account_removed_cb,
920                                               dialog);
921         dbus_g_proxy_disconnect_signal (DBUS_G_PROXY (dialog->mc),
922                                         "AccountStatusChanged",
923                                         G_CALLBACK (accounts_dialog_status_changed_cb),
924                                         dialog);
925
926         /* Delete incomplete accounts */
927         accounts = mc_accounts_list ();
928         for (l = accounts; l; l = l->next) {
929                 McAccount *account;
930
931                 account = l->data;
932                 if (!mc_account_is_complete (account)) {
933                         /* FIXME: Warn the user the account is not complete
934                          *        and is going to be removed. */
935                         mc_account_delete (account);
936                 }
937
938                 g_object_unref (account);
939         }
940         g_list_free (accounts);
941
942         if (dialog->connecting_id) {
943                 g_source_remove (dialog->connecting_id);
944         }
945
946         g_object_unref (dialog->mc);
947         g_object_unref (dialog->monitor);
948         
949         g_free (dialog);
950 }
951
952 GtkWidget *
953 empathy_accounts_dialog_show (GtkWindow *parent)
954 {
955         static EmpathyAccountsDialog *dialog = NULL;
956         GladeXML                    *glade;
957         GtkWidget                   *bbox;
958         GtkWidget                   *button_close;
959
960         if (dialog) {
961                 gtk_window_present (GTK_WINDOW (dialog->window));
962                 return dialog->window;
963         }
964
965         dialog = g_new0 (EmpathyAccountsDialog, 1);
966
967         glade = empathy_glade_get_file ("empathy-accounts-dialog.glade",
968                                        "accounts_dialog",
969                                        NULL,
970                                        "accounts_dialog", &dialog->window,
971                                        "vbox_details", &dialog->vbox_details,
972                                        "frame_no_account", &dialog->frame_no_account,
973                                        "label_no_account", &dialog->label_no_account,
974                                        "label_no_account_blurb", &dialog->label_no_account_blurb,
975                                        "alignment_settings", &dialog->alignment_settings,
976                                        "dialog-action_area", &bbox,
977                                        "treeview", &dialog->treeview,
978                                        "frame_new_account", &dialog->frame_new_account,
979                                        "entry_name", &dialog->entry_name,
980                                        "table_new_account", &dialog->table_new_account,
981                                        "button_create", &dialog->button_create,
982                                        "button_back", &dialog->button_back,
983                                        "image_type", &dialog->image_type,
984                                        "label_name", &dialog->label_name,
985                                        "button_remove", &dialog->button_remove,
986                                        "button_connect", &dialog->button_connect,
987                                        "button_close", &button_close,
988                                        NULL);
989
990         empathy_glade_connect (glade,
991                               dialog,
992                               "accounts_dialog", "destroy", accounts_dialog_destroy_cb,
993                               "accounts_dialog", "response", accounts_dialog_response_cb,
994                               "button_create", "clicked", accounts_dialog_button_create_clicked_cb,
995                               "button_back", "clicked", accounts_dialog_button_back_clicked_cb,
996                               "entry_name", "changed", accounts_dialog_entry_name_changed_cb,
997                               "treeview", "row-activated", accounts_dialog_treeview_row_activated_cb,
998                               "button_connect", "clicked", accounts_dialog_button_connect_clicked_cb,
999                               "button_add", "clicked", accounts_dialog_button_add_clicked_cb,
1000                               "button_remove", "clicked", accounts_dialog_button_remove_clicked_cb,
1001                               NULL);
1002
1003         g_object_add_weak_pointer (G_OBJECT (dialog->window), (gpointer) &dialog);
1004
1005         g_object_unref (glade);
1006
1007         /* Create profile chooser */
1008         dialog->combobox_profile = empathy_profile_chooser_new ();
1009         gtk_table_attach_defaults (GTK_TABLE (dialog->table_new_account),
1010                                    dialog->combobox_profile,
1011                                    1, 2,
1012                                    0, 1);
1013         gtk_widget_show (dialog->combobox_profile);
1014
1015         /* Set up signalling */
1016         dialog->mc = empathy_mission_control_new ();
1017         dialog->monitor = mc_account_monitor_new ();
1018
1019         /* FIXME: connect account-enabled/disabled too */
1020         g_signal_connect (dialog->monitor, "account-created",
1021                           G_CALLBACK (accounts_dialog_account_added_cb),
1022                           dialog);
1023         g_signal_connect (dialog->monitor, "account-deleted",
1024                           G_CALLBACK (accounts_dialog_account_removed_cb),
1025                           dialog);
1026         dbus_g_proxy_connect_signal (DBUS_G_PROXY (dialog->mc), "AccountStatusChanged",
1027                                      G_CALLBACK (accounts_dialog_status_changed_cb),
1028                                      dialog, NULL);
1029
1030         accounts_dialog_model_setup (dialog);
1031         accounts_dialog_setup (dialog);
1032         accounts_dialog_model_select_first (dialog);
1033
1034         if (parent) {
1035                 gtk_window_set_transient_for (GTK_WINDOW (dialog->window),
1036                                               GTK_WINDOW (parent));
1037         }
1038
1039         gtk_widget_show (dialog->window);
1040
1041         return dialog->window;
1042 }
1043