]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-account-chooser.c
Updated Polish translation
[empathy.git] / libempathy-gtk / empathy-account-chooser.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-2008 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., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  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
29 #include <glib/gi18n-lib.h>
30 #include <gtk/gtk.h>
31
32 #include <telepathy-glib/account-manager.h>
33 #include <telepathy-glib/util.h>
34
35 #include <libempathy/empathy-utils.h>
36
37 #include "empathy-ui-utils.h"
38 #include "empathy-account-chooser.h"
39
40 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
41 #include <libempathy/empathy-debug.h>
42
43 /**
44  * SECTION:empathy-account-chooser
45  * @title:EmpathyAccountChooser
46  * @short_description: A widget used to choose from a list of accounts
47  * @include: libempathy-gtk/empathy-account-chooser.h
48  *
49  * #EmpathyAccountChooser is a widget which extends #GtkComboBox to provide
50  * a chooser of available accounts.
51  */
52
53 /**
54  * EmpathyAccountChooser:
55  * @parent: parent object
56  *
57  * Widget which extends #GtkComboBox to provide a chooser of available accounts.
58  */
59
60 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyAccountChooser)
61 typedef struct {
62         TpAccountManager               *manager;
63         gboolean                        set_active_item;
64         gboolean                        account_manually_set;
65         gboolean                        has_all_option;
66         EmpathyAccountChooserFilterFunc filter;
67         gpointer                        filter_data;
68         gboolean                        ready;
69 } EmpathyAccountChooserPriv;
70
71 typedef struct {
72         EmpathyAccountChooser *chooser;
73         TpAccount             *account;
74         gboolean               set;
75 } SetAccountData;
76
77 typedef struct {
78         EmpathyAccountChooser *chooser;
79         TpAccount             *account;
80         GtkTreeIter           *iter;
81 } FilterResultCallbackData;
82
83 static FilterResultCallbackData *
84 filter_result_callback_data_new (EmpathyAccountChooser *chooser,
85                                  TpAccount             *account,
86                                  GtkTreeIter           *iter)
87 {
88         FilterResultCallbackData *data;
89
90         data = g_slice_new0 (FilterResultCallbackData);
91         data->chooser = g_object_ref (chooser);
92         data->account = g_object_ref (account);
93         data->iter = gtk_tree_iter_copy (iter);
94
95         return data;
96 }
97
98 static void
99 filter_result_callback_data_free (FilterResultCallbackData *data)
100 {
101         g_object_unref (data->chooser);
102         g_object_unref (data->account);
103         gtk_tree_iter_free (data->iter);
104         g_slice_free (FilterResultCallbackData, data);
105 }
106
107 /* Distinguishes between store entries which are actually accounts, and special
108  * items like the "All" entry and the separator below it, so they can be sorted
109  * correctly. Higher-numbered entries will sort earlier.
110  */
111 typedef enum {
112         ROW_ACCOUNT = 0,
113         ROW_SEPARATOR,
114         ROW_ALL
115 } RowType;
116
117 enum {
118         COL_ACCOUNT_IMAGE,
119         COL_ACCOUNT_TEXT,
120         COL_ACCOUNT_ENABLED, /* Usually tied to connected state */
121         COL_ACCOUNT_ROW_TYPE,
122         COL_ACCOUNT_POINTER,
123         COL_ACCOUNT_COUNT
124 };
125
126 static void     account_chooser_constructed            (GObject                  *object);
127 static void     account_chooser_finalize               (GObject                  *object);
128 static void     account_chooser_get_property           (GObject                  *object,
129                                                         guint                     param_id,
130                                                         GValue                   *value,
131                                                         GParamSpec               *pspec);
132 static void     account_chooser_set_property           (GObject                  *object,
133                                                         guint                     param_id,
134                                                         const GValue             *value,
135                                                         GParamSpec               *pspec);
136 static void     account_chooser_setup                  (EmpathyAccountChooser    *chooser);
137 static void     account_chooser_account_validity_changed_cb (TpAccountManager    *manager,
138                                                         TpAccount                *account,
139                                                         gboolean                  valid,
140                                                         EmpathyAccountChooser    *chooser);
141 static void     account_chooser_account_add_foreach    (TpAccount                *account,
142                                                         EmpathyAccountChooser    *chooser);
143 static void     account_chooser_account_removed_cb     (TpAccountManager         *manager,
144                                                         TpAccount                *account,
145                                                         EmpathyAccountChooser    *chooser);
146 static void     account_chooser_account_remove_foreach (TpAccount                *account,
147                                                         EmpathyAccountChooser    *chooser);
148 static void     account_chooser_update_iter            (EmpathyAccountChooser    *chooser,
149                                                         GtkTreeIter              *iter);
150 static void     account_chooser_status_changed_cb      (TpAccount  *account,
151                                                         guint       old_status,
152                                                         guint       new_status,
153                                                         guint       reason,
154                                                         gchar      *dbus_error_name,
155                                                         GHashTable *details,
156                                                         gpointer    user_data);
157 static gboolean account_chooser_separator_func         (GtkTreeModel             *model,
158                                                         GtkTreeIter              *iter,
159                                                         EmpathyAccountChooser    *chooser);
160 static gboolean account_chooser_set_account_foreach    (GtkTreeModel             *model,
161                                                         GtkTreePath              *path,
162                                                         GtkTreeIter              *iter,
163                                                         SetAccountData           *data);
164
165 enum {
166         PROP_0,
167         PROP_HAS_ALL_OPTION,
168 };
169
170 enum {
171         READY,
172         LAST_SIGNAL
173 };
174
175 static guint signals[LAST_SIGNAL] = { 0 };
176
177 G_DEFINE_TYPE (EmpathyAccountChooser, empathy_account_chooser, GTK_TYPE_COMBO_BOX);
178
179 static void
180 empathy_account_chooser_class_init (EmpathyAccountChooserClass *klass)
181 {
182         GObjectClass *object_class = G_OBJECT_CLASS (klass);
183
184         object_class->constructed = account_chooser_constructed;
185         object_class->finalize = account_chooser_finalize;
186         object_class->get_property = account_chooser_get_property;
187         object_class->set_property = account_chooser_set_property;
188
189         /**
190          * EmpathyAccountChooser:has-all-option:
191          *
192          * Have an additional option in the list to mean all accounts.
193          */
194         g_object_class_install_property (object_class,
195                                          PROP_HAS_ALL_OPTION,
196                                          g_param_spec_boolean ("has-all-option",
197                                                                "Has All Option",
198                                                                "Have a separate option in the list to mean ALL accounts",
199                                                                FALSE,
200                                                                G_PARAM_READWRITE));
201
202         signals[READY] =
203                 g_signal_new ("ready",
204                               G_OBJECT_CLASS_TYPE (object_class),
205                               G_SIGNAL_RUN_LAST,
206                               0,
207                               NULL, NULL,
208                               g_cclosure_marshal_VOID__VOID,
209                               G_TYPE_NONE,
210                               0);
211
212         g_type_class_add_private (object_class, sizeof (EmpathyAccountChooserPriv));
213 }
214
215 static void
216 empathy_account_chooser_init (EmpathyAccountChooser *chooser)
217 {
218         EmpathyAccountChooserPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (chooser,
219                 EMPATHY_TYPE_ACCOUNT_CHOOSER, EmpathyAccountChooserPriv);
220
221         chooser->priv = priv;
222         priv->set_active_item = FALSE;
223         priv->account_manually_set = FALSE;
224         priv->filter = NULL;
225         priv->filter_data = NULL;
226
227         priv->manager = tp_account_manager_dup ();
228
229         g_signal_connect (priv->manager, "account-validity-changed",
230                           G_CALLBACK (account_chooser_account_validity_changed_cb),
231                           chooser);
232         g_signal_connect (priv->manager, "account-removed",
233                           G_CALLBACK (account_chooser_account_removed_cb),
234                           chooser);
235 }
236
237 static void
238 account_chooser_constructed (GObject *object)
239 {
240         EmpathyAccountChooser *self = (EmpathyAccountChooser *) object;
241
242         account_chooser_setup (self);
243 }
244
245 static void
246 account_chooser_finalize (GObject *object)
247 {
248         EmpathyAccountChooserPriv *priv = GET_PRIV (object);
249
250         g_signal_handlers_disconnect_by_func (priv->manager,
251                                               account_chooser_account_validity_changed_cb,
252                                               object);
253         g_signal_handlers_disconnect_by_func (priv->manager,
254                                               account_chooser_account_removed_cb,
255                                               object);
256         g_object_unref (priv->manager);
257
258         G_OBJECT_CLASS (empathy_account_chooser_parent_class)->finalize (object);
259 }
260
261 static void
262 account_chooser_get_property (GObject    *object,
263                               guint       param_id,
264                               GValue     *value,
265                               GParamSpec *pspec)
266 {
267         EmpathyAccountChooserPriv *priv;
268
269         priv = GET_PRIV (object);
270
271         switch (param_id) {
272         case PROP_HAS_ALL_OPTION:
273                 g_value_set_boolean (value, priv->has_all_option);
274                 break;
275         default:
276                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
277                 break;
278         };
279 }
280
281 static void
282 account_chooser_set_property (GObject      *object,
283                               guint         param_id,
284                               const GValue *value,
285                               GParamSpec   *pspec)
286 {
287         switch (param_id) {
288         case PROP_HAS_ALL_OPTION:
289                 empathy_account_chooser_set_has_all_option (EMPATHY_ACCOUNT_CHOOSER (object),
290                                                            g_value_get_boolean (value));
291                 break;
292         default:
293                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
294                 break;
295         };
296 }
297
298 /**
299  * empathy_account_chooser_new:
300  *
301  * Creates a new #EmpathyAccountChooser.
302  *
303  * Return value: A new #EmpathyAccountChooser
304  */
305 GtkWidget *
306 empathy_account_chooser_new (void)
307 {
308         GtkWidget                *chooser;
309
310         chooser = g_object_new (EMPATHY_TYPE_ACCOUNT_CHOOSER, NULL);
311
312         return chooser;
313 }
314
315 gboolean
316 empathy_account_chooser_has_all_selected (EmpathyAccountChooser *chooser)
317 {
318         EmpathyAccountChooserPriv *priv;
319         GtkTreeModel              *model;
320         GtkTreeIter                iter;
321         RowType                    type;
322
323         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), FALSE);
324
325         priv = GET_PRIV (chooser);
326
327         g_return_val_if_fail (priv->has_all_option == TRUE, FALSE);
328
329         model = gtk_combo_box_get_model (GTK_COMBO_BOX (chooser));
330         if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (chooser), &iter)) {
331                 return FALSE;
332         }
333
334         gtk_tree_model_get (model, &iter, COL_ACCOUNT_ROW_TYPE, &type, -1);
335
336         return type == ROW_ALL;
337 }
338
339 /**
340  * empathy_account_chooser_dup_account:
341  * @chooser: an #EmpathyAccountChooser
342  *
343  * Returns the account which is currently selected in the chooser or %NULL
344  * if there is no account selected. The #TpAccount returned should be
345  * unrefed with g_object_unref() when finished with.
346  *
347  * Return value: a new ref to the #TpAccount currently selected, or %NULL.
348  */
349 TpAccount *
350 empathy_account_chooser_dup_account (EmpathyAccountChooser *chooser)
351 {
352         TpAccount                 *account;
353         GtkTreeModel             *model;
354         GtkTreeIter               iter;
355
356         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), NULL);
357
358         model = gtk_combo_box_get_model (GTK_COMBO_BOX (chooser));
359         if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (chooser), &iter)) {
360                 return NULL;
361         }
362
363         gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, &account, -1);
364
365         return account;
366 }
367
368 /**
369  * empathy_account_chooser_get_connection:
370  * @chooser: an #EmpathyAccountChooser
371  *
372  * Returns a borrowed reference to the #TpConnection associated with the
373  * account currently selected. The caller must reference the returned object with
374  * g_object_ref() if it will be kept
375  *
376  * Return value: a borrowed reference to the #TpConnection associated with the
377  * account curently selected.
378  */
379 TpConnection *
380 empathy_account_chooser_get_connection (EmpathyAccountChooser *chooser)
381 {
382         TpAccount                 *account;
383         TpConnection              *connection;
384
385         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), NULL);
386
387         account = empathy_account_chooser_dup_account (chooser);
388
389         /* if the returned account is NULL, then the account manager probably
390          * hasn't been prepared yet. It should be safe to return NULL here
391          * though. */
392         if (account == NULL) {
393                 return NULL;
394         }
395
396         connection = tp_account_get_connection (account);
397         g_object_unref (account);
398
399         return connection;
400 }
401
402 /**
403  * empathy_account_chooser_set_account:
404  * @chooser: an #EmpathyAccountChooser
405  * @account: a #TpAccount
406  *
407  * Sets the currently selected account to @account, if it exists in the list.
408  *
409  * Return value: whether the chooser was set to @account.
410  */
411 gboolean
412 empathy_account_chooser_set_account (EmpathyAccountChooser *chooser,
413                                      TpAccount             *account)
414 {
415         EmpathyAccountChooserPriv *priv;
416         GtkComboBox    *combobox;
417         GtkTreeModel   *model;
418         GtkTreeIter     iter;
419         SetAccountData  data;
420
421         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), FALSE);
422
423         priv = GET_PRIV (chooser);
424
425         combobox = GTK_COMBO_BOX (chooser);
426         model = gtk_combo_box_get_model (combobox);
427         gtk_combo_box_get_active_iter (combobox, &iter);
428
429         data.chooser = chooser;
430         data.account = account;
431
432         gtk_tree_model_foreach (model,
433                                 (GtkTreeModelForeachFunc) account_chooser_set_account_foreach,
434                                 &data);
435
436         priv->account_manually_set = data.set;
437
438         return data.set;
439 }
440
441 void
442 empathy_account_chooser_set_all (EmpathyAccountChooser *chooser)
443 {
444         EmpathyAccountChooserPriv *priv;
445         GtkComboBox    *combobox;
446         GtkTreeModel   *model;
447         GtkTreeIter     iter;
448
449         g_return_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser));
450
451         priv = GET_PRIV (chooser);
452
453         g_return_if_fail (priv->has_all_option);
454
455         combobox = GTK_COMBO_BOX (chooser);
456         model = gtk_combo_box_get_model (combobox);
457
458         if (gtk_tree_model_get_iter_first (model, &iter)) {
459                 /* 'All accounts' is the first row */
460                 gtk_combo_box_set_active_iter (combobox, &iter);
461                 priv->account_manually_set = TRUE;
462         }
463 }
464
465 /**
466  * empathy_account_chooser_get_has_all_option:
467  * @chooser: an #EmpathyAccountChooser
468  *
469  * Returns whether @chooser has the #EmpathyAccountChooser:has-all-option property
470  * set to true.
471  *
472  * Return value: whether @chooser has the #EmpathyAccountChooser:has-all-option property
473  * enabled.
474  */
475 gboolean
476 empathy_account_chooser_get_has_all_option (EmpathyAccountChooser *chooser)
477 {
478         EmpathyAccountChooserPriv *priv;
479
480         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), FALSE);
481
482         priv = GET_PRIV (chooser);
483
484         return priv->has_all_option;
485 }
486
487 /**
488  * empathy_account_chooser_set_has_all_option:
489  * @chooser: an #EmpathyAccountChooser
490  * @has_all_option: a new value for the #EmpathyAccountChooser:has-all-option property
491  *
492  * Sets the #EmpathyAccountChooser:has-all-option property.
493  */
494 void
495 empathy_account_chooser_set_has_all_option (EmpathyAccountChooser *chooser,
496                                            gboolean              has_all_option)
497 {
498         EmpathyAccountChooserPriv *priv;
499         GtkComboBox              *combobox;
500         GtkListStore             *store;
501         GtkTreeModel             *model;
502         GtkTreeIter               iter;
503
504         g_return_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser));
505
506         priv = GET_PRIV (chooser);
507
508         if (priv->has_all_option == has_all_option) {
509                 return;
510         }
511
512         combobox = GTK_COMBO_BOX (chooser);
513         model = gtk_combo_box_get_model (combobox);
514         store = GTK_LIST_STORE (model);
515
516         priv->has_all_option = has_all_option;
517
518         /*
519          * The first 2 options are the ALL and separator
520          */
521
522         if (has_all_option) {
523                 gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser),
524                                                       (GtkTreeViewRowSeparatorFunc)
525                                                       account_chooser_separator_func,
526                                                       chooser,
527                                                       NULL);
528
529                 gtk_list_store_prepend (store, &iter);
530                 gtk_list_store_set (store, &iter,
531                                     COL_ACCOUNT_TEXT, NULL,
532                                     COL_ACCOUNT_ENABLED, TRUE,
533                                     COL_ACCOUNT_POINTER, NULL,
534                                     COL_ACCOUNT_ROW_TYPE, ROW_SEPARATOR,
535                                     -1);
536
537                 gtk_list_store_prepend (store, &iter);
538                 gtk_list_store_set (store, &iter,
539                                     COL_ACCOUNT_TEXT, _("All accounts"),
540                                     COL_ACCOUNT_ENABLED, TRUE,
541                                     COL_ACCOUNT_POINTER, NULL,
542                                     COL_ACCOUNT_ROW_TYPE, ROW_ALL,
543                                     -1);
544         } else {
545                 if (gtk_tree_model_get_iter_first (model, &iter)) {
546                         if (gtk_list_store_remove (GTK_LIST_STORE (model), &iter)) {
547                                 gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
548                         }
549                 }
550
551                 gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser),
552                                                       (GtkTreeViewRowSeparatorFunc)
553                                                       NULL,
554                                                       NULL,
555                                                       NULL);
556         }
557
558         g_object_notify (G_OBJECT (chooser), "has-all-option");
559 }
560
561 static void
562 account_manager_prepared_cb (GObject *source_object,
563                              GAsyncResult *result,
564                              gpointer user_data)
565 {
566         GList *accounts, *l;
567         TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
568         EmpathyAccountChooser *chooser = user_data;
569         EmpathyAccountChooserPriv *priv = GET_PRIV (chooser);
570         GError *error = NULL;
571
572         if (!tp_account_manager_prepare_finish (manager, result, &error)) {
573                 DEBUG ("Failed to prepare account manager: %s", error->message);
574                 g_error_free (error);
575                 return;
576         }
577
578         accounts = tp_account_manager_get_valid_accounts (manager);
579
580         for (l = accounts; l != NULL; l = l->next) {
581                 TpAccount *account = l->data;
582
583                 account_chooser_account_add_foreach (account, chooser);
584
585                 tp_g_signal_connect_object (account, "status-changed",
586                                              G_CALLBACK (account_chooser_status_changed_cb),
587                                              chooser, 0);
588         }
589
590         g_list_free (accounts);
591
592         priv->ready = TRUE;
593         g_signal_emit (chooser, signals[READY], 0);
594 }
595
596 static gint
597 account_cmp (GtkTreeModel *model,
598              GtkTreeIter *a,
599              GtkTreeIter *b,
600              gpointer user_data)
601 {
602         RowType a_type, b_type;
603         gboolean a_enabled, b_enabled;
604         gchar *a_text, *b_text;
605         gint result;
606
607         gtk_tree_model_get (model, a,
608                 COL_ACCOUNT_ENABLED, &a_enabled,
609                 COL_ACCOUNT_ROW_TYPE, &a_type,
610                 -1);
611         gtk_tree_model_get (model, b,
612                 COL_ACCOUNT_ENABLED, &b_enabled,
613                 COL_ACCOUNT_ROW_TYPE, &b_type,
614                 -1);
615
616         /* This assumes that we have at most one of each special row type. */
617         if (a_type != b_type) {
618                 /* Display higher-numbered special row types first. */
619                 return (b_type - a_type);
620         }
621
622         /* Enabled accounts are displayed first */
623         if (a_enabled != b_enabled)
624                 return a_enabled ? -1: 1;
625
626         gtk_tree_model_get (model, a, COL_ACCOUNT_TEXT, &a_text, -1);
627         gtk_tree_model_get (model, b, COL_ACCOUNT_TEXT, &b_text, -1);
628
629         if (a_text == b_text)
630                 result = 0;
631         else if (a_text == NULL)
632                 result = 1;
633         else if (b_text == NULL)
634                 result = -1;
635         else
636                 result = g_ascii_strcasecmp (a_text, b_text);
637
638         g_free (a_text);
639         g_free (b_text);
640
641         return result;
642 }
643
644 static void
645 account_chooser_setup (EmpathyAccountChooser *chooser)
646 {
647         EmpathyAccountChooserPriv *priv;
648         GtkListStore             *store;
649         GtkCellRenderer          *renderer;
650         GtkComboBox              *combobox;
651
652         priv = GET_PRIV (chooser);
653
654         /* Set up combo box with new store */
655         combobox = GTK_COMBO_BOX (chooser);
656
657         gtk_cell_layout_clear (GTK_CELL_LAYOUT (combobox));
658
659         store = gtk_list_store_new (COL_ACCOUNT_COUNT,
660                                     GDK_TYPE_PIXBUF,    /* Image */
661                                     G_TYPE_STRING,    /* Name */
662                                     G_TYPE_BOOLEAN,   /* Enabled */
663                                     G_TYPE_UINT,      /* Row type */
664                                     TP_TYPE_ACCOUNT);
665
666         gtk_tree_sortable_set_default_sort_func (GTK_TREE_SORTABLE (store),
667                 account_cmp, chooser, NULL);
668         gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
669                 GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, GTK_SORT_ASCENDING);
670
671         gtk_combo_box_set_model (combobox, GTK_TREE_MODEL (store));
672
673         renderer = gtk_cell_renderer_pixbuf_new ();
674         gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combobox), renderer, FALSE);
675         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combobox), renderer,
676                                         "pixbuf", COL_ACCOUNT_IMAGE,
677                                         "sensitive", COL_ACCOUNT_ENABLED,
678                                         NULL);
679
680         renderer = gtk_cell_renderer_text_new ();
681         gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combobox), renderer, TRUE);
682         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combobox), renderer,
683                                         "text", COL_ACCOUNT_TEXT,
684                                         "sensitive", COL_ACCOUNT_ENABLED,
685                                         NULL);
686
687         /* Populate accounts */
688         tp_account_manager_prepare_async (priv->manager, NULL,
689                                           account_manager_prepared_cb, chooser);
690
691         g_object_unref (store);
692 }
693
694 static void
695 account_chooser_account_validity_changed_cb (TpAccountManager      *manager,
696                                              TpAccount             *account,
697                                              gboolean               valid,
698                                              EmpathyAccountChooser *chooser)
699 {
700         if (valid) {
701                 account_chooser_account_add_foreach (account, chooser);
702         } else {
703                 account_chooser_account_remove_foreach (account, chooser);
704         }
705 }
706
707 static void
708 account_chooser_account_add_foreach (TpAccount             *account,
709                                      EmpathyAccountChooser *chooser)
710 {
711         GtkListStore *store;
712         GtkComboBox  *combobox;
713         GtkTreeIter   iter;
714         gint          position;
715
716         combobox = GTK_COMBO_BOX (chooser);
717         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
718
719         position = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (store), NULL);
720         gtk_list_store_insert_with_values (store, &iter, position,
721                                            COL_ACCOUNT_POINTER, account,
722                                            -1);
723         account_chooser_update_iter (chooser, &iter);
724 }
725
726 static void
727 account_chooser_account_removed_cb (TpAccountManager      *manager,
728                                     TpAccount             *account,
729                                     EmpathyAccountChooser *chooser)
730 {
731         account_chooser_account_remove_foreach (account, chooser);
732 }
733
734 typedef struct {
735         TpAccount   *account;
736         GtkTreeIter *iter;
737         gboolean     found;
738 } FindAccountData;
739
740 static gboolean
741 account_chooser_find_account_foreach (GtkTreeModel *model,
742                                       GtkTreePath  *path,
743                                       GtkTreeIter  *iter,
744                                       gpointer      user_data)
745 {
746         FindAccountData *data = user_data;
747         TpAccount  *account;
748         RowType type;
749
750         gtk_tree_model_get (model, iter,
751                 COL_ACCOUNT_POINTER, &account,
752                 COL_ACCOUNT_ROW_TYPE, &type,
753                  -1);
754
755         if (type != ROW_ACCOUNT)
756                 return FALSE;
757
758         if (account == data->account) {
759                 data->found = TRUE;
760                 *(data->iter) = *iter;
761                 g_object_unref (account);
762
763                 return TRUE;
764         }
765
766         g_object_unref (account);
767
768         return FALSE;
769 }
770
771 static gboolean
772 account_chooser_find_account (EmpathyAccountChooser *chooser,
773                               TpAccount             *account,
774                               GtkTreeIter           *iter)
775 {
776         GtkListStore    *store;
777         GtkComboBox     *combobox;
778         FindAccountData  data;
779
780         combobox = GTK_COMBO_BOX (chooser);
781         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
782
783         data.account = account;
784         data.iter = iter;
785         gtk_tree_model_foreach (GTK_TREE_MODEL (store),
786                                 account_chooser_find_account_foreach,
787                                 &data);
788
789         return data.found;
790 }
791
792 static void
793 account_chooser_account_remove_foreach (TpAccount             *account,
794                                         EmpathyAccountChooser *chooser)
795 {
796         GtkListStore *store;
797         GtkComboBox  *combobox;
798         GtkTreeIter   iter;
799
800         combobox = GTK_COMBO_BOX (chooser);
801         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
802
803         if (account_chooser_find_account (chooser, account, &iter)) {
804                 gtk_list_store_remove (store, &iter);
805         }
806 }
807
808 static void
809 account_chooser_filter_ready_cb (gboolean is_enabled,
810                                  gpointer data)
811 {
812         FilterResultCallbackData  *fr_data = data;
813         EmpathyAccountChooser     *chooser;
814         EmpathyAccountChooserPriv *priv;
815         TpAccount                 *account;
816         GtkTreeIter               *iter;
817         GtkListStore              *store;
818         GtkComboBox               *combobox;
819         const gchar               *icon_name;
820         GdkPixbuf                 *pixbuf;
821
822         chooser = fr_data->chooser;
823         priv = GET_PRIV (chooser);
824         account = fr_data->account;
825         iter = fr_data->iter;
826         combobox = GTK_COMBO_BOX (chooser);
827         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
828
829         icon_name = tp_account_get_icon_name (account);
830         pixbuf = empathy_pixbuf_from_icon_name (icon_name,
831                 GTK_ICON_SIZE_BUTTON);
832
833         gtk_list_store_set (store, iter,
834                             COL_ACCOUNT_IMAGE, pixbuf,
835                             COL_ACCOUNT_TEXT, tp_account_get_display_name (account),
836                             COL_ACCOUNT_ENABLED, is_enabled,
837                             -1);
838
839         if (pixbuf != NULL)
840                 g_object_unref (pixbuf);
841
842         /* set first connected account as active account */
843         if (priv->account_manually_set == FALSE &&
844             priv->set_active_item == FALSE && is_enabled) {
845                 priv->set_active_item = TRUE;
846                 gtk_combo_box_set_active_iter (combobox, iter);
847         }
848
849         filter_result_callback_data_free (fr_data);
850 }
851
852 static void
853 account_chooser_update_iter (EmpathyAccountChooser *chooser,
854                              GtkTreeIter           *iter)
855 {
856         EmpathyAccountChooserPriv *priv;
857         GtkListStore              *store;
858         GtkComboBox               *combobox;
859         TpAccount                 *account;
860         FilterResultCallbackData  *data;
861
862         priv = GET_PRIV (chooser);
863
864         combobox = GTK_COMBO_BOX (chooser);
865         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
866
867         gtk_tree_model_get (GTK_TREE_MODEL (store), iter,
868                             COL_ACCOUNT_POINTER, &account,
869                             -1);
870
871         /* Skip rows without account associated */
872         if (account == NULL)
873                 return;
874
875         data = filter_result_callback_data_new (chooser, account, iter);
876
877         if (priv->filter)
878                 priv->filter (account, account_chooser_filter_ready_cb,
879                               (gpointer) data, priv->filter_data);
880         else
881                 account_chooser_filter_ready_cb (TRUE, (gpointer) data);
882
883         g_object_unref (account);
884 }
885
886 static void
887 account_chooser_status_changed_cb (TpAccount  *account,
888                                    guint       old_status,
889                                    guint       new_status,
890                                    guint       reason,
891                                    gchar      *dbus_error_name,
892                                    GHashTable *details,
893                                    gpointer    user_data)
894 {
895         EmpathyAccountChooser *chooser = user_data;
896         GtkTreeIter iter;
897
898         if (account_chooser_find_account (chooser, account, &iter)) {
899                 account_chooser_update_iter (chooser, &iter);
900         }
901 }
902
903 static gboolean
904 account_chooser_separator_func (GtkTreeModel         *model,
905                                 GtkTreeIter          *iter,
906                                 EmpathyAccountChooser *chooser)
907 {
908         RowType row_type;
909
910         gtk_tree_model_get (model, iter, COL_ACCOUNT_ROW_TYPE, &row_type, -1);
911         return (row_type == ROW_SEPARATOR);
912 }
913
914 static gboolean
915 account_chooser_set_account_foreach (GtkTreeModel   *model,
916                                      GtkTreePath    *path,
917                                      GtkTreeIter    *iter,
918                                      SetAccountData *data)
919 {
920         TpAccount *account;
921         gboolean   equal;
922
923         gtk_tree_model_get (model, iter, COL_ACCOUNT_POINTER, &account, -1);
924
925         equal = (data->account == account);
926
927         if (account) {
928                 g_object_unref (account);
929         }
930
931         if (equal) {
932                 GtkComboBox *combobox;
933
934                 combobox = GTK_COMBO_BOX (data->chooser);
935                 gtk_combo_box_set_active_iter (combobox, iter);
936
937                 data->set = TRUE;
938         }
939
940         return equal;
941 }
942
943 static gboolean
944 account_chooser_filter_foreach (GtkTreeModel *model,
945                                 GtkTreePath  *path,
946                                 GtkTreeIter  *iter,
947                                 gpointer      chooser)
948 {
949         account_chooser_update_iter (chooser, iter);
950         return FALSE;
951 }
952
953 /**
954  * empathy_account_chooser_set_filter:
955  * @chooser: an #EmpathyAccountChooser
956  * @filter: a filter
957  * @user_data: data to pass to @filter, or %NULL
958  *
959  * Sets a filter on the @chooser so only accounts that are %TRUE in the eyes
960  * of the filter are visible in the @chooser.
961  */
962 void
963 empathy_account_chooser_set_filter (EmpathyAccountChooser           *chooser,
964                                     EmpathyAccountChooserFilterFunc  filter,
965                                     gpointer                         user_data)
966 {
967         EmpathyAccountChooserPriv *priv;
968         GtkTreeModel *model;
969
970         g_return_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser));
971
972         priv = GET_PRIV (chooser);
973
974         priv->filter = filter;
975         priv->filter_data = user_data;
976
977         /* Refilter existing data */
978         priv->set_active_item = FALSE;
979         model = gtk_combo_box_get_model (GTK_COMBO_BOX (chooser));
980         gtk_tree_model_foreach (model, account_chooser_filter_foreach, chooser);
981 }
982
983 /**
984  * EmpathyAccountChooserFilterFunc:
985  * @account: a #TpAccount
986  * @user_data: user data, or %NULL
987  *
988  * A function which decides whether the account indicated by @account
989  * is visible.
990  *
991  * Return value: whether the account indicated by @account is visible.
992  */
993
994 /**
995  * empathy_account_chooser_filter_is_connected:
996  * @account: a #TpAccount
997  * @callback: an #EmpathyAccountChooserFilterResultCallback accepting the result
998  * @callback_data: data passed to the @callback
999  * @user_data: user data or %NULL
1000  *
1001  * A useful #EmpathyAccountChooserFilterFunc that one could pass into
1002  * empathy_account_chooser_set_filter() and only show connected accounts.
1003  *
1004  * Returns (via the callback) TRUE is @account is connected
1005  */
1006 void
1007 empathy_account_chooser_filter_is_connected (
1008         TpAccount                                 *account,
1009         EmpathyAccountChooserFilterResultCallback  callback,
1010         gpointer                                   callback_data,
1011         gpointer                                   user_data)
1012 {
1013         gboolean is_connected =
1014                 tp_account_get_connection_status (account, NULL)
1015                 == TP_CONNECTION_STATUS_CONNECTED;
1016         callback (is_connected, callback_data);
1017 }
1018
1019 /**
1020  * empathy_account_chooser_filter_supports_multichat:
1021  * @account: a #TpAccount
1022  * @callback: an #EmpathyAccountChooserFilterResultCallback accepting the result
1023  * @callback_data: data passed to the @callback
1024  * @user_data: user data or %NULL
1025  *
1026  * An #EmpathyAccountChooserFilterFunc that returns accounts that both
1027  * support multiuser text chat and are connected.
1028  *
1029  * Returns (via the callback) TRUE if @account both supports muc and is connected
1030  */
1031 void
1032 empathy_account_chooser_filter_supports_chatrooms (
1033         TpAccount                                 *account,
1034         EmpathyAccountChooserFilterResultCallback  callback,
1035         gpointer                                   callback_data,
1036         gpointer                                   user_data)
1037 {
1038         TpConnection       *connection;
1039         gboolean           supported = FALSE;
1040         TpCapabilities     *caps;
1041
1042         /* check if CM supports multiuser text chat */
1043         connection = tp_account_get_connection (account);
1044         if (connection == NULL)
1045                 goto out;
1046
1047         caps = tp_connection_get_capabilities (connection);
1048         if (caps == NULL)
1049                 goto out;
1050
1051         supported = tp_capabilities_supports_text_chatrooms (caps);
1052
1053 out:
1054         callback (supported, callback_data);
1055 }
1056
1057 gboolean
1058 empathy_account_chooser_is_ready (EmpathyAccountChooser *self)
1059 {
1060         EmpathyAccountChooserPriv *priv = GET_PRIV (self);
1061
1062         return priv->ready;
1063 }
1064
1065 TpAccount *
1066 empathy_account_chooser_get_account (EmpathyAccountChooser *chooser)
1067 {
1068         TpAccount *account;
1069
1070         account = empathy_account_chooser_dup_account (chooser);
1071         if (account == NULL)
1072                 return NULL;
1073
1074         g_object_unref (account);
1075
1076         return account;
1077 }
1078
1079 TpAccountManager *
1080 empathy_account_chooser_get_account_manager (EmpathyAccountChooser *self)
1081 {
1082         EmpathyAccountChooserPriv *priv = GET_PRIV (self);
1083
1084         return priv->manager;
1085 }