Remove not used size_limit item in settings dialog
[modest] / src / widgets / modest-mailboxes-window.c
1 /* Copyright (c) 2009, 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-mailboxes-window.h>
31 #include <modest-scrollable.h>
32 #include <modest-window-mgr.h>
33 #include <modest-signal-mgr.h>
34 #include <modest-runtime.h>
35 #include <modest-platform.h>
36 #include <modest-icon-names.h>
37 #include <modest-ui-constants.h>
38 #include <modest-account-mgr.h>
39 #include <modest-account-mgr-helpers.h>
40 #include <modest-defs.h>
41 #include <modest-ui-actions.h>
42 #include <modest-window.h>
43 #include <tny-account-store-view.h>
44 #include <modest-header-window.h>
45 #include <modest-ui-dimming-rules.h>
46 #include <modest-ui-dimming-manager.h>
47 #include <modest-window-priv.h>
48 #include "modest-text-utils.h"
49 #include "modest-tny-account.h"
50 #include <modest-folder-window.h>
51 #ifdef MODEST_TOOLKIT_HILDON2
52 #include <hildon/hildon.h>
53 #endif
54 #ifdef MODEST_PLATFORM_MAEMO
55 #include <modest-maemo-utils.h>
56 #endif
57 #include <gdk/gdkkeysyms.h>
58
59 /* 'private'/'protected' functions */
60 static void modest_mailboxes_window_class_init  (ModestMailboxesWindowClass *klass);
61 static void modest_mailboxes_window_init        (ModestMailboxesWindow *obj);
62 static void modest_mailboxes_window_finalize    (GObject *obj);
63
64 static void connect_signals (ModestMailboxesWindow *self);
65 static void modest_mailboxes_window_disconnect_signals (ModestWindow *self);
66
67 static void on_mailbox_activated (ModestFolderView *mailboxes_view,
68                                   TnyFolder *folder,
69                                   gpointer userdata);
70 static void on_progress_list_changed (ModestWindowMgr *mgr,
71                                       ModestMailboxesWindow *self);
72 static gboolean on_map_event (GtkWidget *widget,
73                               GdkEvent *event,
74                               gpointer userdata);
75 static void update_progress_hint (ModestMailboxesWindow *self);
76 static void on_queue_changed    (ModestMailOperationQueue *queue,
77                                  ModestMailOperation *mail_op,
78                                  ModestMailOperationQueueNotification type,
79                                  ModestMailboxesWindow *self);
80 static void on_activity_changed (ModestFolderView *view,
81                                  gboolean activity,
82                                  ModestMailboxesWindow *folder_window);
83 #ifdef MODEST_TOOLKIT_HILDON2
84 static gboolean on_key_press(GtkWidget *widget,
85                              GdkEventKey *event,
86                              gpointer user_data);
87 #endif
88
89 typedef struct _ModestMailboxesWindowPrivate ModestMailboxesWindowPrivate;
90 struct _ModestMailboxesWindowPrivate {
91
92         GtkWidget *folder_view;
93         GtkWidget *top_vbox;
94         GtkWidget *new_message_button;
95
96         /* signals */
97         GSList *sighandlers;
98
99         gchar *current_store_account;
100         gboolean progress_hint;
101         guint queue_change_handler;
102 };
103 #define MODEST_MAILBOXES_WINDOW_GET_PRIVATE(o)  (G_TYPE_INSTANCE_GET_PRIVATE((o), \
104                                                                           MODEST_TYPE_MAILBOXES_WINDOW, \
105                                                                           ModestMailboxesWindowPrivate))
106
107 /* globals */
108 static GtkWindowClass *parent_class = NULL;
109
110 /************************************************************************/
111
112 GType
113 modest_mailboxes_window_get_type (void)
114 {
115         static GType my_type = 0;
116         if (!my_type) {
117                 static const GTypeInfo my_info = {
118                         sizeof(ModestMailboxesWindowClass),
119                         NULL,           /* base init */
120                         NULL,           /* base finalize */
121                         (GClassInitFunc) modest_mailboxes_window_class_init,
122                         NULL,           /* class finalize */
123                         NULL,           /* class data */
124                         sizeof(ModestMailboxesWindow),
125                         1,              /* n_preallocs */
126                         (GInstanceInitFunc) modest_mailboxes_window_init,
127                         NULL
128                 };
129                 my_type = g_type_register_static (
130 #ifdef MODEST_TOOLKIT_HILDON2
131                                                   MODEST_TYPE_HILDON2_WINDOW,
132 #else
133                                                   MODEST_TYPE_SHELL_WINDOW,
134 #endif
135                                                   "ModestMailboxesWindow",
136                                                   &my_info, 0);
137         }
138         return my_type;
139 }
140
141 static void
142 modest_mailboxes_window_class_init (ModestMailboxesWindowClass *klass)
143 {
144         GObjectClass *gobject_class;
145         gobject_class = (GObjectClass*) klass;
146         ModestWindowClass *modest_window_class = (ModestWindowClass *) klass;
147
148         parent_class            = g_type_class_peek_parent (klass);
149         gobject_class->finalize = modest_mailboxes_window_finalize;
150
151         g_type_class_add_private (gobject_class, sizeof(ModestMailboxesWindowPrivate));
152         
153         modest_window_class->disconnect_signals_func = modest_mailboxes_window_disconnect_signals;
154 }
155
156 static void
157 modest_mailboxes_window_init (ModestMailboxesWindow *obj)
158 {
159         ModestMailboxesWindowPrivate *priv;
160
161         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE(obj);
162
163         priv->sighandlers = NULL;
164         
165         priv->folder_view = NULL;
166
167         priv->top_vbox = NULL;
168
169         priv->current_store_account = NULL;
170         priv->progress_hint = FALSE;
171         priv->queue_change_handler = 0;
172 }
173
174 static void
175 modest_mailboxes_window_finalize (GObject *obj)
176 {
177         ModestMailboxesWindowPrivate *priv;
178
179         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE(obj);
180
181         if (priv->current_store_account) {
182                 g_free (priv->current_store_account);
183                 priv->current_store_account = NULL;
184         }
185
186         /* Sanity check: shouldn't be needed, the window mgr should
187            call this function before */
188         modest_mailboxes_window_disconnect_signals (MODEST_WINDOW (obj));       
189
190         G_OBJECT_CLASS(parent_class)->finalize (obj);
191 }
192
193 static void
194 modest_mailboxes_window_disconnect_signals (ModestWindow *self)
195 {
196         ModestMailboxesWindowPrivate *priv;
197         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE(self);
198
199         if (g_signal_handler_is_connected (G_OBJECT (modest_runtime_get_mail_operation_queue ()), 
200                                            priv->queue_change_handler))
201                 g_signal_handler_disconnect (G_OBJECT (modest_runtime_get_mail_operation_queue ()), 
202                                              priv->queue_change_handler);
203
204         modest_signal_mgr_disconnect_all_and_destroy (priv->sighandlers);
205         priv->sighandlers = NULL;
206 }
207
208 static void
209 on_visible_account_changed (ModestFolderView *mailboxes_view,
210                             const gchar *account_id,
211                             gpointer user_data)
212 {
213         if (account_id) {
214                 TnyAccount *acc = 
215                         modest_tny_account_store_get_tny_account_by (modest_runtime_get_account_store(),
216                                                                      MODEST_TNY_ACCOUNT_STORE_QUERY_ID,
217                                                                      account_id);
218                 if (acc) {
219                         const gchar *name;
220                         gchar *title = NULL;
221
222                         name = modest_tny_account_get_parent_modest_account_name_for_server_account (acc);
223                         title = modest_account_mgr_get_display_name (modest_runtime_get_account_mgr(),
224                                                                      name);
225                         if (title) {
226                                 modest_window_set_title (MODEST_WINDOW (user_data), title);
227                                 g_free (title);
228                         } else {
229                                 modest_window_set_title (MODEST_WINDOW (user_data), _("mcen_ap_name"));
230                         }
231                         g_object_unref (acc);
232                 }
233         } else {
234                 modest_window_set_title (MODEST_WINDOW (user_data), _("mcen_ap_name"));
235         }
236 }
237
238 static void
239 connect_signals (ModestMailboxesWindow *self)
240 {
241         ModestMailboxesWindowPrivate *priv;
242
243         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE(self);
244
245         /* mailboxes view */
246         priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers, 
247                                                        G_OBJECT (priv->folder_view), "folder-activated", 
248                                                        G_CALLBACK (on_mailbox_activated), self);
249
250         priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
251                                                        G_OBJECT (modest_runtime_get_window_mgr ()),
252                                                        "progress-list-changed",
253                                                        G_CALLBACK (on_progress_list_changed), self);
254
255         priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
256                                                        G_OBJECT (priv->folder_view),
257                                                        "activity-changed",
258                                                        G_CALLBACK (on_activity_changed), self);
259
260         priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
261                                                        G_OBJECT (priv->folder_view),
262                                                        "visible-account-changed",
263                                                        G_CALLBACK (on_visible_account_changed), self);
264
265         priv->sighandlers = 
266                 modest_signal_mgr_connect (priv->sighandlers,
267                                            G_OBJECT (priv->new_message_button),
268                                            "clicked",
269                                            G_CALLBACK (modest_ui_actions_on_new_msg), self);
270
271 #ifdef MODEST_TOOLKIT_HILDON2
272         /* connect window keys -> priv->folder_view scroll here? */
273         g_signal_connect(G_OBJECT(self), "key-press-event",
274                         G_CALLBACK(on_key_press), self);
275 #endif
276 }
277
278 ModestWindow *
279 modest_mailboxes_window_new (const gchar *account)
280 {
281         ModestMailboxesWindow *self = NULL;     
282         ModestMailboxesWindowPrivate *priv = NULL;
283         GdkPixbuf *window_icon;
284         GtkWidget *scrollable;
285         GtkWidget *top_alignment;
286         
287         self  = MODEST_MAILBOXES_WINDOW(g_object_new(MODEST_TYPE_MAILBOXES_WINDOW, NULL));
288         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE(self);
289
290         scrollable = modest_toolkit_factory_create_scrollable (modest_runtime_get_toolkit_factory ());
291         priv->queue_change_handler =
292                 g_signal_connect (G_OBJECT (modest_runtime_get_mail_operation_queue ()),
293                                   "queue-changed",
294                                   G_CALLBACK (on_queue_changed),
295                                   self);
296
297         priv->folder_view  = modest_platform_create_folder_view (NULL);
298         modest_folder_view_set_cell_style (MODEST_FOLDER_VIEW (priv->folder_view),
299                                            MODEST_FOLDER_VIEW_CELL_STYLE_COMPACT);
300         modest_folder_view_set_filter (MODEST_FOLDER_VIEW (priv->folder_view), 
301                                        MODEST_FOLDER_VIEW_FILTER_HIDE_ACCOUNTS);
302
303 #ifdef MODEST_TOOLKIT_HILDON2
304         GtkWidget *action_area_box;
305         GdkPixbuf *new_message_pixbuf;
306         action_area_box = hildon_tree_view_get_action_area_box (GTK_TREE_VIEW (priv->folder_view));
307         priv->new_message_button = hildon_button_new (0, HILDON_BUTTON_ARRANGEMENT_HORIZONTAL);
308
309         hildon_button_set_title (HILDON_BUTTON (priv->new_message_button), _("mcen_ti_new_message"));
310         new_message_pixbuf = modest_platform_get_icon ("general_add", MODEST_ICON_SIZE_BIG);
311         hildon_button_set_image (HILDON_BUTTON (priv->new_message_button), gtk_image_new_from_pixbuf (new_message_pixbuf));
312         g_object_unref (new_message_pixbuf);
313
314         gtk_box_pack_start (GTK_BOX (action_area_box), priv->new_message_button, TRUE, TRUE, 0);
315         gtk_widget_show_all (priv->new_message_button);
316         hildon_tree_view_set_action_area_visible (GTK_TREE_VIEW (priv->folder_view), TRUE);
317 #endif
318         
319         /* Set account store */
320         tny_account_store_view_set_account_store (TNY_ACCOUNT_STORE_VIEW (priv->folder_view),
321                                                   TNY_ACCOUNT_STORE (modest_runtime_get_account_store ()));
322
323         priv->top_vbox = gtk_vbox_new (0, FALSE);
324         top_alignment = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
325         gtk_alignment_set_padding (GTK_ALIGNMENT (top_alignment), 
326                                    0, 0, 
327                                    MODEST_MARGIN_DOUBLE, MODEST_MARGIN_DOUBLE);
328
329         gtk_container_add (GTK_CONTAINER (scrollable), priv->folder_view);
330         gtk_box_pack_end (GTK_BOX (priv->top_vbox), scrollable, TRUE, TRUE, 0);
331         gtk_container_add (GTK_CONTAINER (top_alignment), priv->top_vbox);
332         gtk_container_add (GTK_CONTAINER (self), top_alignment);
333
334         gtk_widget_show (priv->folder_view);
335         gtk_widget_show (scrollable);
336         gtk_widget_show (top_alignment);
337         gtk_widget_show (priv->top_vbox);
338
339         connect_signals (MODEST_MAILBOXES_WINDOW (self));
340
341         /* Get device name */
342 #ifdef MODEST_PLATFORM_MAEMO
343         modest_maemo_utils_get_device_name ();
344 #endif
345
346 #ifdef MODEST_TOOLKIT_HILDON2
347         HildonProgram *app;
348
349         app = hildon_program_get_instance ();
350         hildon_program_add_window (app, HILDON_WINDOW (self));
351 #endif
352         
353         /* Set window icon */
354         window_icon = modest_platform_get_icon (MODEST_APP_ICON, MODEST_ICON_SIZE_BIG);
355         if (window_icon) {
356                 gtk_window_set_icon (GTK_WINDOW (self), window_icon);
357                 g_object_unref (window_icon);
358         }
359
360         /* Dont't restore settings here, 
361          * because it requires a gtk_widget_show(), 
362          * and we don't want to do that until later,
363          * so that the UI is not visible for non-menu D-Bus activation.
364          */
365
366         g_signal_connect (G_OBJECT (self), "map-event",
367                           G_CALLBACK (on_map_event),
368                           G_OBJECT (self));
369         update_progress_hint (self);
370
371 #ifdef MODEST_TOOLKIT_HILDON2
372         guint accel_key;
373         GdkModifierType accel_mods;
374         GtkAccelGroup *accel_group;
375
376         accel_group = gtk_accel_group_new ();
377         gtk_accelerator_parse ("<Control>n", &accel_key, &accel_mods);
378         gtk_widget_add_accelerator (priv->new_message_button, "clicked", accel_group,
379                                     accel_key, accel_mods, 0);
380         gtk_window_add_accel_group (GTK_WINDOW (self), accel_group);
381 #endif
382
383         modest_folder_view_set_filter (MODEST_FOLDER_VIEW (priv->folder_view),
384                                        MODEST_FOLDER_VIEW_FILTER_SHOW_ONLY_MAILBOXES);
385
386         modest_mailboxes_window_set_account (MODEST_MAILBOXES_WINDOW (self), account);
387
388         return MODEST_WINDOW(self);
389 }
390
391 ModestFolderView *
392 modest_mailboxes_window_get_folder_view (ModestMailboxesWindow *self)
393 {
394         ModestMailboxesWindowPrivate *priv = NULL;
395
396         g_return_val_if_fail (MODEST_IS_MAILBOXES_WINDOW(self), FALSE);
397
398         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE (self);
399         
400         return MODEST_FOLDER_VIEW (priv->folder_view);
401 }
402
403 void
404 modest_mailboxes_window_set_account (ModestMailboxesWindow *self,
405                                      const gchar *account_name)
406 {
407         ModestMailboxesWindowPrivate *priv = NULL;
408         ModestAccountMgr *mgr;
409         ModestAccountSettings *settings = NULL;
410         ModestServerAccountSettings *store_settings = NULL;
411
412         g_return_if_fail (MODEST_IS_MAILBOXES_WINDOW(self));
413
414         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE (self);
415
416         /* Get account data */
417         mgr = modest_runtime_get_account_mgr ();
418
419         settings = modest_account_mgr_load_account_settings (mgr, account_name);
420         if (!settings)
421                 goto free_refs;
422
423         store_settings = modest_account_settings_get_store_settings (settings);
424         if (!store_settings)
425                 goto free_refs;
426
427         if (priv->current_store_account != NULL)
428                 g_free (priv->current_store_account);
429         priv->current_store_account = g_strdup (modest_server_account_settings_get_account_name (store_settings));
430
431         modest_folder_view_set_account_id_of_visible_server_account
432                 (MODEST_FOLDER_VIEW (priv->folder_view),
433                  priv->current_store_account);
434
435         modest_window_set_active_account (MODEST_WINDOW (self), account_name);
436         update_progress_hint (self);
437
438 free_refs:
439         if (store_settings)
440                 g_object_unref (store_settings);
441         if (settings)
442                 g_object_unref (settings);
443
444 }
445
446 static void
447 on_mailbox_activated (ModestFolderView *mailboxes_view,
448                       TnyFolder *folder,
449                       gpointer userdata)
450 {
451         ModestMailboxesWindowPrivate *priv = NULL;
452         ModestMailboxesWindow *self = (ModestMailboxesWindow *) userdata;
453         GtkWidget *new_window;
454         gboolean registered;
455         const gchar *active_account;
456
457         g_return_if_fail (MODEST_IS_MAILBOXES_WINDOW(self));
458
459         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE (self);
460
461         if (!folder)
462                 return;
463
464         if (!TNY_IS_FOLDER (folder))
465                 return;
466
467         new_window = GTK_WIDGET (modest_folder_window_new (NULL));
468         registered = modest_window_mgr_register_window (modest_runtime_get_window_mgr (), 
469                                                         MODEST_WINDOW (new_window),
470                                                         MODEST_WINDOW (self));
471
472         if (!registered) {
473                 gtk_widget_destroy (new_window);
474                 new_window = NULL;
475         } else {
476                 const gchar *name;
477                 active_account = modest_window_get_active_account (MODEST_WINDOW (self));
478                 modest_folder_window_set_account (MODEST_FOLDER_WINDOW (new_window), active_account);
479                 name = tny_folder_get_name (folder);
480                 if (name) {
481                         modest_folder_window_set_mailbox (MODEST_FOLDER_WINDOW (new_window), name);
482                 }
483                 gtk_widget_show (new_window);
484         }
485         
486 }
487
488 static gboolean 
489 on_map_event (GtkWidget *widget,
490               GdkEvent *event,
491               gpointer userdata)
492 {
493         ModestMailboxesWindow *self = (ModestMailboxesWindow *) userdata;
494         ModestMailboxesWindowPrivate *priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE (self);
495
496         if (priv->progress_hint) {
497                 modest_window_show_progress (MODEST_WINDOW (self), TRUE);
498         }
499
500         return FALSE;
501 }
502
503 static gboolean
504 has_active_operations (ModestMailboxesWindow *self)
505 {
506         GSList *operations = NULL, *node;
507         ModestMailOperationQueue *queue;
508         gboolean has_active = FALSE;
509
510         queue = modest_runtime_get_mail_operation_queue ();
511         operations = modest_mail_operation_queue_get_by_source (queue, G_OBJECT (self));
512
513         for (node = operations; node != NULL; node = g_slist_next (node)) {
514                 if (!modest_mail_operation_is_finished (MODEST_MAIL_OPERATION (node->data))) {
515                         has_active = TRUE;
516                         break;
517                 }
518         }
519
520         if (operations) {
521                 g_slist_foreach (operations, (GFunc) g_object_unref, NULL);
522                 g_slist_free (operations);
523         }
524
525         return has_active;
526 }
527
528 static void
529 update_progress_hint (ModestMailboxesWindow *self)
530 {
531         ModestMailboxesWindowPrivate *priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE (self);
532
533         if (has_active_operations (self)) {
534                 priv->progress_hint = TRUE;
535         } else {
536                 priv->progress_hint = FALSE;
537         }
538
539         if (!priv->progress_hint && priv->current_store_account) {
540                 priv->progress_hint = modest_window_mgr_has_progress_operation_on_account (modest_runtime_get_window_mgr (),
541                                                                                            priv->current_store_account);
542         }
543
544         if (!priv->progress_hint) {
545                 priv->progress_hint = modest_folder_view_get_activity (MODEST_FOLDER_VIEW (priv->folder_view));
546         }
547
548         modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (self));
549
550         if (GTK_WIDGET_VISIBLE (self)) {
551                 modest_window_show_progress (MODEST_WINDOW (self), priv->progress_hint ? 1:0);
552         }
553 }
554
555 static void
556 on_progress_list_changed (ModestWindowMgr *mgr,
557                           ModestMailboxesWindow *self)
558 {
559         update_progress_hint (self);
560 }
561
562 static void 
563 on_mail_operation_started (ModestMailOperation *mail_op,
564                            gpointer user_data)
565 {
566         ModestMailboxesWindow *self;
567         ModestMailOperationTypeOperation op_type;
568         GObject *source = NULL;
569
570         self = MODEST_MAILBOXES_WINDOW (user_data);
571         op_type = modest_mail_operation_get_type_operation (mail_op);
572         source = modest_mail_operation_get_source(mail_op);
573         if (G_OBJECT (self) == source) {
574                 update_progress_hint (self);
575         }
576         g_object_unref (source);
577 }
578
579 static void 
580 on_mail_operation_finished (ModestMailOperation *mail_op,
581                             gpointer user_data)
582 {
583         ModestMailboxesWindow *self;
584
585         self = MODEST_MAILBOXES_WINDOW (user_data);
586
587         /* Don't disable the progress hint if there are more pending
588            operations from this window */
589         update_progress_hint (self);
590
591         modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (self));
592 }
593
594 static void
595 on_queue_changed (ModestMailOperationQueue *queue,
596                   ModestMailOperation *mail_op,
597                   ModestMailOperationQueueNotification type,
598                   ModestMailboxesWindow *self)
599 {
600         ModestMailboxesWindowPrivate *priv;
601
602         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE (self);
603
604         /* If this operations was created by another window, do nothing */
605         if (!modest_mail_operation_is_mine (mail_op, G_OBJECT(self))) 
606                 return;
607
608         if (type == MODEST_MAIL_OPERATION_QUEUE_OPERATION_ADDED) {
609                 priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
610                                                                G_OBJECT (mail_op),
611                                                                "operation-started",
612                                                                G_CALLBACK (on_mail_operation_started),
613                                                                self);
614                 priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
615                                                                G_OBJECT (mail_op),
616                                                                "operation-finished",
617                                                                G_CALLBACK (on_mail_operation_finished),
618                                                                self);
619         } else if (type == MODEST_MAIL_OPERATION_QUEUE_OPERATION_REMOVED) {
620                 priv->sighandlers = modest_signal_mgr_disconnect (priv->sighandlers,
621                                                                   G_OBJECT (mail_op),
622                                                                   "operation-started");
623                 priv->sighandlers = modest_signal_mgr_disconnect (priv->sighandlers,
624                                                                   G_OBJECT (mail_op),
625                                                                   "operation-finished");
626         }
627 }
628
629 static void
630 on_activity_changed (ModestFolderView *view,
631                      gboolean activity,
632                      ModestMailboxesWindow *self)
633 {
634         g_return_if_fail (MODEST_IS_MAILBOXES_WINDOW (self));
635
636         update_progress_hint (self);
637 }
638
639 #ifdef MODEST_TOOLKIT_HILDON2
640 static gboolean
641 on_key_press(GtkWidget *widget, GdkEventKey *event, gpointer user_data)
642 {
643         ModestMailboxesWindowPrivate *priv;
644         ModestScrollable *scrollable;
645
646         if (event->type == GDK_KEY_RELEASE)
647                 return FALSE;
648
649         priv = MODEST_MAILBOXES_WINDOW_GET_PRIVATE(user_data);
650
651         scrollable = MODEST_SCROLLABLE (gtk_widget_get_parent (priv->folder_view));
652
653         switch (event->keyval) {
654
655         case GDK_Up:
656                 modest_scrollable_scroll (scrollable, 0, -1);
657                 break;
658
659         case GDK_Down:
660                 modest_scrollable_scroll (scrollable, 0, 1);
661                 break;
662         }
663
664         return FALSE;
665 }
666 #endif