* fix warning
[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-platform.h"
38 #include <modest-account-mgr-helpers.h>
39 #include <string.h>
40 #include "modest-tny-platform-factory.h"
41 #include "maemo/easysetup/modest-easysetup-wizard.h"
42 #include "maemo/modest-account-settings-dialog.h"
43 #include <maemo/modest-maemo-utils.h>
44 #include "widgets/modest-ui-constants.h"
45
46 /* 'private'/'protected' functions */
47 static void                            modest_account_view_window_class_init   (ModestAccountViewWindowClass *klass);
48 static void                            modest_account_view_window_init         (ModestAccountViewWindow *obj);
49 static void                            modest_account_view_window_finalize     (GObject *obj);
50
51 /* list my signals */
52 enum {
53         /* MY_SIGNAL_1, */
54         /* MY_SIGNAL_2, */
55         LAST_SIGNAL
56 };
57
58 typedef struct _ModestAccountViewWindowPrivate ModestAccountViewWindowPrivate;
59 struct _ModestAccountViewWindowPrivate {
60         GtkWidget           *new_button;
61         GtkWidget           *edit_button;
62         GtkWidget           *delete_button;
63         GtkWidget           *close_button;
64         ModestAccountView   *account_view;
65 };
66 #define MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
67                                                         MODEST_TYPE_ACCOUNT_VIEW_WINDOW, \
68                                                         ModestAccountViewWindowPrivate))
69 /* globals */
70 static GtkDialogClass *parent_class = NULL;
71
72 /* uncomment the following if you have defined any signals */
73 /* static guint signals[LAST_SIGNAL] = {0}; */
74
75 GType
76 modest_account_view_window_get_type (void)
77 {
78         static GType my_type = 0;
79         if (!my_type) {
80                 static const GTypeInfo my_info = {
81                         sizeof(ModestAccountViewWindowClass),
82                         NULL,           /* base init */
83                         NULL,           /* base finalize */
84                         (GClassInitFunc) modest_account_view_window_class_init,
85                         NULL,           /* class finalize */
86                         NULL,           /* class data */
87                         sizeof(ModestAccountViewWindow),
88                         1,              /* n_preallocs */
89                         (GInstanceInitFunc) modest_account_view_window_init,
90                         NULL
91                 };
92                 my_type = g_type_register_static (GTK_TYPE_DIALOG,
93                                                   "ModestAccountViewWindow",
94                                                   &my_info, 0);
95         }
96         return my_type;
97 }
98
99 static void
100 modest_account_view_window_class_init (ModestAccountViewWindowClass *klass)
101 {
102         GObjectClass *gobject_class;
103         gobject_class = (GObjectClass*) klass;
104
105         parent_class            = g_type_class_peek_parent (klass);
106         gobject_class->finalize = modest_account_view_window_finalize;
107
108         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewWindowPrivate));
109
110         /* signal definitions go here, e.g.: */
111 /*      signals[MY_SIGNAL_1] = */
112 /*              g_signal_new ("my_signal_1",....); */
113 /*      signals[MY_SIGNAL_2] = */
114 /*              g_signal_new ("my_signal_2",....); */
115 /*      etc. */
116 }
117
118 static void
119 modest_account_view_window_finalize (GObject *obj)
120 {
121         G_OBJECT_CLASS(parent_class)->finalize (obj);
122 }
123
124
125 static void
126 on_selection_changed (GtkTreeSelection *sel, ModestAccountViewWindow *self)
127 {
128         ModestAccountViewWindowPrivate *priv;
129         GtkTreeModel                   *model;
130         GtkTreeIter                     iter;
131         gboolean                        has_selection;
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         /* Set the status of the buttons */
139         gtk_widget_set_sensitive (priv->edit_button, has_selection);
140         gtk_widget_set_sensitive (priv->delete_button, has_selection);  
141 }
142
143 /** Check whether any connections are active, and cancel them if 
144  * the user wishes.
145  * Returns TRUE is there was no problem, 
146  * or if an operation was cancelled so we can continue.
147  * Returns FALSE if the user chose to cancel his request instead.
148  */
149 static gboolean
150 check_for_active_account (ModestAccountViewWindow *self, const gchar* account_name)
151 {
152         ModestTnyAccountStore *acc_store;
153         ModestMailOperationQueue* queue;
154         TnyConnectionStatus store_conn_status, transport_conn_status;
155         TnyAccount *store_account = NULL, *transport_account = NULL;
156         gboolean retval = TRUE;
157
158         acc_store = modest_runtime_get_account_store ();
159         queue = modest_runtime_get_mail_operation_queue ();
160
161         store_account = 
162                 modest_tny_account_store_get_server_account (acc_store,
163                                                              account_name,
164                                                              TNY_ACCOUNT_TYPE_STORE);
165         transport_account = 
166                 modest_tny_account_store_get_server_account (acc_store,
167                                                              account_name,
168                                                              TNY_ACCOUNT_TYPE_STORE);
169
170         store_conn_status = tny_account_get_connection_status (store_account);
171         transport_conn_status = tny_account_get_connection_status (transport_account);
172
173         if (store_conn_status == TNY_CONNECTION_STATUS_CONNECTED ||
174             transport_conn_status == TNY_CONNECTION_STATUS_CONNECTED) {
175                 GtkWidget *note = NULL;
176                 gint response;
177
178                 note = hildon_note_new_confirmation (GTK_WINDOW (self), 
179                                                      _("emev_nc_disconnect_account"));
180                 response = gtk_dialog_run (GTK_DIALOG(note));
181
182                 gtk_widget_destroy (note);
183                 if (response == GTK_RESPONSE_OK) {
184                         /* FIXME: We should only cancel those of this account */
185                         modest_mail_operation_queue_cancel_all (queue);
186                         retval = TRUE;
187                 } else {
188                         retval = FALSE;
189                 }
190         }
191
192         /* Frees */
193         g_object_unref (store_account);
194         g_object_unref (transport_account);
195         
196         return retval;
197 }
198
199 static void
200 on_delete_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
201 {
202         ModestAccountViewWindowPrivate *priv;
203         ModestAccountMgr *account_mgr;
204         
205         
206         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
207
208         account_mgr = modest_runtime_get_account_mgr(); 
209         gchar *account_name = modest_account_view_get_selected_account (priv->account_view);
210         if(!account_name)
211                 return;
212                 
213         if (account_name) {
214                 gchar *account_title = modest_account_mgr_get_display_name(account_mgr, account_name);
215                 
216                 if (check_for_active_account (self, account_name)) {
217                         /* The warning text depends on the account type: */
218                         gchar *txt = NULL;      
219                         gint response;
220
221                         if (modest_account_mgr_get_store_protocol (account_mgr, account_name) 
222                                 == MODEST_PROTOCOL_STORE_POP) {
223                                 txt = g_strdup_printf (_("emev_nc_delete_mailbox"), 
224                                         account_title);
225                         } else {
226                                 txt = g_strdup_printf (_("emev_nc_delete_mailboximap"), 
227                                         account_title);
228                         }
229                         
230                         GtkDialog *dialog = GTK_DIALOG (hildon_note_new_confirmation (GTK_WINDOW (self), 
231                                 txt));
232                         gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
233                         gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (self));
234                         g_free (txt);
235                         txt = NULL;
236         
237                         response = gtk_dialog_run (dialog);
238                         gtk_widget_destroy (GTK_WIDGET (dialog));
239                         while (gtk_events_pending ())
240                                 gtk_main_iteration ();
241
242                         if (response == GTK_RESPONSE_OK) {
243                                 /* Remove account. If it succeeds then it also removes
244                                    the account from the ModestAccountView: */                             
245                                 gboolean is_default = FALSE;
246                                 gchar *default_account_name = modest_account_mgr_get_default_account (account_mgr);
247                                 if (default_account_name && (strcmp (default_account_name, account_name) == 0))
248                                         is_default = TRUE;
249                                 g_free (default_account_name);
250                                         
251                                 gboolean removed = modest_account_mgr_remove_account (account_mgr, account_name);
252                                 if (!removed) {
253                                         g_warning ("%s: modest_account_mgr_remove_account() failed.\n", __FUNCTION__);
254                                 }
255                         }
256                         g_free (account_title);
257                 }               
258                 g_free (account_name);
259         }
260 }
261
262 static void
263 on_edit_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
264 {
265         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
266         
267         gchar* account_name = modest_account_view_get_selected_account (priv->account_view);
268         if (!account_name)
269                 return;
270                 
271         /* Check whether any connections are active, and cancel them if 
272          * the user wishes.
273          */
274         if (check_for_active_account (self, account_name)) {
275                 
276                 /* Show the Account Settings window: */
277                 ModestAccountSettingsDialog *dialog = modest_account_settings_dialog_new ();
278
279                 modest_account_settings_dialog_set_account_name (dialog, account_name);
280                 gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
281                 modest_maemo_show_dialog_and_forget (GTK_WINDOW (self), GTK_DIALOG (dialog));
282         }
283         
284         g_free (account_name);
285 }
286
287 static void
288 on_wizard_response (GtkDialog *dialog, gint response, gpointer user_data)
289 {       
290         /* The response has already been handled by the wizard dialog itself,
291          * creating the new account.
292          */      
293         /* Destroy the dialog: */
294         if (dialog)
295                 gtk_widget_destroy (GTK_WIDGET (dialog));
296 }
297
298 static void
299 on_new_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
300 {
301         GtkDialog *wizard;
302         GtkWindow *dialog;
303         
304         /* Show the easy-setup wizard: */       
305         dialog = modest_window_mgr_get_modal (modest_runtime_get_window_mgr());
306         if (dialog && MODEST_IS_EASYSETUP_WIZARD_DIALOG(dialog)) {
307                 /* old wizard is active already; 
308                  */
309                 gtk_window_present (dialog);
310                 return;
311         }
312         
313         /* there is no such wizard yet */
314         wizard = GTK_DIALOG (modest_easysetup_wizard_dialog_new ());
315         modest_window_mgr_set_modal (modest_runtime_get_window_mgr(), 
316                                      GTK_WINDOW (wizard));
317
318         /* if there is already another modal dialog, make it non-modal */
319         if (dialog)
320                 gtk_window_set_modal (GTK_WINDOW(dialog), FALSE);
321         
322         gtk_window_set_modal (GTK_WINDOW (wizard), TRUE);
323         gtk_window_set_transient_for (GTK_WINDOW (wizard), GTK_WINDOW (self));
324         /* Destroy the dialog when it is closed: */
325         g_signal_connect (G_OBJECT (wizard), "response", G_CALLBACK
326                           (on_wizard_response), self);
327         gtk_widget_show (GTK_WIDGET (wizard));
328 }
329
330
331 static void
332 on_close_button_clicked (GtkWidget *button, gpointer user_data)
333 {               
334         ModestAccountViewWindow *self = MODEST_ACCOUNT_VIEW_WINDOW (user_data);
335
336         gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_OK);
337 }
338
339
340
341 static GtkWidget*
342 button_box_new (ModestAccountViewWindow *self)
343 {
344         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
345         
346         GtkWidget *button_box = gtk_hbutton_box_new ();
347         gtk_button_box_set_spacing (GTK_BUTTON_BOX (button_box), 6);
348         gtk_button_box_set_layout (GTK_BUTTON_BOX (button_box), 
349                                    GTK_BUTTONBOX_START);
350         
351         priv->new_button     = gtk_button_new_from_stock(_("mcen_bd_new"));
352         priv->edit_button = gtk_button_new_with_label(_("mcen_bd_edit"));
353         priv->delete_button  = gtk_button_new_from_stock(_("mcen_bd_delete"));
354         priv->close_button    = gtk_button_new_from_stock(_("mcen_bd_close"));
355         
356         g_signal_connect (G_OBJECT(priv->new_button), "clicked",
357                           G_CALLBACK(on_new_button_clicked),
358                           self);
359         g_signal_connect (G_OBJECT(priv->delete_button), "clicked",
360                           G_CALLBACK(on_delete_button_clicked),
361                           self);
362         g_signal_connect (G_OBJECT(priv->edit_button), "clicked",
363                           G_CALLBACK(on_edit_button_clicked),
364                           self);
365         g_signal_connect (G_OBJECT(priv->close_button), "clicked",
366                           G_CALLBACK(on_close_button_clicked),
367                           self);
368         
369         gtk_box_pack_start (GTK_BOX(button_box), priv->new_button, FALSE, FALSE,2);
370         gtk_box_pack_start (GTK_BOX(button_box), priv->edit_button, FALSE, FALSE,2);
371         gtk_box_pack_start (GTK_BOX(button_box), priv->delete_button, FALSE, FALSE,2);
372         gtk_box_pack_start (GTK_BOX(button_box), priv->close_button, FALSE, FALSE,2);
373
374         gtk_widget_set_sensitive (priv->edit_button, FALSE);
375         gtk_widget_set_sensitive (priv->delete_button, FALSE);  
376
377         gtk_widget_show_all (button_box);
378         return button_box;
379 }
380
381 static GtkWidget*
382 window_vbox_new (ModestAccountViewWindow *self)
383 {
384         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
385
386         GtkWidget *main_vbox     = gtk_vbox_new (FALSE, 6);
387         GtkWidget *main_hbox     = gtk_hbox_new (FALSE, 6);
388         
389         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
390
391         gtk_widget_set_size_request (GTK_WIDGET(priv->account_view), 300, 400);
392         gtk_widget_show (GTK_WIDGET (priv->account_view));
393
394         GtkTreeSelection *sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(priv->account_view));
395         g_signal_connect (G_OBJECT(sel), "changed",  G_CALLBACK(on_selection_changed),
396                           self);
397                           
398         GtkWidget *scrolled_window = gtk_scrolled_window_new (NULL, NULL);
399         gtk_container_set_border_width (GTK_CONTAINER (scrolled_window), MODEST_MARGIN_DEFAULT);
400         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_NEVER, 
401                 GTK_POLICY_AUTOMATIC);
402         gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (priv->account_view));
403         gtk_widget_show (GTK_WIDGET (scrolled_window));
404         
405         gtk_box_pack_start (GTK_BOX(main_hbox), GTK_WIDGET(scrolled_window), TRUE, TRUE, 2);
406         
407         gtk_box_pack_start (GTK_BOX(main_vbox), main_hbox, TRUE, TRUE, 2);
408         gtk_widget_show (GTK_WIDGET (main_hbox));
409         gtk_widget_show (GTK_WIDGET (main_vbox));
410
411         return main_vbox;
412 }
413
414
415 static void
416 modest_account_view_window_init (ModestAccountViewWindow *obj)
417 {
418         gtk_box_pack_start (GTK_BOX((GTK_DIALOG (obj)->vbox)), GTK_WIDGET (window_vbox_new (obj)), 
419                 TRUE, TRUE, 2);
420         
421         gtk_box_pack_start (GTK_BOX((GTK_DIALOG (obj)->action_area)), GTK_WIDGET (button_box_new (obj)), 
422                 TRUE, TRUE, 2);
423
424         gtk_window_set_title (GTK_WINDOW (obj), _("mcen_ti_emailsetup_accounts"));
425
426 }
427
428 GtkWidget*
429 modest_account_view_window_new (void)
430 {
431         GObject *obj = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
432         
433         /* Attach dialog help */
434         modest_platform_set_dialog_help (GTK_DIALOG (obj), "applications_email_accountsettings");
435
436         return GTK_WIDGET(obj);
437 }