* src/gnome/modest-account-view-window.c:
[modest] / src / gnome / 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-account-assistant.h"
40 #include "modest-tny-platform-factory.h"
41
42 /* 'private'/'protected' functions */
43 static void                            modest_account_view_window_class_init   (ModestAccountViewWindowClass *klass);
44 static void                            modest_account_view_window_init         (ModestAccountViewWindow *obj);
45 static void                            modest_account_view_window_finalize     (GObject *obj);
46
47 /* list my signals */
48 enum {
49         /* MY_SIGNAL_1, */
50         /* MY_SIGNAL_2, */
51         LAST_SIGNAL
52 };
53
54 typedef struct _ModestAccountViewWindowPrivate ModestAccountViewWindowPrivate;
55 struct _ModestAccountViewWindowPrivate {
56         GtkWidget           *add_button;
57         GtkWidget           *edit_button;
58         GtkWidget           *remove_button;
59         GtkWidget           *default_button;
60         ModestAccountView   *account_view;
61 };
62 #define MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
63                                                         MODEST_TYPE_ACCOUNT_VIEW_WINDOW, \
64                                                         ModestAccountViewWindowPrivate))
65 /* globals */
66 static GtkDialogClass *parent_class = NULL;
67
68 /* uncomment the following if you have defined any signals */
69 /* static guint signals[LAST_SIGNAL] = {0}; */
70
71 GType
72 modest_account_view_window_get_type (void)
73 {
74         static GType my_type = 0;
75         if (!my_type) {
76                 static const GTypeInfo my_info = {
77                         sizeof(ModestAccountViewWindowClass),
78                         NULL,           /* base init */
79                         NULL,           /* base finalize */
80                         (GClassInitFunc) modest_account_view_window_class_init,
81                         NULL,           /* class finalize */
82                         NULL,           /* class data */
83                         sizeof(ModestAccountViewWindow),
84                         1,              /* n_preallocs */
85                         (GInstanceInitFunc) modest_account_view_window_init,
86                         NULL
87                 };
88                 my_type = g_type_register_static (GTK_TYPE_DIALOG,
89                                                   "ModestAccountViewWindow",
90                                                   &my_info, 0);
91         }
92         return my_type;
93 }
94
95 static void
96 modest_account_view_window_class_init (ModestAccountViewWindowClass *klass)
97 {
98         GObjectClass *gobject_class;
99         gobject_class = (GObjectClass*) klass;
100
101         parent_class            = g_type_class_peek_parent (klass);
102         gobject_class->finalize = modest_account_view_window_finalize;
103
104         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewWindowPrivate));
105 }
106
107 static void
108 modest_account_view_window_init (ModestAccountViewWindow *obj)
109 {
110         /* empty */
111 }
112
113 static void
114 modest_account_view_window_finalize (GObject *obj)
115 {
116         G_OBJECT_CLASS(parent_class)->finalize (obj);
117 }
118
119
120 static void
121 on_selection_changed (GtkTreeSelection *sel, ModestAccountViewWindow *self)
122 {
123         ModestAccountViewWindowPrivate *priv;
124         GtkTreeModel                   *model;
125         GtkTreeIter                    iter;
126         gboolean                       has_selection;
127         gchar                         *account_name;
128         gchar                         *default_account_name;
129         
130         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
131
132         has_selection =
133                 gtk_tree_selection_get_selected (sel, &model, &iter);
134
135         gtk_widget_set_sensitive (priv->edit_button, has_selection);
136         gtk_widget_set_sensitive (priv->remove_button, has_selection);  
137
138         account_name = modest_account_view_get_selected_account (priv->account_view);
139         default_account_name = modest_account_mgr_get_default_account(
140                 modest_runtime_get_account_mgr());
141         gtk_widget_set_sensitive (priv->default_button,
142                                   default_account_name == NULL || account_name == NULL ||
143                                   strcmp (default_account_name, account_name) != 0);
144         g_free (account_name);
145         g_free (default_account_name);
146 }
147
148 static void
149 on_remove_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
150 {
151         ModestAccountViewWindowPrivate *priv;
152         ModestAccountMgr *account_mgr;
153         gchar *account_name;
154         
155         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
156
157         account_mgr = modest_runtime_get_account_mgr(); 
158         account_name = modest_account_view_get_selected_account (priv->account_view);
159
160         if (account_name) {
161                 gboolean removed;
162                 GtkWidget *dialog;
163                 gchar *txt;
164
165                 dialog = gtk_dialog_new_with_buttons (_("Confirmation dialog"),
166                                                       GTK_WINDOW (self),
167                                                       GTK_DIALOG_MODAL,
168                                                       GTK_STOCK_CANCEL,
169                                                       GTK_RESPONSE_REJECT,
170                                                       GTK_STOCK_OK,
171                                                       GTK_RESPONSE_ACCEPT,
172                                                       NULL);
173                 txt = g_strdup_printf (_("Do you really want to delete the account %s?"), account_name);
174                 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
175                                     gtk_label_new (txt), FALSE, FALSE, 0);
176 /*              gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox)); */
177                 g_free (txt);
178
179                 if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) {
180                         /* Remove account. If succeeded it removes also 
181                            the account from the ModestAccountView */
182                         removed = modest_account_mgr_remove_account (account_mgr,
183                                                                      account_name);
184                         if (removed) {
185                                 /* Show confirmation dialog ??? */
186                         } else {
187                                 /* Show error dialog ??? */
188                                 g_warning ("Error removing account %s", account_name);
189                         }
190                 }
191                 gtk_widget_destroy (dialog);
192                 g_free (account_name);
193         }
194 }
195
196 /** Check whether any connections are active, and cancel them if 
197  * the user wishes.
198  * Returns TRUE is there was no problem, 
199  * or if an operation was cancelled so we can continue.
200  * Returns FALSE if the user chose to cancel his request instead.
201  */
202 static gboolean
203 check_for_active_account (ModestAccountViewWindow *self, const gchar* account_name)
204 {
205         ModestTnyAccountStore *acc_store;
206         ModestMailOperationQueue* queue;
207         TnyConnectionStatus store_conn_status, transport_conn_status;
208         TnyAccount *store_account = NULL, *transport_account = NULL;
209         gboolean retval = TRUE;
210
211         acc_store = modest_runtime_get_account_store ();
212         queue = modest_runtime_get_mail_operation_queue ();
213
214         store_account = 
215                 modest_tny_account_store_get_server_account (acc_store,
216                                                              account_name,
217                                                              TNY_ACCOUNT_TYPE_STORE);
218         transport_account = 
219                 modest_tny_account_store_get_server_account (acc_store,
220                                                              account_name,
221                                                              TNY_ACCOUNT_TYPE_TRANSPORT);
222
223         store_conn_status = tny_account_get_connection_status (store_account);
224         transport_conn_status = tny_account_get_connection_status (transport_account);
225
226         if (store_conn_status == TNY_CONNECTION_STATUS_CONNECTED ||
227             transport_conn_status == TNY_CONNECTION_STATUS_CONNECTED) {
228                 gint response;
229
230                 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (self), 
231                                                                 _("emev_nc_disconnect_account"));
232                 if (response == GTK_RESPONSE_OK) {
233                         /* FIXME: We should only cancel those of this account */
234                         modest_mail_operation_queue_cancel_all (queue);
235
236                         /* Also disconnect the account */
237                         if (tny_account_get_connection_status (store_account) == TNY_CONNECTION_STATUS_CONNECTED) {
238                                 tny_account_cancel (store_account);
239                                 tny_camel_account_set_online (TNY_CAMEL_ACCOUNT (store_account),
240                                                               FALSE, NULL, NULL);
241                         }
242                         if (tny_account_get_connection_status (transport_account) == TNY_CONNECTION_STATUS_CONNECTED) {
243                                 tny_account_cancel (transport_account);
244                                 tny_camel_account_set_online (TNY_CAMEL_ACCOUNT (transport_account),
245                                                               FALSE, NULL, NULL);
246                         }
247                         retval = TRUE;
248                 } else {
249                         retval = FALSE;
250                 }
251         }
252
253         /* Frees */
254         g_object_unref (store_account);
255         g_object_unref (transport_account);
256         
257         return retval;
258 }
259
260 static void
261 on_edit_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
262 {
263         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (self);
264         
265         gchar* account_name = modest_account_view_get_selected_account (priv->account_view);
266         if (!account_name)
267                 return;
268                 
269         if (check_for_active_account (self, account_name)) {
270                 modest_tny_account_store_show_account_settings_dialog (modest_runtime_get_account_store (), account_name);
271                 
272         }
273         
274         g_free (account_name);
275 }
276
277 static void
278 on_add_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
279 {
280         GtkWidget *assistant;
281         ModestAccountViewWindowPrivate *priv;
282         
283         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
284         assistant = modest_account_assistant_new (modest_runtime_get_account_mgr());
285         gtk_window_set_transient_for (GTK_WINDOW(assistant),
286                                       GTK_WINDOW(self));
287
288         gtk_widget_show (GTK_WIDGET(assistant));
289 }
290
291
292 static void
293 on_default_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
294 {
295         ModestAccountViewWindowPrivate *priv;
296         ModestAccountMgr *account_mgr;
297         gchar *account_name;
298         
299         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
300
301         account_mgr = modest_runtime_get_account_mgr(); 
302         account_name = modest_account_view_get_selected_account (priv->account_view);
303
304         modest_account_mgr_set_default_account (account_mgr, account_name);
305
306         g_free (account_name);
307 }
308
309
310 static GtkWidget*
311 button_box_new (ModestAccountViewWindow *self)
312 {
313
314         GtkWidget *button_box;
315         ModestAccountViewWindowPrivate *priv;
316         
317         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
318         
319         button_box   = gtk_vbutton_box_new ();
320         gtk_button_box_set_spacing (GTK_BUTTON_BOX (button_box), 6);
321         gtk_button_box_set_layout (GTK_BUTTON_BOX (button_box), 
322                                    GTK_BUTTONBOX_START);
323         
324         priv->add_button     = gtk_button_new_from_stock(GTK_STOCK_ADD);
325         priv->default_button = gtk_button_new_with_label(_("Make default"));
326         priv->remove_button  = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
327         priv->edit_button    = gtk_button_new_from_stock(GTK_STOCK_EDIT);
328         
329         g_signal_connect (G_OBJECT(priv->add_button), "clicked",
330                           G_CALLBACK(on_add_button_clicked),
331                           self);
332         g_signal_connect (G_OBJECT(priv->remove_button), "clicked",
333                           G_CALLBACK(on_remove_button_clicked),
334                           self);
335         g_signal_connect (G_OBJECT(priv->edit_button), "clicked",
336                           G_CALLBACK(on_edit_button_clicked),
337                           self);
338         g_signal_connect (G_OBJECT(priv->default_button), "clicked",
339                           G_CALLBACK(on_default_button_clicked),
340                           self);
341         
342         gtk_box_pack_start (GTK_BOX(button_box), priv->add_button, FALSE, FALSE,2);
343         gtk_box_pack_start (GTK_BOX(button_box), priv->default_button, FALSE, FALSE,2);
344         gtk_box_pack_start (GTK_BOX(button_box), priv->remove_button, FALSE, FALSE,2);
345         gtk_box_pack_start (GTK_BOX(button_box), priv->edit_button, FALSE, FALSE,2);
346
347         gtk_widget_set_sensitive (priv->edit_button, FALSE);
348         gtk_widget_set_sensitive (priv->remove_button, FALSE);  
349         gtk_widget_set_sensitive (priv->default_button, FALSE);
350         
351         return button_box;
352 }
353
354 static GtkWidget*
355 window_vbox_new (ModestAccountViewWindow *self)
356 {
357         ModestAccountViewWindowPrivate *priv;
358         GtkTreeSelection *sel;
359         GtkWidget *main_hbox, *main_vbox, *button_box;
360         GtkWidget *scrolled_window;
361
362         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
363
364         main_vbox     = gtk_vbox_new (FALSE, 0);
365         main_hbox     = gtk_hbox_new (FALSE, 12);
366         
367         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
368         gtk_widget_set_size_request (GTK_WIDGET(priv->account_view), 300, 400);
369
370         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(priv->account_view));
371         g_signal_connect (G_OBJECT(sel), "changed",  G_CALLBACK(on_selection_changed),
372                           self);
373         
374         button_box = button_box_new (self);
375         
376         scrolled_window = gtk_scrolled_window_new (NULL, NULL);
377         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
378         gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_window), GTK_SHADOW_IN);
379         gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (priv->account_view));
380         gtk_box_pack_start (GTK_BOX(main_hbox), scrolled_window, TRUE, TRUE, 0);
381         gtk_box_pack_start (GTK_BOX(main_hbox), button_box, FALSE, FALSE,0);
382
383         gtk_box_pack_start (GTK_BOX(main_vbox), main_hbox, TRUE, TRUE, 0);
384
385         gtk_widget_show_all (main_vbox);
386         return main_vbox;
387 }
388
389
390 GtkWidget*
391 modest_account_view_window_new (void)
392 {
393         GObject *obj;
394         ModestAccountViewWindowPrivate *priv;
395         
396         obj  = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
397         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(obj);
398
399         gtk_window_set_resizable (GTK_WINDOW(obj), TRUE);
400         gtk_window_set_title (GTK_WINDOW(obj), _("mcen_ti_emailsetup_accounts"));
401         gtk_window_set_type_hint (GTK_WINDOW(obj), GDK_WINDOW_TYPE_HINT_DIALOG);
402         gtk_window_set_default_size (GTK_WINDOW (obj), 640, 480);
403         
404         gtk_window_set_modal (GTK_WINDOW(obj), TRUE);
405                                      
406         gtk_box_pack_start (GTK_BOX(GTK_DIALOG(obj)->vbox),
407                             window_vbox_new (MODEST_ACCOUNT_VIEW_WINDOW(obj)),
408                             TRUE, TRUE, 12);
409
410         gtk_dialog_add_button (GTK_DIALOG (obj), GTK_STOCK_CLOSE, GTK_RESPONSE_OK);
411                 
412         return GTK_WIDGET(obj);
413 }