Do not assume that account protocols will always return a settings dialog
[modest] / src / widgets / 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-ui-actions.h"
38 #include "modest-platform.h"
39 #include "modest-text-utils.h"
40 #include "modest-account-protocol.h"
41 #include <modest-account-mgr-helpers.h>
42 #include <string.h>
43 #include "modest-tny-platform-factory.h"
44 #include "modest-easysetup-wizard-dialog.h"
45 #include "modest-account-settings-dialog.h"
46 #include <modest-utils.h>
47 #include "widgets/modest-ui-constants.h"
48 #include <modest-scrollable.h>
49 #include <modest-toolkit-factory.h>
50
51 /* 'private'/'protected' functions */
52 static void                            modest_account_view_window_class_init   (ModestAccountViewWindowClass *klass);
53 static void                            modest_account_view_window_init         (ModestAccountViewWindow *obj);
54 static void                            modest_account_view_window_finalize     (GObject *obj);
55
56 /* list my signals */
57 enum {
58         /* MY_SIGNAL_1, */
59         /* MY_SIGNAL_2, */
60         LAST_SIGNAL
61 };
62
63 typedef struct _ModestAccountViewWindowPrivate ModestAccountViewWindowPrivate;
64 struct _ModestAccountViewWindowPrivate {
65         GtkWidget           *edit_button;
66         ModestAccountView   *account_view;
67         guint acc_removed_handler;
68 };
69 #define MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
70                                                         MODEST_TYPE_ACCOUNT_VIEW_WINDOW, \
71                                                         ModestAccountViewWindowPrivate))
72 /* globals */
73 static GtkDialogClass *parent_class = NULL;
74
75 /* uncomment the following if you have defined any signals */
76 /* static guint signals[LAST_SIGNAL] = {0}; */
77
78 GType
79 modest_account_view_window_get_type (void)
80 {
81         static GType my_type = 0;
82         if (!my_type) {
83                 static const GTypeInfo my_info = {
84                         sizeof(ModestAccountViewWindowClass),
85                         NULL,           /* base init */
86                         NULL,           /* base finalize */
87                         (GClassInitFunc) modest_account_view_window_class_init,
88                         NULL,           /* class finalize */
89                         NULL,           /* class data */
90                         sizeof(ModestAccountViewWindow),
91                         1,              /* n_preallocs */
92                         (GInstanceInitFunc) modest_account_view_window_init,
93                         NULL
94                 };
95                 my_type = g_type_register_static (GTK_TYPE_DIALOG,
96                                                   "ModestAccountViewWindow",
97                                                   &my_info, 0);
98         }
99         return my_type;
100 }
101
102 static void
103 modest_account_view_window_class_init (ModestAccountViewWindowClass *klass)
104 {
105         GObjectClass *gobject_class;
106         gobject_class = (GObjectClass*) klass;
107
108         parent_class            = g_type_class_peek_parent (klass);
109         gobject_class->finalize = modest_account_view_window_finalize;
110
111         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewWindowPrivate));
112 }
113
114 static void
115 modest_account_view_window_finalize (GObject *self)
116 {
117         ModestAccountViewWindowPrivate *priv;
118         ModestAccountMgr *mgr;
119         
120         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (self);
121         mgr = modest_runtime_get_account_mgr ();
122
123         if (g_signal_handler_is_connected (mgr, priv->acc_removed_handler))
124                 g_signal_handler_disconnect (mgr, priv->acc_removed_handler);
125         priv->acc_removed_handler = 0;
126
127         G_OBJECT_CLASS(parent_class)->finalize (self);
128 }
129
130 static void
131 on_account_settings_dialog_response (GtkDialog *dialog,
132                                      gint response,
133                                      gpointer user_data)
134 {
135         TnyAccount *store_account = NULL;
136         gchar* account_name = NULL;
137         ModestAccountViewWindowPrivate *priv = NULL;
138
139         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (user_data);
140         account_name = modest_account_view_get_selected_account (priv->account_view);
141         store_account = modest_tny_account_store_get_server_account (modest_runtime_get_account_store (),
142                                                                      account_name,
143                                                                      TNY_ACCOUNT_TYPE_STORE);
144         if (store_account) {
145                 /* Reconnect the store account, no need to reconnect the
146                    transport account because it will connect when needed */
147                 if (tny_account_get_connection_status (store_account) ==
148                     TNY_CONNECTION_STATUS_DISCONNECTED)
149                         tny_camel_account_set_online (TNY_CAMEL_ACCOUNT (store_account),
150                                                       TRUE, NULL, NULL);
151                 g_object_unref (store_account);
152         }
153         /* Disconnect this handler */
154         g_signal_handlers_disconnect_by_func (dialog, on_account_settings_dialog_response, user_data);
155
156         /* Free */
157         g_free (account_name);
158 }
159
160 static void
161 on_account_activated (GtkTreeView *account_view,
162                       GtkTreePath *path,
163                       GtkTreeViewColumn *column,
164                       ModestAccountViewWindow *self)
165 {
166         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (self);
167
168         gchar* account_name = modest_account_view_get_path_account (priv->account_view, path);
169         if (!account_name)
170                 return;
171
172         /* Check whether any connections are active, and cancel them if
173          * the user wishes.
174          */
175         if (modest_ui_actions_check_for_active_account ((ModestWindow *) self, account_name)) {
176                 ModestAccountProtocol *proto;
177                 ModestProtocolType proto_type;
178
179                 /* Get proto */
180                 proto_type = modest_account_mgr_get_store_protocol (modest_runtime_get_account_mgr (),
181                                                                     account_name);
182                 proto = (ModestAccountProtocol *)
183                         modest_protocol_registry_get_protocol_by_type (modest_runtime_get_protocol_registry (),
184                                                                        proto_type);
185
186                 /* Create and show the dialog */
187                 if (proto && MODEST_IS_ACCOUNT_PROTOCOL (proto)) {
188                         ModestAccountSettingsDialog *dialog =
189                                 modest_account_protocol_get_account_settings_dialog (proto, account_name);
190
191                         if (dialog) {
192                                 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (),
193                                                              (GtkWindow *) dialog,
194                                                              (GtkWindow *) self);
195                                 gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), FALSE);
196                                 gtk_widget_show (GTK_WIDGET (dialog));
197                         }
198                 }
199         }
200         g_free (account_name);
201 }
202
203 static void
204 window_vbox_new (ModestAccountViewWindow *self)
205 {
206 }
207
208
209 static void
210 modest_account_view_window_init (ModestAccountViewWindow *self)
211 {
212         ModestAccountViewWindowPrivate *priv;
213         GtkWidget *main_vbox, *scrollable;
214         GtkWidget *align;
215
216
217         /* Specify a default size */
218         gtk_window_set_default_size (GTK_WINDOW (self), -1, MODEST_DIALOG_WINDOW_MAX_HEIGHT);
219         gtk_dialog_set_has_separator (GTK_DIALOG (self), FALSE);
220         gtk_widget_hide (GTK_DIALOG (self)->action_area);
221
222         
223         /* This seems to be necessary to make the window show at the front with decoration.
224          * If we use property type=GTK_WINDOW_TOPLEVEL instead of the default GTK_WINDOW_POPUP+decoration, 
225          * then the window will be below the others. */
226         gtk_window_set_type_hint (GTK_WINDOW (self),
227                             GDK_WINDOW_TYPE_HINT_DIALOG);
228
229         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
230         priv->acc_removed_handler = 0;
231         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
232         modest_account_view_set_picker_mode (MODEST_ACCOUNT_VIEW (priv->account_view), TRUE);
233
234         main_vbox = GTK_DIALOG (self)->vbox;
235
236         scrollable = modest_toolkit_factory_create_scrollable (modest_runtime_get_toolkit_factory ());
237         gtk_widget_show (scrollable);
238         gtk_container_add (GTK_CONTAINER (scrollable),
239                            GTK_WIDGET (priv->account_view));
240         gtk_widget_show (GTK_WIDGET (priv->account_view));
241
242         g_signal_connect (G_OBJECT (priv->account_view), "row-activated",
243                           G_CALLBACK (on_account_activated), self);
244
245         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
246         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DEFAULT, MODEST_MARGIN_DEFAULT);
247         gtk_widget_show (align);
248
249         gtk_container_add (GTK_CONTAINER (align), scrollable);
250
251         gtk_box_pack_start (GTK_BOX(main_vbox), align, TRUE, TRUE, 0);
252
253 }
254
255 static void
256 on_account_removed (ModestAccountMgr *acc_mgr, 
257                     const gchar *account,
258                     gpointer user_data)
259 {
260         ModestAccountViewWindowPrivate *priv;
261
262         /* If there is no account left then close the window */
263         if (!modest_account_mgr_has_accounts (acc_mgr, TRUE)) {
264                 gboolean ret_value;
265                 g_signal_emit_by_name (G_OBJECT (user_data), "delete-event", NULL, &ret_value);
266         } else {                
267                 /* Re-focus the account list view widget */
268                 priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (user_data);
269                 gtk_widget_grab_focus (GTK_WIDGET (priv->account_view));
270         }
271 }
272
273 GtkWidget*
274 modest_account_view_window_new (void)
275 {
276         GObject *self = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
277         ModestAccountViewWindowPrivate *priv;
278         ModestAccountMgr *account_mgr = modest_runtime_get_account_mgr ();
279
280         /* Add widgets */
281         window_vbox_new (MODEST_ACCOUNT_VIEW_WINDOW (self));
282         
283         gtk_window_set_title (GTK_WINDOW (self), _("mcen_ti_emailsetup_accounts"));
284
285         /* Connect signals */
286         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
287         priv->acc_removed_handler = g_signal_connect (G_OBJECT(account_mgr), "account_removed",
288                                                       G_CALLBACK (on_account_removed), self);
289         
290         return GTK_WIDGET (self);
291 }