* check for a valid foldername
[modest] / src / widgets / modest-account-view.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <glib/gi18n.h>
31 #include "modest-account-view.h"
32
33 #include <modest-account-mgr.h>
34 #include <modest-account-mgr-helpers.h>
35 #include <modest-text-utils.h>
36 #include <modest-runtime.h>
37
38 #include <gtk/gtkcellrenderertoggle.h>
39 #include <gtk/gtkcellrenderertext.h>
40 #include <gtk/gtktreeselection.h>
41 #include <gtk/gtkliststore.h>
42 #include <string.h> /* For strcmp(). */
43
44 /* 'private'/'protected' functions */
45 static void modest_account_view_class_init    (ModestAccountViewClass *klass);
46 static void modest_account_view_init          (ModestAccountView *obj);
47 static void modest_account_view_finalize      (GObject *obj);
48
49 static void modest_account_view_select_account (ModestAccountView *account_view, 
50         const gchar* account_name);
51
52 typedef enum {
53         MODEST_ACCOUNT_VIEW_NAME_COLUMN,
54         MODEST_ACCOUNT_VIEW_DISPLAY_NAME_COLUMN,
55         MODEST_ACCOUNT_VIEW_IS_ENABLED_COLUMN,
56         MODEST_ACCOUNT_VIEW_IS_DEFAULT_COLUMN,
57         MODEST_ACCOUNT_VIEW_PROTO_COLUMN,
58         MODEST_ACCOUNT_VIEW_LAST_UPDATED_COLUMN,
59
60         MODEST_ACCOUNT_VIEW_COLUMN_NUM
61 } AccountViewColumns;
62
63 typedef struct _ModestAccountViewPrivate ModestAccountViewPrivate;
64 struct _ModestAccountViewPrivate {
65         ModestAccountMgr *account_mgr;
66
67         /* Signal handlers */
68         gulong acc_inserted_handler, acc_removed_handler,
69                 acc_busy_changed_handler, acc_changed_handler;
70 };
71 #define MODEST_ACCOUNT_VIEW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
72                                                  MODEST_TYPE_ACCOUNT_VIEW, \
73                                                  ModestAccountViewPrivate))
74 /* globals */
75 static GtkTreeViewClass *parent_class = NULL;
76
77 GType
78 modest_account_view_get_type (void)
79 {
80         static GType my_type = 0;
81         if (!my_type) {
82                 static const GTypeInfo my_info = {
83                         sizeof(ModestAccountViewClass),
84                         NULL,           /* base init */
85                         NULL,           /* base finalize */
86                         (GClassInitFunc) modest_account_view_class_init,
87                         NULL,           /* class finalize */
88                         NULL,           /* class data */
89                         sizeof(ModestAccountView),
90                         1,              /* n_preallocs */
91                         (GInstanceInitFunc) modest_account_view_init,
92                         NULL
93                 };
94                 my_type = g_type_register_static (GTK_TYPE_TREE_VIEW,
95                                                   "ModestAccountView",
96                                                   &my_info, 0);
97         }
98         return my_type;
99 }
100
101 static void
102 modest_account_view_class_init (ModestAccountViewClass *klass)
103 {
104         GObjectClass *gobject_class;
105         gobject_class = (GObjectClass*) klass;
106
107         parent_class            = g_type_class_peek_parent (klass);
108         gobject_class->finalize = modest_account_view_finalize;
109
110         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewPrivate));
111 }
112
113 static void
114 modest_account_view_init (ModestAccountView *obj)
115 {
116         ModestAccountViewPrivate *priv;
117
118         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(obj);
119         
120         priv->account_mgr = NULL; 
121         priv->acc_inserted_handler = 0;
122         priv->acc_removed_handler = 0;
123         priv->acc_busy_changed_handler = 0;
124         priv->acc_changed_handler = 0;
125 }
126
127 static void
128 modest_account_view_finalize (GObject *obj)
129 {
130         ModestAccountViewPrivate *priv;
131
132         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(obj);
133
134         if (priv->account_mgr) {
135                 if (g_signal_handler_is_connected (modest_runtime_get_account_store (),
136                                                    priv->acc_inserted_handler))
137                         g_signal_handler_disconnect (modest_runtime_get_account_store (), 
138                                                      priv->acc_inserted_handler);
139
140                 if (g_signal_handler_is_connected (modest_runtime_get_account_store (),
141                                                    priv->acc_removed_handler))
142                         g_signal_handler_disconnect (modest_runtime_get_account_store (), 
143                                                      priv->acc_removed_handler);
144                 
145                 if (g_signal_handler_is_connected (modest_runtime_get_account_store (),
146                                                    priv->acc_changed_handler))
147                         g_signal_handler_disconnect (modest_runtime_get_account_store (), 
148                                                      priv->acc_changed_handler);
149                 
150                 if (priv->acc_busy_changed_handler)
151                         g_signal_handler_disconnect (priv->account_mgr, priv->acc_busy_changed_handler);
152
153                 
154                 g_object_unref (G_OBJECT(priv->account_mgr));
155                 priv->account_mgr = NULL; 
156         }
157         
158         G_OBJECT_CLASS(parent_class)->finalize (obj);
159 }
160
161 /* Get the string for the last updated time. Result must be g_freed */
162 static gchar*
163 get_last_updated_string(ModestAccountMgr* account_mgr, ModestAccountData *account_data)
164 {
165         /* FIXME: let's assume that 'last update' applies to the store account... */
166         gchar* last_updated_string;
167         time_t last_updated = account_data->store_account->last_updated;
168         if (!modest_account_mgr_account_is_busy(account_mgr, account_data->account_name)) {
169                 if (last_updated > 0) 
170                         last_updated_string = modest_text_utils_get_display_date(last_updated);
171                 else
172                         last_updated_string = g_strdup (_("mcen_va_never"));
173         } else  {
174                 /* FIXME: There should be a logical name in the UI specs */
175                 last_updated_string = g_strdup(_("..."));
176         }
177         return last_updated_string;
178 }
179
180 static void
181 update_account_view (ModestAccountMgr *account_mgr, ModestAccountView *view)
182 {
183         GSList *account_names, *cursor;
184         GtkListStore *model;
185                 
186         model = GTK_LIST_STORE(gtk_tree_view_get_model (GTK_TREE_VIEW(view)));
187         
188         /* Get the ID of the currently-selected account, 
189          * so we can select it again after rebuilding the list.
190          * Note that the name doesn't change even when the display name changes.
191          */
192         gchar *selected_name = modest_account_view_get_selected_account (view);
193
194         gtk_list_store_clear (model);
195
196         /* Note: We do not show disabled accounts.
197          * Of course, this means that there is no UI to enable or disable 
198          * accounts. That is OK for maemo where no such feature or UI is 
199          * specified, so the "enabled" property is used internally to avoid 
200          * showing unfinished accounts. If a user-visible "enabled" is 
201          * needed in the future, we must use a second property for the 
202          * current use instead */
203         cursor = account_names = modest_account_mgr_account_names (account_mgr,
204                 TRUE /* only enabled accounts. */);
205
206         while (cursor) {
207                 gchar *account_name;
208                 ModestAccountData *account_data;
209                 
210                 account_name = (gchar*)cursor->data;
211                 
212                 account_data = modest_account_mgr_get_account_data (account_mgr, account_name);
213                 if (!account_data) {
214                         g_printerr ("modest: failed to get account data for %s\n", account_name);
215                         continue;
216                 }
217
218                 /* don't display accounts without stores */
219                 if (account_data->store_account) {
220
221                         GtkTreeIter iter;
222                         
223                         gchar *last_updated_string = get_last_updated_string(account_mgr, account_data);
224                         
225                         if (account_data->is_enabled) {
226                                 gtk_list_store_insert_with_values (
227                                         model, &iter, 0,
228                                         MODEST_ACCOUNT_VIEW_NAME_COLUMN,          account_name,
229                                         MODEST_ACCOUNT_VIEW_DISPLAY_NAME_COLUMN,  account_data->display_name,
230                                         MODEST_ACCOUNT_VIEW_IS_ENABLED_COLUMN,    account_data->is_enabled,
231                                         MODEST_ACCOUNT_VIEW_IS_DEFAULT_COLUMN,    account_data->is_default,
232
233                                         MODEST_ACCOUNT_VIEW_PROTO_COLUMN,
234                                         modest_protocol_info_get_transport_store_protocol_name (account_data->store_account->proto),
235         
236                                         MODEST_ACCOUNT_VIEW_LAST_UPDATED_COLUMN,  last_updated_string,
237                                         -1);
238                         }
239                         g_free (last_updated_string);
240                 }
241
242                 modest_account_mgr_free_account_data (account_mgr, account_data);
243                 cursor = cursor->next;
244         }
245
246         modest_account_mgr_free_account_names (account_names);
247         account_names = NULL;
248         
249         /* Try to re-select the same account: */
250         if (selected_name) {
251                 modest_account_view_select_account (view, selected_name);
252                 g_free (selected_name);
253         }
254 }
255
256 static void
257 on_account_busy_changed(ModestAccountMgr *account_mgr, 
258                         const gchar *account_name,
259                         gboolean busy, 
260                         ModestAccountView *self)
261 {
262         GtkListStore *model = GTK_LIST_STORE(gtk_tree_view_get_model (GTK_TREE_VIEW(self)));
263         GtkTreeIter iter;
264         g_message(__FUNCTION__);
265         if (!gtk_tree_model_get_iter_first(GTK_TREE_MODEL(model), &iter))
266                 return;
267         do
268         {
269                 gchar* cur_name;
270                 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, MODEST_ACCOUNT_VIEW_NAME_COLUMN, 
271                                                                                          &cur_name, -1);
272                 if (g_str_equal(cur_name, account_name))
273                 {
274                         ModestAccountData* account_data = 
275                                 modest_account_mgr_get_account_data (account_mgr, account_name);
276                         if (!account_data)
277                                 return;
278                         gchar* last_updated_string = get_last_updated_string(account_mgr, account_data);
279                         gtk_list_store_set(model, &iter, 
280                                            MODEST_ACCOUNT_VIEW_LAST_UPDATED_COLUMN, last_updated_string,
281                                            -1);
282                         g_free (last_updated_string);
283                         modest_account_mgr_free_account_data (account_mgr, account_data);
284                         return;
285                 }
286         }
287         while (gtk_tree_model_iter_next(GTK_TREE_MODEL(model), &iter));
288 }
289
290 static void
291 on_account_inserted (TnyAccountStore *account_store, 
292                      TnyAccount *account,
293                      gpointer user_data)
294 {
295         ModestAccountView *self;
296         ModestAccountViewPrivate *priv;
297
298         self = MODEST_ACCOUNT_VIEW (user_data);
299         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE (self);
300
301         update_account_view (priv->account_mgr, self);
302 }
303
304 static void
305 on_account_removed (TnyAccountStore *account_store, 
306                     TnyAccount *account,
307                     gpointer user_data)
308 {
309         ModestAccountView *self;
310         ModestAccountViewPrivate *priv;
311
312         self = MODEST_ACCOUNT_VIEW (user_data);
313         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE (self);
314
315         update_account_view (priv->account_mgr, self);
316 }
317
318
319 static void
320 on_account_changed (TnyAccountStore *account_store, 
321                     TnyAccount *account,
322                     gpointer user_data)
323 {
324         ModestAccountView *self;
325         ModestAccountViewPrivate *priv;
326         
327         self = MODEST_ACCOUNT_VIEW (user_data);
328         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE (self);
329         
330         g_warning ("account changed: %s", tny_account_get_id(account));
331         
332         update_account_view (priv->account_mgr, self);
333 }
334
335
336
337 static gboolean
338 find_default_account(ModestAccountView *self, GtkTreeIter *iter)
339 {
340         GtkTreeModel *model = gtk_tree_view_get_model (GTK_TREE_VIEW (self));
341         gboolean result;
342         for (result = gtk_tree_model_get_iter_first(model, iter);
343              result == TRUE; result = gtk_tree_model_iter_next(model, iter))
344         {
345                 gboolean is_default;
346                 gtk_tree_model_get (model, iter, MODEST_ACCOUNT_VIEW_IS_DEFAULT_COLUMN, &is_default, -1);
347                 if(is_default)
348                         return TRUE;
349         }
350
351         return FALSE;
352 }
353
354 static void
355 on_account_default_toggled (GtkCellRendererToggle *cell_renderer, gchar *path,
356                            ModestAccountView *self)
357 {
358         gboolean is_default = gtk_cell_renderer_toggle_get_active (cell_renderer);
359         if (is_default) {
360                 /* Do not allow an account to be marked non-default.
361                  * Only allow this to be changed by setting another account to default: */
362                 gtk_cell_renderer_toggle_set_active (cell_renderer, TRUE);
363                 return;
364         }
365
366         ModestAccountViewPrivate *priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(self);
367         GtkTreeModel *model = gtk_tree_view_get_model (GTK_TREE_VIEW(self));
368         
369         GtkTreeIter iter;
370         if (!gtk_tree_model_get_iter_from_string (model, &iter, path)) {
371                 g_printerr ("modest: cannot find iterator\n");
372                 return;
373         }
374         
375         gchar *account_name = NULL;
376         gtk_tree_model_get (model, &iter, MODEST_ACCOUNT_VIEW_NAME_COLUMN, &account_name,
377                             -1);
378         
379         /* Set this previously-non-default account as the default: */
380         if (modest_account_mgr_set_default_account (priv->account_mgr, account_name))
381         {
382                 /* Explicitely set default column because we are ignoring gconf changes */
383                 GtkTreeIter old_default_iter;
384                 if (find_default_account (self, &old_default_iter)) {
385                         gtk_list_store_set (GTK_LIST_STORE (model), &old_default_iter,
386                                             MODEST_ACCOUNT_VIEW_IS_DEFAULT_COLUMN, FALSE, -1);
387                 } else {
388                         g_warning ("%s: Did not find old default account in view", __FUNCTION__);
389                 }
390
391                 gtk_list_store_set (GTK_LIST_STORE (model), &iter,
392                                     MODEST_ACCOUNT_VIEW_IS_DEFAULT_COLUMN, TRUE, -1);
393         }
394
395         g_free (account_name);
396 }
397
398 void
399 bold_if_default_cell_data  (GtkTreeViewColumn *column,  GtkCellRenderer *renderer,
400                             GtkTreeModel *tree_model,  GtkTreeIter *iter,  gpointer user_data)
401 {
402         gboolean is_default;
403         gtk_tree_model_get (tree_model, iter, MODEST_ACCOUNT_VIEW_IS_DEFAULT_COLUMN,
404                             &is_default, -1);
405         g_object_set (G_OBJECT(renderer),
406                       "weight", is_default ? 800: 400,
407                       NULL);
408 }
409
410 static void
411 init_view (ModestAccountView *self)
412 {
413         ModestAccountViewPrivate *priv;
414         GtkCellRenderer *toggle_renderer, *text_renderer;
415         GtkListStore *model;
416         GtkTreeViewColumn *column;
417         
418         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(self);
419                 
420         model = gtk_list_store_new (6,
421                                     G_TYPE_STRING,  /* account name */
422                                     G_TYPE_STRING,  /* account display name */
423                                     G_TYPE_BOOLEAN, /* is-enabled */
424                                     G_TYPE_BOOLEAN, /* is-default */
425                                     G_TYPE_STRING,  /* account proto (pop, imap,...) */
426                                     G_TYPE_STRING   /* last updated (time_t) */
427                 ); 
428                 
429         gtk_tree_sortable_set_sort_column_id (
430                 GTK_TREE_SORTABLE (model), MODEST_ACCOUNT_VIEW_DISPLAY_NAME_COLUMN, 
431                 GTK_SORT_ASCENDING);
432
433         gtk_tree_view_set_model (GTK_TREE_VIEW(self), GTK_TREE_MODEL(model));
434         g_object_unref (G_OBJECT (model));
435
436         toggle_renderer = gtk_cell_renderer_toggle_new ();
437         text_renderer = gtk_cell_renderer_text_new ();
438
439         /* the is_default column */
440         g_object_set (G_OBJECT(toggle_renderer), "activatable", TRUE, "radio", TRUE, NULL);
441         gtk_tree_view_append_column (GTK_TREE_VIEW(self),
442                                      gtk_tree_view_column_new_with_attributes (
443                                              _("mcen_ti_default"), toggle_renderer,
444                                              "active", MODEST_ACCOUNT_VIEW_IS_DEFAULT_COLUMN, NULL));
445                                         
446         /* Disable the Maemo GtkTreeView::allow-checkbox-mode Maemo modification, 
447          * which causes the model column to be updated automatically when the row is clicked.
448          * Making this the default in Maemo's GTK+ is obviously a bug:
449          * https://maemo.org/bugzilla/show_bug.cgi?id=146
450          *
451          * djcb: indeed, they have been removed for post-bora, i added the ifdefs...
452          */
453 #ifdef MODEST_HILDON_VERSION_0  
454         g_object_set(G_OBJECT(self), "allow-checkbox-mode", FALSE, NULL);
455         g_object_set(G_OBJECT(toggle_renderer), "checkbox-mode", FALSE, NULL);
456 #endif /*MODEST_HILDON_VERSION_0 */
457         g_signal_connect (G_OBJECT(toggle_renderer), "toggled", G_CALLBACK(on_account_default_toggled),
458                           self);
459         
460         /* account name */
461         column =  gtk_tree_view_column_new_with_attributes (_("mcen_ti_account"), text_renderer, "text",
462                                                             MODEST_ACCOUNT_VIEW_DISPLAY_NAME_COLUMN, NULL);
463         gtk_tree_view_append_column (GTK_TREE_VIEW(self), column);
464         gtk_tree_view_column_set_cell_data_func(column, text_renderer, bold_if_default_cell_data,
465                                                 NULL, NULL);
466
467         /* last update for this account */
468         column =  gtk_tree_view_column_new_with_attributes (_("mcen_ti_lastupdated"), text_renderer,"text",
469                                                             MODEST_ACCOUNT_VIEW_LAST_UPDATED_COLUMN, NULL);
470         gtk_tree_view_append_column (GTK_TREE_VIEW(self),column);
471         gtk_tree_view_column_set_cell_data_func(column, text_renderer, bold_if_default_cell_data,
472                                                 NULL, NULL);
473                         
474         /* Show the column headers,
475          * which does not seem to be the default on Maemo.
476          */                     
477         gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(self), TRUE);
478
479         priv->acc_removed_handler = g_signal_connect (G_OBJECT (modest_runtime_get_account_store ()),
480                                                       "account_removed",
481                                                       G_CALLBACK(on_account_removed), self);
482
483         priv->acc_inserted_handler = g_signal_connect (G_OBJECT (modest_runtime_get_account_store ()),
484                                                        "account_inserted",
485                                                        G_CALLBACK(on_account_inserted), self);
486
487         priv->acc_inserted_handler = g_signal_connect (G_OBJECT (modest_runtime_get_account_store ()),
488                                                        "account_changed",
489                                                        G_CALLBACK(on_account_changed), self);
490
491         priv->acc_busy_changed_handler = g_signal_connect (G_OBJECT(priv->account_mgr),
492                                                            "account_busy_changed",
493                                                            G_CALLBACK(on_account_busy_changed), self);
494 }
495
496
497 ModestAccountView*
498 modest_account_view_new (ModestAccountMgr *account_mgr)
499 {
500         GObject *obj;
501         ModestAccountViewPrivate *priv;
502         
503         g_return_val_if_fail (account_mgr, NULL);
504         
505         obj  = g_object_new(MODEST_TYPE_ACCOUNT_VIEW, NULL);
506         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(obj);
507         
508         g_object_ref (G_OBJECT (account_mgr));
509         priv->account_mgr = account_mgr;
510
511         init_view (MODEST_ACCOUNT_VIEW (obj));
512         update_account_view (account_mgr, MODEST_ACCOUNT_VIEW (obj));
513         
514         return MODEST_ACCOUNT_VIEW (obj);
515 }
516
517 gchar *
518 modest_account_view_get_selected_account (ModestAccountView *self)
519 {
520         gchar *account_name = NULL;
521         GtkTreeSelection *sel;
522         GtkTreeModel *model;
523         GtkTreeIter iter;
524
525         g_return_val_if_fail (MODEST_IS_ACCOUNT_VIEW (self), NULL);
526         
527         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
528         if (gtk_tree_selection_get_selected (sel, &model, &iter)) {
529                 gtk_tree_model_get (model, &iter, 
530                                     MODEST_ACCOUNT_VIEW_NAME_COLUMN, 
531                                     &account_name, -1);
532         }
533
534         return account_name;
535 }
536
537 /* This allows us to pass more than one piece of data to the signal handler,
538  * and get a result: */
539 typedef struct 
540 {
541                 ModestAccountView* self;
542                 const gchar *account_name;
543 } ForEachData;
544
545 static gboolean
546 on_model_foreach_select_account(GtkTreeModel *model, 
547         GtkTreePath *path, GtkTreeIter *iter, gpointer user_data)
548 {
549         ForEachData *state = (ForEachData*)(user_data);
550         
551         /* Select the item if it has the matching account name: */
552         gchar *this_account_name = NULL;
553         gtk_tree_model_get (model, iter, 
554                 MODEST_ACCOUNT_VIEW_NAME_COLUMN, &this_account_name, 
555                 -1); 
556         if(this_account_name && state->account_name 
557                 && (strcmp (this_account_name, state->account_name) == 0)) {
558                 
559                 GtkTreeSelection *selection = 
560                         gtk_tree_view_get_selection (GTK_TREE_VIEW (state->self));
561                 gtk_tree_selection_select_iter (selection, iter);
562                 
563                 return TRUE; /* Stop walking the tree. */
564         }
565         
566         return FALSE; /* Keep walking the tree. */
567 }
568
569 static void modest_account_view_select_account (ModestAccountView *account_view, 
570         const gchar* account_name)
571 {       
572         /* Create a state instance so we can send two items of data to the signal handler: */
573         ForEachData *state = g_new0 (ForEachData, 1);
574         state->self = account_view;
575         state->account_name = account_name;
576         
577         GtkTreeModel *model = gtk_tree_view_get_model (
578                 GTK_TREE_VIEW (account_view));
579         gtk_tree_model_foreach (model, 
580                 on_model_foreach_select_account, state);
581                 
582         g_free (state);
583 }
584