]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-account-chooser.c
Added functions to determine if a contact has video capabilities
[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 <libmissioncontrol/mission-control.h>
33
34 #include <libempathy/empathy-account-manager.h>
35 #include <libempathy/empathy-utils.h>
36
37 #include "empathy-ui-utils.h"
38 #include "empathy-account-chooser.h"
39
40 /**
41  * SECTION:empathy-account-chooser
42  * @title:EmpathyAccountChooser
43  * @short_description: A widget used to choose from a list of accounts
44  * @include: libempathy-gtk/empathy-account-chooser.h
45  *
46  * #EmpathyAccountChooser is a widget which extends #GtkComboBox to provide
47  * a chooser of available accounts.
48  */
49
50 /**
51  * EmpathyAccountChooser:
52  * @parent: parent object
53  *
54  * Widget which extends #GtkComboBox to provide a chooser of available accounts.
55  */
56
57 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyAccountChooser)
58 typedef struct {
59         EmpathyAccountManager          *manager;
60         gboolean                        set_active_item;
61         gboolean                        has_all_option;
62         EmpathyAccountChooserFilterFunc filter;
63         gpointer                        filter_data;
64 } EmpathyAccountChooserPriv;
65
66 typedef struct {
67         EmpathyAccountChooser *chooser;
68         EmpathyAccount        *account;
69         gboolean               set;
70 } SetAccountData;
71
72 enum {
73         COL_ACCOUNT_IMAGE,
74         COL_ACCOUNT_TEXT,
75         COL_ACCOUNT_ENABLED, /* Usually tied to connected state */
76         COL_ACCOUNT_POINTER,
77         COL_ACCOUNT_COUNT
78 };
79
80 static void     account_chooser_finalize               (GObject                  *object);
81 static void     account_chooser_get_property           (GObject                  *object,
82                                                         guint                     param_id,
83                                                         GValue                   *value,
84                                                         GParamSpec               *pspec);
85 static void     account_chooser_set_property           (GObject                  *object,
86                                                         guint                     param_id,
87                                                         const GValue             *value,
88                                                         GParamSpec               *pspec);
89 static void     account_chooser_setup                  (EmpathyAccountChooser    *chooser);
90 static void     account_chooser_account_created_cb     (EmpathyAccountManager    *manager,
91                                                         EmpathyAccount           *account,
92                                                         EmpathyAccountChooser    *chooser);
93 static void     account_chooser_account_add_foreach    (EmpathyAccount                *account,
94                                                         EmpathyAccountChooser    *chooser);
95 static void     account_chooser_account_deleted_cb     (EmpathyAccountManager    *manager,
96                                                         EmpathyAccount           *account,
97                                                         EmpathyAccountChooser    *chooser);
98 static void     account_chooser_account_remove_foreach (EmpathyAccount                *account,
99                                                         EmpathyAccountChooser    *chooser);
100 static void     account_chooser_update_iter            (EmpathyAccountChooser    *chooser,
101                                                         GtkTreeIter              *iter);
102 static void     account_chooser_connection_changed_cb  (EmpathyAccountManager    *manager,
103                                                         EmpathyAccount                *account,
104                                                         TpConnectionStatusReason  reason,
105                                                         TpConnectionStatus        new_status,
106                                                         TpConnectionStatus        old_status,
107                                                         EmpathyAccountChooser    *chooser);
108 static gboolean account_chooser_separator_func         (GtkTreeModel             *model,
109                                                         GtkTreeIter              *iter,
110                                                         EmpathyAccountChooser    *chooser);
111 static gboolean account_chooser_set_account_foreach    (GtkTreeModel             *model,
112                                                         GtkTreePath              *path,
113                                                         GtkTreeIter              *iter,
114                                                         SetAccountData           *data);
115
116 enum {
117         PROP_0,
118         PROP_HAS_ALL_OPTION,
119 };
120
121 G_DEFINE_TYPE (EmpathyAccountChooser, empathy_account_chooser, GTK_TYPE_COMBO_BOX);
122
123 static void
124 empathy_account_chooser_class_init (EmpathyAccountChooserClass *klass)
125 {
126         GObjectClass *object_class = G_OBJECT_CLASS (klass);
127
128         object_class->finalize = account_chooser_finalize;
129         object_class->get_property = account_chooser_get_property;
130         object_class->set_property = account_chooser_set_property;
131
132         /**
133          * EmpathyAccountChooser:has-all-option:
134          *
135          * Have an additional option in the list to mean all accounts.
136          */
137         g_object_class_install_property (object_class,
138                                          PROP_HAS_ALL_OPTION,
139                                          g_param_spec_boolean ("has-all-option",
140                                                                "Has All Option",
141                                                                "Have a separate option in the list to mean ALL accounts",
142                                                                FALSE,
143                                                                G_PARAM_READWRITE));
144
145         g_type_class_add_private (object_class, sizeof (EmpathyAccountChooserPriv));
146 }
147
148 static void
149 empathy_account_chooser_init (EmpathyAccountChooser *chooser)
150 {
151         EmpathyAccountChooserPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (chooser,
152                 EMPATHY_TYPE_ACCOUNT_CHOOSER, EmpathyAccountChooserPriv);
153
154         chooser->priv = priv;
155         priv->set_active_item = FALSE;
156         priv->filter = NULL;
157         priv->filter_data = NULL;
158
159         priv->manager = empathy_account_manager_dup_singleton ();
160
161         g_signal_connect (priv->manager, "account-created",
162                           G_CALLBACK (account_chooser_account_created_cb),
163                           chooser);
164         g_signal_connect (priv->manager, "account-deleted",
165                           G_CALLBACK (account_chooser_account_deleted_cb),
166                           chooser);
167         g_signal_connect (priv->manager, "account-connection-changed",
168                           G_CALLBACK (account_chooser_connection_changed_cb),
169                           chooser);
170
171         account_chooser_setup (EMPATHY_ACCOUNT_CHOOSER (chooser));
172 }
173
174 static void
175 account_chooser_finalize (GObject *object)
176 {
177         EmpathyAccountChooserPriv *priv = GET_PRIV (object);
178
179         g_signal_handlers_disconnect_by_func (priv->manager,
180                                               account_chooser_connection_changed_cb,
181                                               object);
182         g_signal_handlers_disconnect_by_func (priv->manager,
183                                               account_chooser_account_created_cb,
184                                               object);
185         g_signal_handlers_disconnect_by_func (priv->manager,
186                                               account_chooser_account_deleted_cb,
187                                               object);
188         g_object_unref (priv->manager);
189
190         G_OBJECT_CLASS (empathy_account_chooser_parent_class)->finalize (object);
191 }
192
193 static void
194 account_chooser_get_property (GObject    *object,
195                               guint       param_id,
196                               GValue     *value,
197                               GParamSpec *pspec)
198 {
199         EmpathyAccountChooserPriv *priv;
200
201         priv = GET_PRIV (object);
202
203         switch (param_id) {
204         case PROP_HAS_ALL_OPTION:
205                 g_value_set_boolean (value, priv->has_all_option);
206                 break;
207         default:
208                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
209                 break;
210         };
211 }
212
213 static void
214 account_chooser_set_property (GObject      *object,
215                               guint         param_id,
216                               const GValue *value,
217                               GParamSpec   *pspec)
218 {
219         EmpathyAccountChooserPriv *priv;
220
221         priv = GET_PRIV (object);
222
223         switch (param_id) {
224         case PROP_HAS_ALL_OPTION:
225                 empathy_account_chooser_set_has_all_option (EMPATHY_ACCOUNT_CHOOSER (object),
226                                                            g_value_get_boolean (value));
227                 break;
228         default:
229                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
230                 break;
231         };
232 }
233
234 /**
235  * empathy_account_chooser_new:
236  *
237  * Creates a new #EmpathyAccountChooser.
238  *
239  * Return value: A new #EmpathyAccountChooser
240  */
241 GtkWidget *
242 empathy_account_chooser_new (void)
243 {
244         GtkWidget                *chooser;
245
246         chooser = g_object_new (EMPATHY_TYPE_ACCOUNT_CHOOSER, NULL);
247
248         return chooser;
249 }
250
251 /**
252  * empathy_account_chooser_dup_account:
253  * @chooser: an #EmpathyAccountChooser
254  *
255  * Returns the account which is currently selected in the chooser or %NULL
256  * if there is no account selected. The #EmpathyAccount returned should be
257  * unrefed with g_object_unref() when finished with.
258  *
259  * Return value: a new ref to the #EmpathyAccount currently selected, or %NULL.
260  */
261 EmpathyAccount *
262 empathy_account_chooser_dup_account (EmpathyAccountChooser *chooser)
263 {
264         EmpathyAccountChooserPriv *priv;
265         EmpathyAccount           *account;
266         GtkTreeModel             *model;
267         GtkTreeIter               iter;
268
269         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), NULL);
270
271         priv = GET_PRIV (chooser);
272
273         model = gtk_combo_box_get_model (GTK_COMBO_BOX (chooser));
274         if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (chooser), &iter)) {
275                 return NULL;
276         }
277
278         gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, &account, -1);
279
280         return account;
281 }
282
283 /**
284  * empathy_account_chooser_get_connection:
285  * @chooser: an #EmpathyAccountChooser
286  *
287  * Returns a borrowed reference to the #TpConnection associated with the
288  * account currently selected. The caller must reference the returned object with
289  * g_object_ref() if it will be kept
290  *
291  * Return value: a borrowed reference to the #TpConnection associated with the
292  * account curently selected.
293  */
294 TpConnection *
295 empathy_account_chooser_get_connection (EmpathyAccountChooser *chooser)
296 {
297         EmpathyAccountChooserPriv *priv;
298         EmpathyAccount            *account;
299         TpConnection              *connection;
300
301         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), NULL);
302
303         priv = GET_PRIV (chooser);
304
305         account = empathy_account_chooser_dup_account (chooser);
306         connection = empathy_account_get_connection (account);
307         g_object_unref (account);
308
309         return connection;
310 }
311
312 /**
313  * empathy_account_chooser_set_account:
314  * @chooser: an #EmpathyAccountChooser
315  * @account: an #EmpathyAccount
316  *
317  * Sets the currently selected account to @account, if it exists in the list.
318  *
319  * Return value: whether the chooser was set to @account.
320  */
321 gboolean
322 empathy_account_chooser_set_account (EmpathyAccountChooser *chooser,
323                                      EmpathyAccount *account)
324 {
325         GtkComboBox    *combobox;
326         GtkTreeModel   *model;
327         GtkTreeIter     iter;
328         SetAccountData  data;
329
330         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), FALSE);
331
332         combobox = GTK_COMBO_BOX (chooser);
333         model = gtk_combo_box_get_model (combobox);
334         gtk_combo_box_get_active_iter (combobox, &iter);
335
336         data.chooser = chooser;
337         data.account = account;
338
339         gtk_tree_model_foreach (model,
340                                 (GtkTreeModelForeachFunc) account_chooser_set_account_foreach,
341                                 &data);
342
343         return data.set;
344 }
345
346 /**
347  * empathy_account_chooser_get_has_all_option:
348  * @chooser: an #EmpathyAccountChooser
349  *
350  * Returns whether @chooser has the #EmpathyAccountChooser:has-all-option property
351  * set to true.
352  *
353  * Return value: whether @chooser has the #EmpathyAccountChooser:has-all-option property
354  * enabled.
355  */
356 gboolean
357 empathy_account_chooser_get_has_all_option (EmpathyAccountChooser *chooser)
358 {
359         EmpathyAccountChooserPriv *priv;
360
361         g_return_val_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser), FALSE);
362
363         priv = GET_PRIV (chooser);
364
365         return priv->has_all_option;
366 }
367
368 /**
369  * empathy_account_chooser_set_has_all_option:
370  * @chooser: an #EmpathyAccountChooser
371  * @has_all_option: a new value for the #EmpathyAccountChooser:has-all-option property
372  *
373  * Sets the #EmpathyAccountChooser:has-all-option property.
374  */
375 void
376 empathy_account_chooser_set_has_all_option (EmpathyAccountChooser *chooser,
377                                            gboolean              has_all_option)
378 {
379         EmpathyAccountChooserPriv *priv;
380         GtkComboBox              *combobox;
381         GtkListStore             *store;
382         GtkTreeModel             *model;
383         GtkTreeIter               iter;
384
385         g_return_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser));
386
387         priv = GET_PRIV (chooser);
388
389         if (priv->has_all_option == has_all_option) {
390                 return;
391         }
392
393         combobox = GTK_COMBO_BOX (chooser);
394         model = gtk_combo_box_get_model (combobox);
395         store = GTK_LIST_STORE (model);
396
397         priv->has_all_option = has_all_option;
398
399         /*
400          * The first 2 options are the ALL and separator
401          */
402
403         if (has_all_option) {
404                 gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser),
405                                                       (GtkTreeViewRowSeparatorFunc)
406                                                       account_chooser_separator_func,
407                                                       chooser,
408                                                       NULL);
409
410                 gtk_list_store_prepend (store, &iter);
411                 gtk_list_store_set (store, &iter,
412                                     COL_ACCOUNT_TEXT, NULL,
413                                     COL_ACCOUNT_ENABLED, TRUE,
414                                     COL_ACCOUNT_POINTER, NULL,
415                                     -1);
416
417                 gtk_list_store_prepend (store, &iter);
418                 gtk_list_store_set (store, &iter,
419                                     COL_ACCOUNT_TEXT, _("All"),
420                                     COL_ACCOUNT_ENABLED, TRUE,
421                                     COL_ACCOUNT_POINTER, NULL,
422                                     -1);
423         } else {
424                 if (gtk_tree_model_get_iter_first (model, &iter)) {
425                         if (gtk_list_store_remove (GTK_LIST_STORE (model), &iter)) {
426                                 gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
427                         }
428                 }
429
430                 gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser),
431                                                       (GtkTreeViewRowSeparatorFunc)
432                                                       NULL,
433                                                       NULL,
434                                                       NULL);
435         }
436
437         g_object_notify (G_OBJECT (chooser), "has-all-option");
438 }
439
440 static void
441 account_chooser_setup (EmpathyAccountChooser *chooser)
442 {
443         EmpathyAccountChooserPriv *priv;
444         GList                    *accounts;
445         GtkListStore             *store;
446         GtkCellRenderer          *renderer;
447         GtkComboBox              *combobox;
448
449         priv = GET_PRIV (chooser);
450
451         /* Set up combo box with new store */
452         combobox = GTK_COMBO_BOX (chooser);
453
454         gtk_cell_layout_clear (GTK_CELL_LAYOUT (combobox));
455
456         store = gtk_list_store_new (COL_ACCOUNT_COUNT,
457                                     G_TYPE_STRING,    /* Image */
458                                     G_TYPE_STRING,    /* Name */
459                                     G_TYPE_BOOLEAN,   /* Enabled */
460                                     EMPATHY_TYPE_ACCOUNT);
461
462         gtk_combo_box_set_model (combobox, GTK_TREE_MODEL (store));
463
464         renderer = gtk_cell_renderer_pixbuf_new ();
465         gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combobox), renderer, FALSE);
466         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combobox), renderer,
467                                         "icon-name", COL_ACCOUNT_IMAGE,
468                                         "sensitive", COL_ACCOUNT_ENABLED,
469                                         NULL);
470         g_object_set (renderer, "stock-size", GTK_ICON_SIZE_BUTTON, NULL);
471
472         renderer = gtk_cell_renderer_text_new ();
473         gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combobox), renderer, TRUE);
474         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combobox), renderer,
475                                         "text", COL_ACCOUNT_TEXT,
476                                         "sensitive", COL_ACCOUNT_ENABLED,
477                                         NULL);
478
479         /* Populate accounts */
480         accounts = empathy_account_manager_dup_accounts (priv->manager);
481         g_list_foreach (accounts,
482                         (GFunc) account_chooser_account_add_foreach,
483                         chooser);
484
485         g_list_free (accounts);
486         g_object_unref (store);
487 }
488
489 static void
490 account_chooser_account_created_cb (EmpathyAccountManager *manager,
491                                     EmpathyAccount        *account,
492                                     EmpathyAccountChooser *chooser)
493 {
494         account_chooser_account_add_foreach (account, chooser);
495 }
496
497 static void
498 account_chooser_account_add_foreach (EmpathyAccount        *account,
499                                      EmpathyAccountChooser *chooser)
500 {
501         GtkListStore *store;
502         GtkComboBox  *combobox;
503         GtkTreeIter   iter;
504         gint          position;
505
506         combobox = GTK_COMBO_BOX (chooser);
507         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
508
509         position = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (store), NULL);
510         gtk_list_store_insert_with_values (store, &iter, position,
511                                            COL_ACCOUNT_POINTER, account,
512                                            -1);
513         account_chooser_update_iter (chooser, &iter);
514         /* We got a reffed account and it was reffed by the liststore as well */
515         g_object_unref (account);
516 }
517
518 static void
519 account_chooser_account_deleted_cb (EmpathyAccountManager *manager,
520                                     EmpathyAccount        *account,
521                                     EmpathyAccountChooser *chooser)
522 {
523         account_chooser_account_remove_foreach (account, chooser);
524 }
525
526 typedef struct {
527         EmpathyAccount   *account;
528         GtkTreeIter *iter;
529         gboolean     found;
530 } FindAccountData;
531
532 static gboolean
533 account_chooser_find_account_foreach (GtkTreeModel *model,
534                                       GtkTreePath  *path,
535                                       GtkTreeIter  *iter,
536                                       gpointer      user_data)
537 {
538         FindAccountData *data = user_data;
539         EmpathyAccount  *account;
540
541         gtk_tree_model_get (model, iter, COL_ACCOUNT_POINTER, &account, -1);
542
543         if (empathy_account_equal (account, data->account)) {
544                 data->found = TRUE;
545                 *(data->iter) = *iter;
546                 g_object_unref (account);
547
548                 return TRUE;
549         }
550
551         g_object_unref (account);
552
553         return FALSE;
554 }
555
556 static gboolean
557 account_chooser_find_account (EmpathyAccountChooser *chooser,
558                               EmpathyAccount        *account,
559                               GtkTreeIter           *iter)
560 {
561         GtkListStore    *store;
562         GtkComboBox     *combobox;
563         FindAccountData  data;
564
565         combobox = GTK_COMBO_BOX (chooser);
566         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
567
568         data.account = account;
569         data.iter = iter;
570         gtk_tree_model_foreach (GTK_TREE_MODEL (store),
571                                 account_chooser_find_account_foreach,
572                                 &data);
573
574         return data.found;
575 }
576
577 static void
578 account_chooser_account_remove_foreach (EmpathyAccount        *account,
579                                         EmpathyAccountChooser *chooser)
580 {
581         GtkListStore *store;
582         GtkComboBox  *combobox;
583         GtkTreeIter   iter;
584
585         combobox = GTK_COMBO_BOX (chooser);
586         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
587
588         if (account_chooser_find_account (chooser, account, &iter)) {
589                 gtk_list_store_remove (store, &iter);
590         }
591 }
592
593 static void
594 account_chooser_update_iter (EmpathyAccountChooser *chooser,
595                              GtkTreeIter           *iter)
596 {
597         EmpathyAccountChooserPriv *priv;
598         GtkListStore              *store;
599         GtkComboBox               *combobox;
600         EmpathyAccount            *account;
601         const gchar               *icon_name;
602         gboolean                   is_enabled = TRUE;
603
604         priv = GET_PRIV (chooser);
605
606         combobox = GTK_COMBO_BOX (chooser);
607         store = GTK_LIST_STORE (gtk_combo_box_get_model (combobox));
608
609         gtk_tree_model_get (GTK_TREE_MODEL (store), iter,
610                             COL_ACCOUNT_POINTER, &account,
611                             -1);
612
613         icon_name = empathy_icon_name_from_account (account);
614         if (priv->filter) {
615                 is_enabled = priv->filter (account, priv->filter_data);
616         }
617
618         gtk_list_store_set (store, iter,
619                             COL_ACCOUNT_IMAGE, icon_name,
620                             COL_ACCOUNT_TEXT, empathy_account_get_display_name (account),
621                             COL_ACCOUNT_ENABLED, is_enabled,
622                             -1);
623
624         /* set first connected account as active account */
625         if (priv->set_active_item == FALSE && is_enabled) {
626                 priv->set_active_item = TRUE;
627                 gtk_combo_box_set_active_iter (combobox, iter);
628         }
629
630         g_object_unref (account);
631 }
632
633 static void
634 account_chooser_connection_changed_cb (EmpathyAccountManager   *manager,
635                                        EmpathyAccount          *account,
636                                        TpConnectionStatusReason reason,
637                                        TpConnectionStatus       new_status,
638                                        TpConnectionStatus       old_status,
639                                        EmpathyAccountChooser   *chooser)
640 {
641         GtkTreeIter iter;
642
643         if (account_chooser_find_account (chooser, account, &iter)) {
644                 account_chooser_update_iter (chooser, &iter);
645         }
646 }
647
648 static gboolean
649 account_chooser_separator_func (GtkTreeModel         *model,
650                                 GtkTreeIter          *iter,
651                                 EmpathyAccountChooser *chooser)
652 {
653         EmpathyAccountChooserPriv *priv;
654         gchar                    *text;
655         gboolean                  is_separator;
656
657         priv = GET_PRIV (chooser);
658
659         if (!priv->has_all_option) {
660                 return FALSE;
661         }
662
663         gtk_tree_model_get (model, iter, COL_ACCOUNT_TEXT, &text, -1);
664         is_separator = text == NULL;
665         g_free (text);
666
667         return is_separator;
668 }
669
670 static gboolean
671 account_chooser_set_account_foreach (GtkTreeModel   *model,
672                                      GtkTreePath    *path,
673                                      GtkTreeIter    *iter,
674                                      SetAccountData *data)
675 {
676         EmpathyAccount *account;
677         gboolean   equal;
678
679         gtk_tree_model_get (model, iter, COL_ACCOUNT_POINTER, &account, -1);
680
681         /* Special case so we can make it possible to select the All option */
682         if ((data->account == NULL) != (account == NULL)) {
683                 equal = FALSE;
684         }
685         else if (data->account == account) {
686                 equal = TRUE;
687         } else {
688                 equal = empathy_account_equal (data->account, account);
689         }
690
691         if (account) {
692                 g_object_unref (account);
693         }
694
695         if (equal) {
696                 GtkComboBox *combobox;
697
698                 combobox = GTK_COMBO_BOX (data->chooser);
699                 gtk_combo_box_set_active_iter (combobox, iter);
700
701                 data->set = TRUE;
702         }
703
704         return equal;
705 }
706
707 static gboolean
708 account_chooser_filter_foreach (GtkTreeModel *model,
709                                 GtkTreePath  *path,
710                                 GtkTreeIter  *iter,
711                                 gpointer      chooser)
712 {
713         account_chooser_update_iter (chooser, iter);
714         return FALSE;
715 }
716
717 /**
718  * empathy_account_chooser_set_filter:
719  * @chooser: an #EmpathyAccountChooser
720  * @filter: a filter
721  * @user_data: data to pass to @filter, or %NULL
722  *
723  * Sets a filter on the @chooser so only accounts that are %TRUE in the eyes
724  * of the filter are visible in the @chooser.
725  */
726 void
727 empathy_account_chooser_set_filter (EmpathyAccountChooser           *chooser,
728                                     EmpathyAccountChooserFilterFunc  filter,
729                                     gpointer                         user_data)
730 {
731         EmpathyAccountChooserPriv *priv;
732         GtkTreeModel *model;
733
734         g_return_if_fail (EMPATHY_IS_ACCOUNT_CHOOSER (chooser));
735
736         priv = GET_PRIV (chooser);
737
738         priv->filter = filter;
739         priv->filter_data = user_data;
740
741         /* Refilter existing data */
742         priv->set_active_item = FALSE;
743         model = gtk_combo_box_get_model (GTK_COMBO_BOX (chooser));
744         gtk_tree_model_foreach (model, account_chooser_filter_foreach, chooser);
745 }
746
747 /**
748  * EmpathyAccountChooserFilterFunc:
749  * @account: an #EmpathyAccount
750  * @user_data: user data, or %NULL
751  *
752  * A function which decides whether the account indicated by @account
753  * is visible.
754  *
755  * Return value: whether the account indicated by @account is visible.
756  */
757
758 /**
759  * empathy_account_chooser_filter_is_connected:
760  * @account: an #EmpathyAccount
761  * @user_data: user data or %NULL
762  *
763  * A useful #EmpathyAccountChooserFilterFunc that one could pass into
764  * empathy_account_chooser_set_filter() and only show connected accounts.
765  *
766  * Return value: Whether @account is connected
767  */
768 gboolean
769 empathy_account_chooser_filter_is_connected (EmpathyAccount *account,
770                                              gpointer   user_data)
771 {
772         TpConnectionStatus  status;
773
774         g_object_get (account, "status", &status, NULL);
775
776         return status == TP_CONNECTION_STATUS_CONNECTED;
777 }
778