Rebasing master into fast-dbus-open-message
[modest] / src / hildon2 / modest-accounts-window.c
1 /* Copyright (c) 2008, 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 <modest-accounts-window.h>
31 #include <modest-osso-state-saving.h>
32 #include <libosso.h>
33 #include <hildon/hildon-pannable-area.h>
34 #include <hildon/hildon-banner.h>
35 #include <hildon/hildon-helper.h>
36 #include <modest-ui-actions.h>
37 #include <modest-window-mgr.h>
38 #include <modest-signal-mgr.h>
39 #include <modest-runtime.h>
40 #include <modest-platform.h>
41 #include <hildon/hildon-program.h>
42 #include <hildon/hildon-button.h>
43 #include <modest-maemo-utils.h>
44 #include <modest-icon-names.h>
45 #include <modest-defs.h>
46 #include <modest-folder-window.h>
47 #include <modest-ui-dimming-rules.h>
48 #include <modest-ui-dimming-manager.h>
49 #include <modest-window-priv.h>
50 #include <modest-ui-constants.h>
51 #include <modest-account-mgr-helpers.h>
52 #include <modest-mailboxes-window.h>
53
54
55 /* 'private'/'protected' functions */
56 static void modest_accounts_window_class_init  (ModestAccountsWindowClass *klass);
57 static void modest_accounts_window_instance_init (ModestAccountsWindow *obj);
58 static void modest_accounts_window_finalize    (GObject *obj);
59
60 static void connect_signals (ModestAccountsWindow *self);
61 static void modest_accounts_window_disconnect_signals (ModestWindow *self);
62
63 static void on_account_activated (GtkTreeView *treeview,
64                                   GtkTreePath *path,
65                                   GtkTreeViewColumn *column,
66                                   ModestAccountsWindow *accounts_window);
67 static void on_progress_list_changed (ModestWindowMgr *mgr,
68                                       ModestAccountsWindow *self);
69 static void setup_menu (ModestAccountsWindow *self);
70 static gboolean _modest_accounts_window_map_event (GtkWidget *widget,
71                                                    GdkEvent *event,
72                                                    gpointer userdata);
73 static void update_progress_hint (ModestAccountsWindow *self);
74 static void on_queue_changed    (ModestMailOperationQueue *queue,
75                                  ModestMailOperation *mail_op,
76                                  ModestMailOperationQueueNotification type,
77                                  ModestAccountsWindow *self);
78 static void on_row_inserted (GtkTreeModel *tree_model,
79                              GtkTreePath  *path,
80                              GtkTreeIter  *iter,
81                              gpointer      user_data);
82 static void on_row_deleted (GtkTreeModel *tree_model,
83                             GtkTreePath  *path,
84                             gpointer      user_data);
85 static void row_count_changed (ModestAccountsWindow *self);
86
87 typedef struct _ModestAccountsWindowPrivate ModestAccountsWindowPrivate;
88 struct _ModestAccountsWindowPrivate {
89
90         GtkWidget *box;
91         GtkWidget *pannable;
92         GtkWidget *account_view;
93         GtkWidget *no_accounts_container;
94         GtkWidget *new_message_button;
95
96         /* signals */
97         GSList *sighandlers;
98
99         gboolean progress_hint;
100         guint queue_change_handler;
101 };
102 #define MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(o)  (G_TYPE_INSTANCE_GET_PRIVATE((o), \
103                                                                             MODEST_TYPE_ACCOUNTS_WINDOW, \
104                                                                             ModestAccountsWindowPrivate))
105
106 /* globals */
107 static GtkWindowClass *parent_class = NULL;
108 static GtkWidget *pre_created_accounts_window = NULL;
109
110 /************************************************************************/
111
112 GType
113 modest_accounts_window_get_type (void)
114 {
115         static GType my_type = 0;
116         if (!my_type) {
117                 static const GTypeInfo my_info = {
118                         sizeof(ModestAccountsWindowClass),
119                         NULL,           /* base init */
120                         NULL,           /* base finalize */
121                         (GClassInitFunc) modest_accounts_window_class_init,
122                         NULL,           /* class finalize */
123                         NULL,           /* class data */
124                         sizeof(ModestAccountsWindow),
125                         1,              /* n_preallocs */
126                         (GInstanceInitFunc) modest_accounts_window_instance_init,
127                         NULL
128                 };
129                 my_type = g_type_register_static (MODEST_TYPE_HILDON2_WINDOW,
130                                                   "ModestAccountsWindow",
131                                                   &my_info, 0);
132         }
133         return my_type;
134 }
135
136 static void
137 modest_accounts_window_class_init (ModestAccountsWindowClass *klass)
138 {
139         GObjectClass *gobject_class;
140         gobject_class = (GObjectClass*) klass;
141         ModestWindowClass *modest_window_class = (ModestWindowClass *) klass;
142
143         parent_class            = g_type_class_peek_parent (klass);
144         gobject_class->finalize = modest_accounts_window_finalize;
145
146         g_type_class_add_private (gobject_class, sizeof(ModestAccountsWindowPrivate));
147         
148         modest_window_class->disconnect_signals_func = modest_accounts_window_disconnect_signals;
149 }
150
151 static void
152 modest_accounts_window_instance_init (ModestAccountsWindow *obj)
153 {
154         ModestAccountsWindowPrivate *priv;
155
156         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(obj);
157
158         priv->sighandlers = NULL;
159         
160         priv->account_view = NULL;
161         priv->progress_hint = FALSE;
162         
163         modest_window_mgr_register_help_id (modest_runtime_get_window_mgr(),
164                                             GTK_WINDOW(obj),
165                                             "applications_email_accountsview");
166 }
167
168 static void
169 modest_accounts_window_finalize (GObject *obj)
170 {
171         ModestAccountsWindowPrivate *priv;
172
173         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(obj);
174
175         /* Sanity check: shouldn't be needed, the window mgr should
176            call this function before */
177         modest_accounts_window_disconnect_signals (MODEST_WINDOW (obj));        
178
179         G_OBJECT_CLASS(parent_class)->finalize (obj);
180 }
181
182 static void
183 modest_accounts_window_disconnect_signals (ModestWindow *self)
184 {       
185         ModestAccountsWindowPrivate *priv;      
186         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
187
188         if (g_signal_handler_is_connected (G_OBJECT (modest_runtime_get_mail_operation_queue ()), 
189                                            priv->queue_change_handler))
190                 g_signal_handler_disconnect (G_OBJECT (modest_runtime_get_mail_operation_queue ()), 
191                                              priv->queue_change_handler);
192
193         modest_signal_mgr_disconnect_all_and_destroy (priv->sighandlers);
194         priv->sighandlers = NULL;       
195 }
196
197 static void
198 connect_signals (ModestAccountsWindow *self)
199 {
200         ModestAccountsWindowPrivate *priv;
201         GtkTreeModel *model;
202
203         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
204
205         /* accounts view */
206         priv->sighandlers = 
207                 modest_signal_mgr_connect (priv->sighandlers,
208                                            G_OBJECT (priv->account_view), "row-activated", 
209                                            G_CALLBACK (on_account_activated), self);
210
211         priv->sighandlers = 
212                 modest_signal_mgr_connect (priv->sighandlers,
213                                            G_OBJECT (modest_runtime_get_window_mgr ()),
214                                            "progress-list-changed",
215                                            G_CALLBACK (on_progress_list_changed), self);
216
217         model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->account_view));
218
219         priv->sighandlers =
220                 modest_signal_mgr_connect (priv->sighandlers,
221                                            G_OBJECT (model),
222                                            "row-inserted",
223                                            G_CALLBACK (on_row_inserted), self);
224
225         priv->sighandlers =
226                 modest_signal_mgr_connect (priv->sighandlers,
227                                            G_OBJECT (model),
228                                            "row-deleted",
229                                            G_CALLBACK (on_row_deleted), self);
230
231         priv->sighandlers = 
232                 modest_signal_mgr_connect (priv->sighandlers,
233                                            G_OBJECT (priv->new_message_button),
234                                            "clicked",
235                                            G_CALLBACK (modest_ui_actions_on_new_msg), self);
236
237         /* we don't register this in sighandlers, as it should be run
238          * after disconnecting all signals, in destroy stage */
239 }
240
241 static ModestWindow *
242 modest_accounts_window_new_real (void)
243 {
244         ModestAccountsWindow *self = NULL;
245         ModestAccountsWindowPrivate *priv = NULL;
246         GdkPixbuf *window_icon;
247         GdkPixbuf *new_message_pixbuf;
248         guint accel_key;
249         GdkModifierType accel_mods;
250         GtkAccelGroup *accel_group;
251         GtkWidget *no_accounts_label;
252         GtkWidget *empty_view_new_message_button;
253         GtkWidget *box_alignment;
254
255         self  = MODEST_ACCOUNTS_WINDOW(g_object_new(MODEST_TYPE_ACCOUNTS_WINDOW, NULL));
256         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
257
258         new_message_pixbuf = modest_platform_get_icon ("general_add", MODEST_ICON_SIZE_BIG);
259
260         box_alignment = gtk_alignment_new (0, 0, 1.0, 1.0);
261         gtk_alignment_set_padding (GTK_ALIGNMENT (box_alignment), 
262                                    0, 0,
263                                    HILDON_MARGIN_DOUBLE, HILDON_MARGIN_DOUBLE);
264         priv->box = gtk_vbox_new (FALSE, 0);
265
266         no_accounts_label = gtk_label_new (_("mcen_ia_noaccounts"));
267         
268         gtk_misc_set_alignment (GTK_MISC (no_accounts_label), 0.5, 0.5);
269         hildon_helper_set_logical_font (no_accounts_label, "LargeSystemFont");
270
271         empty_view_new_message_button = hildon_button_new (MODEST_EDITABLE_SIZE, HILDON_BUTTON_ARRANGEMENT_HORIZONTAL);
272         hildon_button_set_title (HILDON_BUTTON (empty_view_new_message_button), _("mcen_ti_new_message"));
273         hildon_button_set_image (HILDON_BUTTON (empty_view_new_message_button), gtk_image_new_from_pixbuf (new_message_pixbuf));
274
275
276         priv->no_accounts_container = gtk_vbox_new (FALSE, 0);
277         gtk_box_pack_start (GTK_BOX (priv->no_accounts_container), empty_view_new_message_button, FALSE, FALSE, 0);
278         gtk_widget_show_all (empty_view_new_message_button);
279         gtk_box_pack_end (GTK_BOX (priv->no_accounts_container), no_accounts_label, TRUE, TRUE, 0);
280         gtk_widget_show (no_accounts_label);
281         gtk_box_pack_start (GTK_BOX (priv->box), priv->no_accounts_container, TRUE, TRUE, 0);
282
283         g_signal_connect (G_OBJECT (empty_view_new_message_button),
284                           "clicked",
285                           G_CALLBACK (modest_ui_actions_on_new_msg), self);
286         
287         priv->pannable = hildon_pannable_area_new ();
288
289         priv->queue_change_handler =
290                 g_signal_connect (G_OBJECT (modest_runtime_get_mail_operation_queue ()),
291                                   "queue-changed",
292                                   G_CALLBACK (on_queue_changed),
293                                   self);
294
295         priv->new_message_button = hildon_button_new (MODEST_EDITABLE_SIZE,
296                                                       HILDON_BUTTON_ARRANGEMENT_HORIZONTAL);
297
298         hildon_button_set_title (HILDON_BUTTON (priv->new_message_button), _("mcen_ti_new_message"));
299         hildon_button_set_image (HILDON_BUTTON (priv->new_message_button), gtk_image_new_from_pixbuf (new_message_pixbuf));
300
301         gtk_widget_show_all (priv->new_message_button);
302
303         g_object_unref (new_message_pixbuf);
304         setup_menu (self);
305
306         gtk_box_pack_start (GTK_BOX (priv->box), priv->pannable, TRUE, TRUE, 0);
307         gtk_container_add (GTK_CONTAINER (box_alignment), priv->box);
308         gtk_container_add (GTK_CONTAINER (self), box_alignment);
309
310         gtk_widget_show (priv->pannable);
311         gtk_widget_show (priv->box);
312         gtk_widget_show (box_alignment);
313
314         /* Get device name */
315         modest_maemo_utils_get_device_name ();
316
317         /* Set window icon */
318         window_icon = modest_platform_get_icon (MODEST_APP_ICON, MODEST_ICON_SIZE_BIG);
319         if (window_icon) {
320                 gtk_window_set_icon (GTK_WINDOW (self), window_icon);
321                 g_object_unref (window_icon);
322         }
323
324         accel_group = gtk_accel_group_new ();
325         gtk_accelerator_parse ("<Control>n", &accel_key, &accel_mods);
326         gtk_widget_add_accelerator (priv->new_message_button, "clicked", accel_group,
327                                     accel_key, accel_mods, 0);
328         gtk_window_add_accel_group (GTK_WINDOW (self), accel_group);
329
330         return MODEST_WINDOW(self);
331 }
332
333 ModestWindow *
334 modest_accounts_window_new (void)
335 {
336         GtkWidget *action_area_box;
337         ModestWindow *self;
338         ModestAccountsWindowPrivate *priv = NULL;
339         HildonProgram *app;
340
341         if (pre_created_accounts_window) {
342                 self = MODEST_WINDOW (pre_created_accounts_window);
343                 pre_created_accounts_window = NULL;
344         } else {
345                 self = modest_accounts_window_new_real ();
346         }
347         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
348         priv->account_view  = GTK_WIDGET (modest_account_view_new (modest_runtime_get_account_mgr ()));
349
350         action_area_box = hildon_tree_view_get_action_area_box (GTK_TREE_VIEW (priv->account_view));
351         gtk_box_pack_start (GTK_BOX (action_area_box), priv->new_message_button, TRUE, TRUE, 0);
352         hildon_tree_view_set_action_area_visible (GTK_TREE_VIEW (priv->account_view), TRUE);
353         gtk_container_add (GTK_CONTAINER (priv->pannable), priv->account_view);
354
355         connect_signals (MODEST_ACCOUNTS_WINDOW (self));
356
357         /* Load previous osso state, for instance if we are being restored from 
358          * hibernation:  */
359         modest_osso_load_state ();
360
361         app = hildon_program_get_instance ();
362         hildon_program_add_window (app, HILDON_WINDOW (self));
363         
364         /* Dont't restore settings here, 
365          * because it requires a gtk_widget_show(), 
366          * and we don't want to do that until later,
367          * so that the UI is not visible for non-menu D-Bus activation.
368          */
369
370         g_signal_connect (G_OBJECT (self), "map-event",
371                           G_CALLBACK (_modest_accounts_window_map_event),
372                           G_OBJECT (self));
373         update_progress_hint (MODEST_ACCOUNTS_WINDOW (self));
374
375         row_count_changed (MODEST_ACCOUNTS_WINDOW (self));
376
377         return self;
378 }
379
380
381 ModestAccountView *
382 modest_accounts_window_get_account_view (ModestAccountsWindow *self)
383 {
384         ModestAccountsWindowPrivate *priv = NULL;
385
386         g_return_val_if_fail (MODEST_IS_ACCOUNTS_WINDOW(self), FALSE);
387
388         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
389         
390         return MODEST_ACCOUNT_VIEW (priv->account_view);
391 }
392
393 static void 
394 setup_menu (ModestAccountsWindow *self)
395 {
396         g_return_if_fail (MODEST_IS_ACCOUNTS_WINDOW(self));
397
398         /* Settings menu buttons */
399         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_new_account"), NULL, 
400                                            APP_MENU_CALLBACK (modest_ui_actions_on_new_account), 
401                                            NULL);
402         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_edit_accounts"), NULL,
403                                            APP_MENU_CALLBACK (modest_ui_actions_on_accounts), 
404                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_edit_accounts));
405         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_globalsmtpservers"), NULL,
406                                            APP_MENU_CALLBACK (modest_ui_actions_on_smtp_servers),
407                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_tools_smtp_servers));
408         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_sendandreceive"), NULL,
409                                            APP_MENU_CALLBACK (modest_ui_actions_on_send_receive),
410                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_send_receive_all));
411         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_outbox_cancelsend"), NULL,
412                                            APP_MENU_CALLBACK (modest_ui_actions_cancel_send),
413                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_cancel_sending_all));
414         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_options"), NULL,
415                                            APP_MENU_CALLBACK (modest_ui_actions_on_settings), 
416                                            NULL);
417 }
418
419
420 static void
421 on_account_activated (GtkTreeView *account_view,
422                       GtkTreePath *path,
423                       GtkTreeViewColumn *column,
424                       ModestAccountsWindow *self)
425 {
426         ModestAccountsWindowPrivate *priv;
427         gchar* account_name; 
428         GtkWidget *new_window;
429         gboolean registered;
430         ModestProtocolType store_protocol;
431         gboolean mailboxes_protocol;
432
433         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
434
435         account_name = modest_account_view_get_path_account (MODEST_ACCOUNT_VIEW (priv->account_view), path);
436         if (!account_name)
437                 return;
438
439         /* If it's a multimailbox container, we have to show the mailboxes window */
440         store_protocol = modest_account_mgr_get_store_protocol (modest_runtime_get_account_mgr (), 
441                                                                 account_name);
442         mailboxes_protocol = 
443                 modest_protocol_registry_protocol_type_has_tag (modest_runtime_get_protocol_registry (),
444                                                                 store_protocol,
445                                                                 MODEST_PROTOCOL_REGISTRY_MULTI_MAILBOX_PROVIDER_PROTOCOLS);
446         if (mailboxes_protocol) {
447                 new_window = GTK_WIDGET (modest_mailboxes_window_new (account_name));
448         } else {
449
450                 new_window = GTK_WIDGET (modest_folder_window_new (NULL));
451         }
452
453         registered = modest_window_mgr_register_window (modest_runtime_get_window_mgr (), 
454                                                         MODEST_WINDOW (new_window),
455                                                         MODEST_WINDOW (self));
456
457         if (!registered) {
458                 gtk_widget_destroy (new_window);
459                 new_window = NULL;
460         } else {
461                 if (!mailboxes_protocol) {
462                         modest_folder_window_set_account (MODEST_FOLDER_WINDOW (new_window), account_name);
463                 }
464                 gtk_widget_show (new_window);
465         }
466         g_free (account_name);
467 }
468
469 static gboolean
470 _modest_accounts_window_map_event (GtkWidget *widget,
471                                    GdkEvent *event,
472                                    gpointer userdata)
473 {
474         ModestAccountsWindow *self = (ModestAccountsWindow *) userdata;
475         ModestAccountsWindowPrivate *priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
476
477         if (priv->progress_hint) {
478                 hildon_gtk_window_set_progress_indicator (GTK_WINDOW (self), TRUE);
479         }
480
481         return FALSE;
482 }
483
484 static gboolean
485 has_active_operations (ModestAccountsWindow *self)
486 {
487         GSList *operations = NULL, *node;
488         ModestMailOperationQueue *queue;
489         gboolean has_active = FALSE;
490
491         queue = modest_runtime_get_mail_operation_queue ();
492         operations = modest_mail_operation_queue_get_by_source (queue, G_OBJECT (self));
493
494         for (node = operations; node != NULL; node = g_slist_next (node)) {
495                 if (!modest_mail_operation_is_finished (MODEST_MAIL_OPERATION (node->data))) {
496                         has_active = TRUE;
497                         break;
498                 }
499         }
500
501         if (operations) {
502                 g_slist_foreach (operations, (GFunc) g_object_unref, NULL);
503                 g_slist_free (operations);
504         }
505
506         return has_active;
507 }
508
509 static void
510 update_progress_hint (ModestAccountsWindow *self)
511 {
512         ModestAccountsWindowPrivate *priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
513
514         if (has_active_operations (self)) {
515                 priv->progress_hint = TRUE;
516         } else {
517                 priv->progress_hint = FALSE;
518         }
519
520         if (!priv->progress_hint) {
521                 priv->progress_hint = modest_window_mgr_has_progress_operation (modest_runtime_get_window_mgr ());
522         }
523         
524         if (GTK_WIDGET_VISIBLE (self)) {
525                 hildon_gtk_window_set_progress_indicator (GTK_WINDOW (self), priv->progress_hint?1:0);
526         }
527 }
528
529 static void
530 on_progress_list_changed (ModestWindowMgr *mgr,
531                           ModestAccountsWindow *self)
532 {
533         update_progress_hint (self);
534 }
535
536 static void
537 on_row_inserted (GtkTreeModel *tree_model,
538                  GtkTreePath  *path,
539                  GtkTreeIter  *iter,
540                  gpointer      user_data)
541 {
542         ModestAccountsWindow *self;
543
544         self = (ModestAccountsWindow *) user_data;
545
546         row_count_changed (self);
547 }
548
549 static void
550 on_row_deleted (GtkTreeModel *tree_model,
551                 GtkTreePath  *path,
552                 gpointer      user_data)
553 {
554         ModestAccountsWindow *self;
555
556         self = (ModestAccountsWindow *) user_data;
557
558         row_count_changed (self);
559 }
560
561 static void 
562 row_count_changed (ModestAccountsWindow *self)
563 {
564         ModestAccountsWindowPrivate *priv;
565         GtkTreeModel *model;
566         gint count;
567
568         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
569         model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->account_view));
570
571         count = gtk_tree_model_iter_n_children (model, NULL);
572
573         if (count == 0) {
574                 gtk_widget_hide (priv->account_view);
575                 gtk_widget_show (priv->no_accounts_container);
576                 g_debug ("%s: hiding accounts view", __FUNCTION__);
577         } else {
578                 gtk_widget_hide (priv->no_accounts_container);
579                 gtk_widget_show (priv->account_view);
580                 g_debug ("%s: showing accounts view", __FUNCTION__);
581         }
582         gtk_container_child_set (GTK_CONTAINER(priv->box), priv->pannable, 
583                                  "expand", count > 0,
584                                  "fill", count > 0,
585                                  NULL);
586 }
587
588 static void 
589 on_mail_operation_started (ModestMailOperation *mail_op,
590                            gpointer user_data)
591 {
592         ModestAccountsWindow *self;
593         ModestMailOperationTypeOperation op_type;
594         GObject *source = NULL;
595
596         self = MODEST_ACCOUNTS_WINDOW (user_data);
597         op_type = modest_mail_operation_get_type_operation (mail_op);
598         source = modest_mail_operation_get_source(mail_op);
599         if (G_OBJECT (self) == source) {
600                 update_progress_hint (self);
601         }
602         g_object_unref (source);
603 }
604
605 static void 
606 on_mail_operation_finished (ModestMailOperation *mail_op,
607                             gpointer user_data)
608 {
609         ModestAccountsWindow *self;
610
611         self = MODEST_ACCOUNTS_WINDOW (user_data);
612
613         /* Don't disable the progress hint if there are more pending
614            operations from this window */
615         update_progress_hint (self);
616
617         modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (self));
618 }
619
620 static void
621 on_queue_changed (ModestMailOperationQueue *queue,
622                   ModestMailOperation *mail_op,
623                   ModestMailOperationQueueNotification type,
624                   ModestAccountsWindow *self)
625 {
626         ModestAccountsWindowPrivate *priv;
627
628         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
629
630         /* If this operations was created by another window, do nothing */
631         if (!modest_mail_operation_is_mine (mail_op, G_OBJECT(self))) 
632                 return;
633
634         if (type == MODEST_MAIL_OPERATION_QUEUE_OPERATION_ADDED) {
635                 priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
636                                                                G_OBJECT (mail_op),
637                                                                "operation-started",
638                                                                G_CALLBACK (on_mail_operation_started),
639                                                                self);
640                 priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
641                                                                G_OBJECT (mail_op),
642                                                                "operation-finished",
643                                                                G_CALLBACK (on_mail_operation_finished),
644                                                                self);
645         } else if (type == MODEST_MAIL_OPERATION_QUEUE_OPERATION_REMOVED) {
646                 priv->sighandlers = modest_signal_mgr_disconnect (priv->sighandlers,
647                                                                   G_OBJECT (mail_op),
648                                                                   "operation-started");
649                 priv->sighandlers = modest_signal_mgr_disconnect (priv->sighandlers,
650                                                                   G_OBJECT (mail_op),
651                                                                   "operation-finished");
652         }
653 }
654
655 void 
656 modest_accounts_window_pre_create (void)
657 {
658         static gboolean pre_created = FALSE;
659         if (!pre_created) {
660                 pre_created = TRUE;
661                 pre_created_accounts_window = GTK_WIDGET (modest_accounts_window_new_real ());
662         }
663 }