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