2007-06-02 Armin Burgmeier <armin@openismus.com>
[modest] / src / maemo / modest-account-view-window.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 <gtk/gtk.h>
32
33 #include <widgets/modest-account-view-window.h>
34 #include <widgets/modest-account-view.h>
35
36 #include <modest-runtime.h>
37 #include <modest-account-mgr-helpers.h>
38 #include <string.h>
39 #include "modest-tny-platform-factory.h"
40 #include "maemo/easysetup/modest-easysetup-wizard.h"
41 #include "maemo/modest-account-settings-dialog.h"
42 #include "widgets/modest-ui-constants.h"
43
44 /* 'private'/'protected' functions */
45 static void                            modest_account_view_window_class_init   (ModestAccountViewWindowClass *klass);
46 static void                            modest_account_view_window_init         (ModestAccountViewWindow *obj);
47 static void                            modest_account_view_window_finalize     (GObject *obj);
48
49 /* list my signals */
50 enum {
51         /* MY_SIGNAL_1, */
52         /* MY_SIGNAL_2, */
53         LAST_SIGNAL
54 };
55
56 typedef struct _ModestAccountViewWindowPrivate ModestAccountViewWindowPrivate;
57 struct _ModestAccountViewWindowPrivate {
58         GtkWidget           *new_button;
59         GtkWidget           *edit_button;
60         GtkWidget           *delete_button;
61         GtkWidget           *close_button;
62         ModestAccountView   *account_view;
63 };
64 #define MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
65                                                         MODEST_TYPE_ACCOUNT_VIEW_WINDOW, \
66                                                         ModestAccountViewWindowPrivate))
67 /* globals */
68 static GtkDialogClass *parent_class = NULL;
69
70 /* uncomment the following if you have defined any signals */
71 /* static guint signals[LAST_SIGNAL] = {0}; */
72
73 GType
74 modest_account_view_window_get_type (void)
75 {
76         static GType my_type = 0;
77         if (!my_type) {
78                 static const GTypeInfo my_info = {
79                         sizeof(ModestAccountViewWindowClass),
80                         NULL,           /* base init */
81                         NULL,           /* base finalize */
82                         (GClassInitFunc) modest_account_view_window_class_init,
83                         NULL,           /* class finalize */
84                         NULL,           /* class data */
85                         sizeof(ModestAccountViewWindow),
86                         1,              /* n_preallocs */
87                         (GInstanceInitFunc) modest_account_view_window_init,
88                         NULL
89                 };
90                 my_type = g_type_register_static (GTK_TYPE_DIALOG,
91                                                   "ModestAccountViewWindow",
92                                                   &my_info, 0);
93         }
94         return my_type;
95 }
96
97 static void
98 modest_account_view_window_class_init (ModestAccountViewWindowClass *klass)
99 {
100         GObjectClass *gobject_class;
101         gobject_class = (GObjectClass*) klass;
102
103         parent_class            = g_type_class_peek_parent (klass);
104         gobject_class->finalize = modest_account_view_window_finalize;
105
106         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewWindowPrivate));
107
108         /* signal definitions go here, e.g.: */
109 /*      signals[MY_SIGNAL_1] = */
110 /*              g_signal_new ("my_signal_1",....); */
111 /*      signals[MY_SIGNAL_2] = */
112 /*              g_signal_new ("my_signal_2",....); */
113 /*      etc. */
114 }
115
116 static void
117 modest_account_view_window_finalize (GObject *obj)
118 {
119         G_OBJECT_CLASS(parent_class)->finalize (obj);
120 }
121
122
123 static void
124 on_selection_changed (GtkTreeSelection *sel, ModestAccountViewWindow *self)
125 {
126         ModestAccountViewWindowPrivate *priv;
127         GtkTreeModel                   *model;
128         GtkTreeIter                     iter;
129         gboolean                        has_selection;
130         gchar                          *account_name;
131         gchar                          *default_account_name;
132         
133         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
134
135         has_selection =
136                 gtk_tree_selection_get_selected (sel, &model, &iter);
137
138         gtk_widget_set_sensitive (priv->edit_button, has_selection);
139         gtk_widget_set_sensitive (priv->delete_button, has_selection);  
140
141         account_name = modest_account_view_get_selected_account (priv->account_view);
142         default_account_name = modest_account_mgr_get_default_account(
143                 modest_runtime_get_account_mgr());
144
145         g_free (account_name);
146         g_free (default_account_name);
147 }
148
149 static void
150 on_delete_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
151 {
152         ModestAccountViewWindowPrivate *priv;
153         ModestAccountMgr *account_mgr;
154         
155         
156         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
157
158         account_mgr = modest_runtime_get_account_mgr(); 
159         gchar *account_name = modest_account_view_get_selected_account (priv->account_view);
160         if(!account_name)
161                 return;
162                 
163         gchar *account_title = modest_account_mgr_get_display_name(account_mgr, account_name);
164
165         if (account_name) {
166                 gboolean removed;
167                 GtkWidget *dialog;
168                 gchar *txt;
169
170                 /* Freeze updates, so we can do just one update afterwards, 
171                  * instead of responding to every conf key change: */
172                 modest_account_view_block_conf_updates (priv->account_view);
173                 
174                 dialog = gtk_dialog_new_with_buttons (_("Confirmation dialog"),
175                                                       GTK_WINDOW (self),
176                                                       GTK_DIALOG_MODAL,
177                                                       GTK_STOCK_CANCEL,
178                                                       GTK_RESPONSE_REJECT,
179                                                       GTK_STOCK_OK,
180                                                       GTK_RESPONSE_ACCEPT,
181                                                       NULL);
182                 txt = g_strdup_printf (_("emev_nc_delete_mailboximap"), 
183                         account_title);
184                 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
185                                     gtk_label_new (txt), FALSE, FALSE, 0);
186                 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
187                 g_free (txt);
188
189                 if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) {
190                         /* Remove account. If succeeded it removes also 
191                            the account from the ModestAccountView */
192                           
193                         gboolean is_default = FALSE;
194                         gchar *default_account_name = modest_account_mgr_get_default_account (account_mgr);
195                         if (default_account_name && (strcmp (default_account_name, account_name) == 0))
196                                 is_default = TRUE;
197                         g_free (default_account_name);
198                                 
199                         removed = modest_account_mgr_remove_account (account_mgr,
200                                                                              account_name,
201                                                                              FALSE);
202                                                                              
203                         if (removed && is_default) {
204                                 /* Set a different account as the default, so there is always at least one default:
205                                  * This is not specified, and might be the wrong behaviour. murrayc. */
206                                 modest_account_mgr_set_first_account_as_default (account_mgr);
207                         }
208                                                                          
209                         if (removed) {
210                                 /* Show confirmation dialog ??? */
211                         } else {
212                                 /* Show error dialog ??? */
213                         }
214                 }
215                 gtk_widget_destroy (dialog);
216                 g_free (account_title);
217                 g_free (account_name);
218                 
219                 /* Update the view: */
220                 modest_account_view_unblock_conf_updates (priv->account_view);
221         }
222 }
223
224 static void
225 on_edit_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
226 {
227         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
228         
229         gchar* account_name = modest_account_view_get_selected_account (priv->account_view);
230         if (!account_name)
231                 return;
232                 
233         /* Check whether any connections are active, and cancel them if 
234          * the user wishes.
235          * TODO: Check only for connections with this account, instead of all.
236          * Maybe we need a queue per account.
237          */
238         ModestMailOperationQueue* queue = modest_runtime_get_mail_operation_queue ();
239         if (modest_mail_operation_queue_num_elements(queue)) {
240                 GtkWidget *note = hildon_note_new_confirmation (GTK_WINDOW (self), 
241                         _("emev_nc_disconnect_account"));
242                 const int response = gtk_dialog_run (GTK_DIALOG(note));
243                 gtk_widget_destroy (note);
244                 if (response == GTK_RESPONSE_OK) {
245                         modest_mail_operation_queue_cancel_all(queue);;
246                 }
247                 else
248                         return;
249         }
250                 
251         /* Freeze updates, so we can do just one update afterwards, 
252          * instead of responding to every conf key change: */
253         modest_account_view_block_conf_updates (priv->account_view);
254                 
255         /* Show the Account Settings window: */
256         ModestAccountSettingsDialog *dialog = modest_account_settings_dialog_new ();
257         modest_account_settings_dialog_set_account_name (dialog, account_name);
258         
259         gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (self));
260         gtk_dialog_run (GTK_DIALOG (dialog));
261         gtk_widget_destroy (GTK_WIDGET (dialog));
262         
263         g_free (account_name);
264         
265         /* Update the view: */
266         modest_account_view_unblock_conf_updates (priv->account_view);
267         
268         /* TODO: Call modest_account_view_select_account() when 
269          * the view has actually been update. */
270 }
271
272 static void
273 on_new_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
274 {
275         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
276         
277         /* Freeze updates, so we can do just one update afterwards, 
278          * instead of responding to every conf key change: */
279         modest_account_view_block_conf_updates (priv->account_view);
280         
281         /* Show the easy-setup wizard: */
282         ModestEasysetupWizardDialog *wizard = modest_easysetup_wizard_dialog_new ();
283         gtk_window_set_transient_for (GTK_WINDOW (wizard), GTK_WINDOW (self));
284         gtk_dialog_run (GTK_DIALOG (wizard));
285         gtk_widget_destroy (GTK_WIDGET (wizard));
286         
287         /* Allow updates: */
288         modest_account_view_unblock_conf_updates (priv->account_view);
289 }
290
291
292 static void
293 on_close_button_clicked (GtkWidget *button, gpointer user_data)
294 {               
295         ModestAccountViewWindow *self = MODEST_ACCOUNT_VIEW_WINDOW (user_data);
296
297         gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_OK);
298 }
299
300
301
302 static GtkWidget*
303 button_box_new (ModestAccountViewWindow *self)
304 {
305         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
306         
307         GtkWidget *button_box = gtk_hbutton_box_new ();
308         gtk_button_box_set_spacing (GTK_BUTTON_BOX (button_box), 6);
309         gtk_button_box_set_layout (GTK_BUTTON_BOX (button_box), 
310                                    GTK_BUTTONBOX_START);
311         
312         priv->new_button     = gtk_button_new_from_stock(_("mcen_bd_new"));
313         priv->edit_button = gtk_button_new_with_label(_("mcen_bd_edit"));
314         priv->delete_button  = gtk_button_new_from_stock(_("mcen_bd_delete"));
315         priv->close_button    = gtk_button_new_from_stock(_("mcen_bd_close"));
316         
317         g_signal_connect (G_OBJECT(priv->new_button), "clicked",
318                           G_CALLBACK(on_new_button_clicked),
319                           self);
320         g_signal_connect (G_OBJECT(priv->delete_button), "clicked",
321                           G_CALLBACK(on_delete_button_clicked),
322                           self);
323         g_signal_connect (G_OBJECT(priv->edit_button), "clicked",
324                           G_CALLBACK(on_edit_button_clicked),
325                           self);
326         g_signal_connect (G_OBJECT(priv->close_button), "clicked",
327                           G_CALLBACK(on_close_button_clicked),
328                           self);
329         
330         gtk_box_pack_start (GTK_BOX(button_box), priv->new_button, FALSE, FALSE,2);
331         gtk_box_pack_start (GTK_BOX(button_box), priv->edit_button, FALSE, FALSE,2);
332         gtk_box_pack_start (GTK_BOX(button_box), priv->delete_button, FALSE, FALSE,2);
333         gtk_box_pack_start (GTK_BOX(button_box), priv->close_button, FALSE, FALSE,2);
334
335         gtk_widget_set_sensitive (priv->edit_button, FALSE);
336         gtk_widget_set_sensitive (priv->delete_button, FALSE);  
337
338         gtk_widget_show_all (button_box);
339         return button_box;
340 }
341
342
343 static GtkWidget*
344 window_vbox_new (ModestAccountViewWindow *self)
345 {
346         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
347
348         GtkWidget *main_vbox     = gtk_vbox_new (FALSE, 6);
349         GtkWidget *main_hbox     = gtk_hbox_new (FALSE, 6);
350         
351         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
352         gtk_widget_set_size_request (GTK_WIDGET(priv->account_view), 300, 400);
353         gtk_widget_show (GTK_WIDGET (priv->account_view));
354
355         GtkTreeSelection *sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(priv->account_view));
356         g_signal_connect (G_OBJECT(sel), "changed",  G_CALLBACK(on_selection_changed),
357                           self);
358                           
359         GtkWidget *scrolled_window = gtk_scrolled_window_new (NULL, NULL);
360         gtk_container_set_border_width (GTK_CONTAINER (scrolled_window), MODEST_MARGIN_DEFAULT);
361         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_NEVER, 
362                 GTK_POLICY_AUTOMATIC);
363         gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (priv->account_view));
364         gtk_widget_show (GTK_WIDGET (scrolled_window));
365         
366         gtk_box_pack_start (GTK_BOX(main_hbox), GTK_WIDGET(scrolled_window), TRUE, TRUE, 2);
367         
368         gtk_box_pack_start (GTK_BOX(main_vbox), main_hbox, TRUE, TRUE, 2);
369         gtk_widget_show (GTK_WIDGET (main_hbox));
370         gtk_widget_show (GTK_WIDGET (main_vbox));
371
372         return main_vbox;
373 }
374
375
376 static void
377 modest_account_view_window_init (ModestAccountViewWindow *obj)
378 {
379 /*
380         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(obj);
381 */              
382         gtk_box_pack_start (GTK_BOX((GTK_DIALOG (obj)->vbox)), GTK_WIDGET (window_vbox_new (obj)), 
383                 TRUE, TRUE, 2);
384         
385         gtk_box_pack_start (GTK_BOX((GTK_DIALOG (obj)->action_area)), GTK_WIDGET (button_box_new (obj)), 
386                 TRUE, TRUE, 2);
387
388         gtk_window_set_title (GTK_WINDOW (obj), _("mcen_ti_emailsetup_accounts"));
389 }
390
391
392 GtkWidget*
393 modest_account_view_window_new (void)
394 {
395         GObject *obj = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
396         
397         return GTK_WIDGET(obj);
398 }