0ca4eab03b69d919dc3fcdd7d88b72660428cf86
[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                         modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (dialog), GTK_WINDOW (self));
191                         gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), FALSE);
192                         gtk_widget_show (GTK_WIDGET (dialog));
193                 }
194         }
195         g_free (account_name);
196 }
197
198 static void
199 window_vbox_new (ModestAccountViewWindow *self)
200 {
201 }
202
203
204 static void
205 modest_account_view_window_init (ModestAccountViewWindow *self)
206 {
207         ModestAccountViewWindowPrivate *priv;
208         GtkWidget *main_vbox, *scrollable;
209         GtkWidget *align;
210
211
212         /* Specify a default size */
213         gtk_window_set_default_size (GTK_WINDOW (self), -1, MODEST_DIALOG_WINDOW_MAX_HEIGHT);
214         gtk_dialog_set_has_separator (GTK_DIALOG (self), FALSE);
215         gtk_widget_hide (GTK_DIALOG (self)->action_area);
216
217         
218         /* This seems to be necessary to make the window show at the front with decoration.
219          * If we use property type=GTK_WINDOW_TOPLEVEL instead of the default GTK_WINDOW_POPUP+decoration, 
220          * then the window will be below the others. */
221         gtk_window_set_type_hint (GTK_WINDOW (self),
222                             GDK_WINDOW_TYPE_HINT_DIALOG);
223
224         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
225         priv->acc_removed_handler = 0;
226         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
227         modest_account_view_set_picker_mode (MODEST_ACCOUNT_VIEW (priv->account_view), TRUE);
228
229         main_vbox = GTK_DIALOG (self)->vbox;
230
231         scrollable = modest_toolkit_factory_create_scrollable (modest_runtime_get_toolkit_factory ());
232         gtk_widget_show (scrollable);
233         gtk_container_add (GTK_CONTAINER (scrollable),
234                            GTK_WIDGET (priv->account_view));
235         gtk_widget_show (GTK_WIDGET (priv->account_view));
236
237         g_signal_connect (G_OBJECT (priv->account_view), "row-activated",
238                           G_CALLBACK (on_account_activated), self);
239
240         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
241         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DEFAULT, MODEST_MARGIN_DEFAULT);
242         gtk_widget_show (align);
243
244         gtk_container_add (GTK_CONTAINER (align), scrollable);
245
246         gtk_box_pack_start (GTK_BOX(main_vbox), align, TRUE, TRUE, 0);
247
248 }
249
250 static void
251 on_account_removed (ModestAccountMgr *acc_mgr, 
252                     const gchar *account,
253                     gpointer user_data)
254 {
255         ModestAccountViewWindowPrivate *priv;
256
257         /* If there is no account left then close the window */
258         if (!modest_account_mgr_has_accounts (acc_mgr, TRUE)) {
259                 gboolean ret_value;
260                 g_signal_emit_by_name (G_OBJECT (user_data), "delete-event", NULL, &ret_value);
261         } else {                
262                 /* Re-focus the account list view widget */
263                 priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (user_data);
264                 gtk_widget_grab_focus (GTK_WIDGET (priv->account_view));
265         }
266 }
267
268 GtkWidget*
269 modest_account_view_window_new (void)
270 {
271         GObject *self = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
272         ModestAccountViewWindowPrivate *priv;
273         ModestAccountMgr *account_mgr = modest_runtime_get_account_mgr ();
274
275         /* Add widgets */
276         window_vbox_new (MODEST_ACCOUNT_VIEW_WINDOW (self));
277         
278         gtk_window_set_title (GTK_WINDOW (self), _("mcen_ti_emailsetup_accounts"));
279
280         /* Connect signals */
281         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
282         priv->acc_removed_handler = g_signal_connect (G_OBJECT(account_mgr), "account_removed",
283                                                       G_CALLBACK (on_account_removed), self);
284         
285         return GTK_WIDGET (self);
286 }