Better attachments detection for text/calendar
[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_activated (GtkTreeView *account_view,
132                       GtkTreePath *path,
133                       GtkTreeViewColumn *column,
134                       ModestAccountViewWindow *self)
135 {
136         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (self);
137
138         gchar* account_name = modest_account_view_get_path_account (priv->account_view, path);
139         if (!account_name)
140                 return;
141
142         /* Check whether any connections are active, and cancel them if
143          * the user wishes.
144          */
145         if (modest_ui_actions_check_for_active_account ((ModestWindow *) self, account_name)) {
146                 ModestAccountProtocol *proto;
147                 ModestProtocolType proto_type;
148
149                 /* Get proto */
150                 proto_type = modest_account_mgr_get_store_protocol (modest_runtime_get_account_mgr (),
151                                                                     account_name);
152                 proto = (ModestAccountProtocol *)
153                         modest_protocol_registry_get_protocol_by_type (modest_runtime_get_protocol_registry (),
154                                                                        proto_type);
155
156                 /* Create and show the dialog */
157                 if (proto && MODEST_IS_ACCOUNT_PROTOCOL (proto)) {
158                         ModestAccountSettingsDialog *dialog =
159                                 modest_account_protocol_get_account_settings_dialog (proto, account_name);
160
161                         if (dialog) {
162                                 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (),
163                                                              (GtkWindow *) dialog,
164                                                              (GtkWindow *) self);
165                                 gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), FALSE);
166                                 gtk_widget_show (GTK_WIDGET (dialog));
167                         }
168                 }
169         }
170         g_free (account_name);
171 }
172
173 static void
174 window_vbox_new (ModestAccountViewWindow *self)
175 {
176 }
177
178
179 static void
180 modest_account_view_window_init (ModestAccountViewWindow *self)
181 {
182         ModestAccountViewWindowPrivate *priv;
183         GtkWidget *main_vbox, *scrollable;
184         GtkWidget *align;
185
186
187         /* Specify a default size */
188         gtk_window_set_default_size (GTK_WINDOW (self), -1, MODEST_DIALOG_WINDOW_MAX_HEIGHT);
189
190 #ifdef MODEST_TOOLKIT_HILDON2
191         /* Specify a default size */
192         gtk_window_set_default_size (GTK_WINDOW (self), -1, MODEST_DIALOG_WINDOW_MAX_HEIGHT);
193
194         gtk_dialog_set_has_separator (GTK_DIALOG (self), FALSE);
195         gtk_widget_hide (GTK_DIALOG (self)->action_area);
196 #else
197         gtk_window_set_default_size (GTK_WINDOW (self), MODEST_DIALOG_WINDOW_MAX_WIDTH, MODEST_DIALOG_WINDOW_MAX_HEIGHT);
198         gtk_dialog_add_button (GTK_DIALOG (self), GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
199 #endif
200
201         
202         /* This seems to be necessary to make the window show at the front with decoration.
203          * If we use property type=GTK_WINDOW_TOPLEVEL instead of the default GTK_WINDOW_POPUP+decoration, 
204          * then the window will be below the others. */
205         gtk_window_set_type_hint (GTK_WINDOW (self),
206                             GDK_WINDOW_TYPE_HINT_DIALOG);
207
208         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
209         priv->acc_removed_handler = 0;
210         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
211         modest_account_view_set_picker_mode (MODEST_ACCOUNT_VIEW (priv->account_view), TRUE);
212
213         main_vbox = GTK_DIALOG (self)->vbox;
214
215         scrollable = modest_toolkit_factory_create_scrollable (modest_runtime_get_toolkit_factory ());
216         gtk_widget_show (scrollable);
217         gtk_container_add (GTK_CONTAINER (scrollable),
218                            GTK_WIDGET (priv->account_view));
219         gtk_widget_show (GTK_WIDGET (priv->account_view));
220
221         g_signal_connect (G_OBJECT (priv->account_view), "row-activated",
222                           G_CALLBACK (on_account_activated), self);
223
224         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
225         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DEFAULT, MODEST_MARGIN_DEFAULT);
226         gtk_widget_show (align);
227
228         gtk_container_add (GTK_CONTAINER (align), scrollable);
229
230         gtk_box_pack_start (GTK_BOX(main_vbox), align, TRUE, TRUE, 0);
231
232 }
233
234 static void
235 on_account_removed (ModestAccountMgr *acc_mgr, 
236                     const gchar *account,
237                     gpointer user_data)
238 {
239         ModestAccountViewWindowPrivate *priv;
240
241         /* If there is no account left then close the window */
242         if (!modest_account_mgr_has_accounts (acc_mgr, TRUE)) {
243                 gboolean ret_value;
244                 g_signal_emit_by_name (G_OBJECT (user_data), "delete-event", NULL, &ret_value);
245         } else {                
246                 /* Re-focus the account list view widget */
247                 priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE (user_data);
248                 gtk_widget_grab_focus (GTK_WIDGET (priv->account_view));
249         }
250 }
251
252 GtkWidget*
253 modest_account_view_window_new (void)
254 {
255         GObject *self = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
256         ModestAccountViewWindowPrivate *priv;
257         ModestAccountMgr *account_mgr = modest_runtime_get_account_mgr ();
258
259         /* Add widgets */
260         window_vbox_new (MODEST_ACCOUNT_VIEW_WINDOW (self));
261         
262         gtk_window_set_title (GTK_WINDOW (self), _("mcen_ti_emailsetup_accounts"));
263
264         /* Connect signals */
265         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
266         priv->acc_removed_handler = g_signal_connect (G_OBJECT(account_mgr), "account_removed",
267                                                       G_CALLBACK (on_account_removed), self);
268         
269         return GTK_WIDGET (self);
270 }