Add progress tracking in window manager and accounts window.
[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 <modest-ui-actions.h>
36 #include <modest-window-mgr.h>
37 #include <modest-signal-mgr.h>
38 #include <modest-runtime.h>
39 #include <modest-platform.h>
40 #include <hildon/hildon-program.h>
41 #include <modest-maemo-utils.h>
42 #include <modest-icon-names.h>
43 #include <modest-defs.h>
44 #include <modest-folder-window.h>
45 #include <modest-ui-dimming-rules.h>
46 #include <modest-ui-dimming-manager.h>
47 #include <modest-window-priv.h>
48
49
50 /* 'private'/'protected' functions */
51 static void modest_accounts_window_class_init  (ModestAccountsWindowClass *klass);
52 static void modest_accounts_window_instance_init (ModestAccountsWindow *obj);
53 static void modest_accounts_window_finalize    (GObject *obj);
54
55 static void connect_signals (ModestAccountsWindow *self);
56 static void modest_accounts_window_disconnect_signals (ModestWindow *self);
57
58 static void on_account_activated (GtkTreeView *treeview,
59                                   GtkTreePath *path,
60                                   GtkTreeViewColumn *column,
61                                   ModestAccountsWindow *accounts_window);
62 static void on_progress_list_changed (ModestWindowMgr *mgr,
63                                       ModestAccountsWindow *self);
64 static void setup_menu (ModestAccountsWindow *self);
65 static gboolean _modest_accounts_window_map_event (GtkWidget *widget,
66                                                    GdkEvent *event,
67                                                    gpointer userdata);
68 static void update_progress_hint (ModestAccountsWindow *self);
69
70
71 typedef struct _ModestAccountsWindowPrivate ModestAccountsWindowPrivate;
72 struct _ModestAccountsWindowPrivate {
73
74         GtkWidget *account_view;
75
76         /* signals */
77         GSList *sighandlers;
78
79         gboolean progress_hint;
80 };
81 #define MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(o)  (G_TYPE_INSTANCE_GET_PRIVATE((o), \
82                                                                             MODEST_TYPE_ACCOUNTS_WINDOW, \
83                                                                             ModestAccountsWindowPrivate))
84
85 /* globals */
86 static GtkWindowClass *parent_class = NULL;
87
88 /************************************************************************/
89
90 GType
91 modest_accounts_window_get_type (void)
92 {
93         static GType my_type = 0;
94         if (!my_type) {
95                 static const GTypeInfo my_info = {
96                         sizeof(ModestAccountsWindowClass),
97                         NULL,           /* base init */
98                         NULL,           /* base finalize */
99                         (GClassInitFunc) modest_accounts_window_class_init,
100                         NULL,           /* class finalize */
101                         NULL,           /* class data */
102                         sizeof(ModestAccountsWindow),
103                         1,              /* n_preallocs */
104                         (GInstanceInitFunc) modest_accounts_window_instance_init,
105                         NULL
106                 };
107                 my_type = g_type_register_static (MODEST_TYPE_HILDON2_WINDOW,
108                                                   "ModestAccountsWindow",
109                                                   &my_info, 0);
110         }
111         return my_type;
112 }
113
114 static void
115 modest_accounts_window_class_init (ModestAccountsWindowClass *klass)
116 {
117         GObjectClass *gobject_class;
118         gobject_class = (GObjectClass*) klass;
119         ModestWindowClass *modest_window_class = (ModestWindowClass *) klass;
120
121         parent_class            = g_type_class_peek_parent (klass);
122         gobject_class->finalize = modest_accounts_window_finalize;
123
124         g_type_class_add_private (gobject_class, sizeof(ModestAccountsWindowPrivate));
125         
126         modest_window_class->disconnect_signals_func = modest_accounts_window_disconnect_signals;
127 }
128
129 static void
130 modest_accounts_window_instance_init (ModestAccountsWindow *obj)
131 {
132         ModestAccountsWindowPrivate *priv;
133
134         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(obj);
135
136         priv->sighandlers = NULL;
137         
138         priv->account_view = NULL;
139         priv->progress_hint = FALSE;
140         
141         modest_window_mgr_register_help_id (modest_runtime_get_window_mgr(),
142                                             GTK_WINDOW(obj),
143                                             "applications_email_accountsview");
144 }
145
146 static void
147 modest_accounts_window_finalize (GObject *obj)
148 {
149         ModestAccountsWindowPrivate *priv;
150
151         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(obj);
152
153         /* Sanity check: shouldn't be needed, the window mgr should
154            call this function before */
155         modest_accounts_window_disconnect_signals (MODEST_WINDOW (obj));        
156
157         G_OBJECT_CLASS(parent_class)->finalize (obj);
158 }
159
160 static void
161 modest_accounts_window_disconnect_signals (ModestWindow *self)
162 {       
163         ModestAccountsWindowPrivate *priv;      
164         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
165
166         modest_signal_mgr_disconnect_all_and_destroy (priv->sighandlers);
167         priv->sighandlers = NULL;       
168 }
169
170 static void
171 connect_signals (ModestAccountsWindow *self)
172 {       
173         ModestAccountsWindowPrivate *priv;
174         
175         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
176
177         /* accounts view */
178         priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers, 
179                                                        G_OBJECT (priv->account_view), "row-activated", 
180                                                        G_CALLBACK (on_account_activated), self);
181
182         priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,
183                                                        G_OBJECT (modest_runtime_get_window_mgr ()),
184                                                        "progress-list-changed",
185                                                        G_CALLBACK (on_progress_list_changed), self);
186                                                                  
187
188         /* window */
189
190         /* we don't register this in sighandlers, as it should be run after disconnecting all signals,
191          * in destroy stage */
192
193         
194 }
195
196 ModestWindow *
197 modest_accounts_window_new (void)
198 {
199         ModestAccountsWindow *self = NULL;      
200         ModestAccountsWindowPrivate *priv = NULL;
201         HildonProgram *app;
202         GdkPixbuf *window_icon;
203         GtkWidget *pannable;
204         
205         self  = MODEST_ACCOUNTS_WINDOW(g_object_new(MODEST_TYPE_ACCOUNTS_WINDOW, NULL));
206         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
207
208         pannable = hildon_pannable_area_new ();
209         priv->account_view  = GTK_WIDGET (modest_account_view_new (modest_runtime_get_account_mgr ()));
210
211         setup_menu (self);
212
213         gtk_container_add (GTK_CONTAINER (pannable), priv->account_view);
214         gtk_container_add (GTK_CONTAINER (self), pannable);
215
216         gtk_widget_show (priv->account_view);
217         gtk_widget_show (pannable);
218
219         connect_signals (MODEST_ACCOUNTS_WINDOW (self));
220
221         /* Load previous osso state, for instance if we are being restored from 
222          * hibernation:  */
223         modest_osso_load_state ();
224
225         /* Get device name */
226         modest_maemo_utils_get_device_name ();
227
228         app = hildon_program_get_instance ();
229         hildon_program_add_window (app, HILDON_WINDOW (self));
230         
231         /* Set window icon */
232         window_icon = modest_platform_get_icon (MODEST_APP_ICON, MODEST_ICON_SIZE_BIG);
233         if (window_icon) {
234                 gtk_window_set_icon (GTK_WINDOW (self), window_icon);
235                 g_object_unref (window_icon);
236         }
237
238         /* Dont't restore settings here, 
239          * because it requires a gtk_widget_show(), 
240          * and we don't want to do that until later,
241          * so that the UI is not visible for non-menu D-Bus activation.
242          */
243
244         g_signal_connect (G_OBJECT (self), "map-event",
245                           G_CALLBACK (_modest_accounts_window_map_event),
246                           G_OBJECT (self));
247         update_progress_hint (self);
248
249
250         return MODEST_WINDOW(self);
251 }
252
253 ModestAccountView *
254 modest_accounts_window_get_account_view (ModestAccountsWindow *self)
255 {
256         ModestAccountsWindowPrivate *priv = NULL;
257
258         g_return_val_if_fail (MODEST_IS_ACCOUNTS_WINDOW(self), FALSE);
259
260         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
261         
262         return MODEST_ACCOUNT_VIEW (priv->account_view);
263 }
264
265 static void 
266 setup_menu (ModestAccountsWindow *self)
267 {
268         g_return_if_fail (MODEST_IS_ACCOUNTS_WINDOW(self));
269
270         /* Settings menu buttons */
271         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_new_account"), NULL, 
272                                            APP_MENU_CALLBACK (modest_ui_actions_on_new_account), 
273                                            NULL);
274         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_edit_accounts"), NULL,
275                                            APP_MENU_CALLBACK (modest_ui_actions_on_accounts), 
276                                            NULL);
277         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_options"), NULL,
278                                            APP_MENU_CALLBACK (modest_ui_actions_on_settings), 
279                                            NULL);
280         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_globalsmtpservers"), NULL,
281                                            APP_MENU_CALLBACK (modest_ui_actions_on_smtp_servers),
282                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_tools_smtp_servers));
283         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_new_message"), "<Control>n",
284                                            APP_MENU_CALLBACK (modest_ui_actions_on_new_msg),
285                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_new_msg));
286         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_sendandreceive"), NULL,
287                                            APP_MENU_CALLBACK (modest_ui_actions_on_send_receive),
288                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_send_receive_all));
289         modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_outbox_cancelsend"), NULL,
290                                            APP_MENU_CALLBACK (modest_ui_actions_cancel_send),
291                                            MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_cancel_sending_all));
292 }
293
294
295 static void
296 on_account_activated (GtkTreeView *account_view,
297                       GtkTreePath *path,
298                       GtkTreeViewColumn *column,
299                       ModestAccountsWindow *self)
300 {
301         ModestAccountsWindowPrivate *priv;
302         gchar* account_name; 
303         GtkWidget *folder_window;
304
305         priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
306         
307         account_name = modest_account_view_get_path_account (MODEST_ACCOUNT_VIEW (priv->account_view), path);
308         if (!account_name)
309                 return;
310
311         folder_window = GTK_WIDGET (modest_folder_window_new (NULL));
312         modest_window_mgr_register_window (modest_runtime_get_window_mgr (), 
313                                            MODEST_WINDOW (folder_window),
314                                            MODEST_WINDOW (self));
315         modest_folder_window_set_account (MODEST_FOLDER_WINDOW (folder_window), account_name);
316         gtk_widget_show (folder_window);
317         g_free (account_name);
318
319 }
320
321 static gboolean 
322 _modest_accounts_window_map_event (GtkWidget *widget,
323                                    GdkEvent *event,
324                                    gpointer userdata)
325 {
326         ModestAccountsWindow *self = (ModestAccountsWindow *) userdata;
327         ModestAccountsWindowPrivate *priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
328
329         if (priv->progress_hint) {
330                 hildon_gtk_window_set_progress_indicator (GTK_WINDOW (self), TRUE);
331         }
332
333         return FALSE;
334 }
335
336 static void
337 update_progress_hint (ModestAccountsWindow *self)
338 {
339         ModestAccountsWindowPrivate *priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
340
341         priv->progress_hint = modest_window_mgr_has_progress_operation (modest_runtime_get_window_mgr ());
342         
343         if (GTK_WIDGET_VISIBLE (self)) {
344                 hildon_gtk_window_set_progress_indicator (GTK_WINDOW (self), priv->progress_hint?1:0);
345         }
346 }
347
348 static void
349 on_progress_list_changed (ModestWindowMgr *mgr,
350                           ModestAccountsWindow *self)
351 {
352         update_progress_hint (self);
353 }