* Migration to GtkUIManager
[modest] / src / maemo / modest-main-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 <hildon-widgets/hildon-window.h>
31
32 #include <glib/gi18n.h>
33 #include <gtk/gtktreeviewcolumn.h>
34
35 #include <widgets/modest-main-window.h>
36 #include <widgets/modest-edit-msg-window.h>
37 #include <modest-widget-factory.h>
38 #include "modest-widget-memory.h"
39 #include "modest-window-priv.h"
40 #include "modest-icon-factory.h"
41 #include "modest-ui.h"
42 #include "modest-main-window-ui.h"
43 #include "modest-account-view-window.h"
44 #include "modest-account-mgr.h"
45 #include "modest-conf.h"
46
47 #include "modest-tny-platform-factory.h"
48 #include "modest-tny-msg-actions.h"
49 #include "modest-mail-operation.h"
50 #include "modest-icon-names.h"
51
52 /* 'private'/'protected' functions */
53 static void modest_main_window_class_init    (ModestMainWindowClass *klass);
54 static void modest_main_window_init          (ModestMainWindow *obj);
55 static void modest_main_window_finalize      (GObject *obj);
56
57 static void restore_sizes (ModestMainWindow *self);
58 static void save_sizes (ModestMainWindow *self);
59
60 /* list my signals */
61 enum {
62         /* MY_SIGNAL_1, */
63         /* MY_SIGNAL_2, */
64         LAST_SIGNAL
65 };
66
67 typedef struct _ModestMainWindowPrivate ModestMainWindowPrivate;
68 struct _ModestMainWindowPrivate {
69
70         GtkWidget *msg_paned;
71         GtkWidget *main_paned;
72         
73         ModestHeaderView *header_view;
74         ModestFolderView *folder_view;
75         ModestMsgView    *msg_preview;
76 };
77
78
79 #define MODEST_MAIN_WINDOW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
80                                                 MODEST_TYPE_MAIN_WINDOW, \
81                                                 ModestMainWindowPrivate))
82
83 typedef struct _GetMsgAsyncHelper {
84         ModestMainWindowPrivate *main_window_private;
85         guint action;
86         ModestMailOperationReplyType reply_type;
87         ModestMailOperationForwardType forward_type;
88         gchar *from;
89         TnyIterator *iter;
90 } GetMsgAsyncHelper;
91
92 /* globals */
93 static GtkWindowClass *parent_class = NULL;
94
95 /* uncomment the following if you have defined any signals */
96 /* static guint signals[LAST_SIGNAL] = {0}; */
97
98 GType
99 modest_main_window_get_type (void)
100 {
101         static GType my_type = 0;
102         if (!my_type) {
103                 static const GTypeInfo my_info = {
104                         sizeof(ModestMainWindowClass),
105                         NULL,           /* base init */
106                         NULL,           /* base finalize */
107                         (GClassInitFunc) modest_main_window_class_init,
108                         NULL,           /* class finalize */
109                         NULL,           /* class data */
110                         sizeof(ModestMainWindow),
111                         1,              /* n_preallocs */
112                         (GInstanceInitFunc) modest_main_window_init,
113                         NULL
114                 };
115                 my_type = g_type_register_static (MODEST_TYPE_WINDOW,
116                                                   "ModestMainWindow",
117                                                   &my_info, 0);
118         }
119         return my_type;
120 }
121
122 static void
123 modest_main_window_class_init (ModestMainWindowClass *klass)
124 {
125         GObjectClass *gobject_class;
126         gobject_class = (GObjectClass*) klass;
127
128         parent_class            = g_type_class_peek_parent (klass);
129         gobject_class->finalize = modest_main_window_finalize;
130
131         g_type_class_add_private (gobject_class, sizeof(ModestMainWindowPrivate));
132 }
133
134 static void
135 modest_main_window_init (ModestMainWindow *obj)
136 {
137         ModestMainWindowPrivate *priv;
138
139         priv = MODEST_MAIN_WINDOW_GET_PRIVATE(obj);
140
141         priv->msg_paned    = NULL;
142         priv->main_paned   = NULL;      
143         priv->header_view  = NULL;
144         priv->folder_view  = NULL;
145         priv->msg_preview  = NULL;      
146 }
147
148 static void
149 modest_main_window_finalize (GObject *obj)
150 {
151         G_OBJECT_CLASS(parent_class)->finalize (obj);
152 }
153
154
155 static ModestHeaderView*
156 header_view_new (ModestMainWindow *self)
157 {
158         ModestHeaderView *header_view;
159         ModestWindowPrivate *parent_priv;
160         
161         parent_priv = MODEST_WINDOW_GET_PRIVATE(self);
162         header_view = modest_widget_factory_get_header_view (parent_priv->widget_factory);
163         modest_header_view_set_style (header_view, 0); /* don't show headers */
164         
165         return header_view;
166 }
167
168
169 static void
170 restore_sizes (ModestMainWindow *self)
171 {
172         ModestConf *conf;
173         ModestMainWindowPrivate *priv;
174         ModestWindowPrivate *parent_priv;
175         
176         priv = MODEST_MAIN_WINDOW_GET_PRIVATE(self);
177         parent_priv = MODEST_WINDOW_GET_PRIVATE(self);
178
179         conf = modest_tny_platform_factory_get_conf_instance
180                 (MODEST_TNY_PLATFORM_FACTORY(parent_priv->plat_factory));
181
182         modest_widget_memory_restore (conf,G_OBJECT(self),
183                                       "modest-main-window");
184         modest_widget_memory_restore (conf, G_OBJECT(priv->main_paned),
185                                       "modest-main-paned");
186         modest_widget_memory_restore (conf, G_OBJECT(priv->header_view),
187                                       "header-view");
188 }
189
190
191 static void
192 save_sizes (ModestMainWindow *self)
193 {
194         ModestMainWindowPrivate *priv;
195         ModestWindowPrivate *parent_priv;
196         ModestConf *conf;
197         
198         priv = MODEST_MAIN_WINDOW_GET_PRIVATE(self);
199         parent_priv = MODEST_WINDOW_GET_PRIVATE(self);
200
201         conf = modest_tny_platform_factory_get_conf_instance
202                 (MODEST_TNY_PLATFORM_FACTORY (parent_priv->plat_factory));
203         
204         modest_widget_memory_save (conf,G_OBJECT(self), "modest-main-window");
205         modest_widget_memory_save (conf, G_OBJECT(priv->main_paned),
206                                    "modest-main-paned");
207         modest_widget_memory_save (conf, G_OBJECT(priv->header_view), "header-view");
208 }
209
210 static GtkWidget*
211 wrapped_in_scrolled_window (GtkWidget *widget, gboolean needs_viewport)
212 {
213         GtkWidget *win;
214
215         win = gtk_scrolled_window_new (NULL, NULL);
216         gtk_scrolled_window_set_policy
217                 (GTK_SCROLLED_WINDOW (win),GTK_POLICY_NEVER,
218                  GTK_POLICY_AUTOMATIC);
219         
220         if (needs_viewport)
221                 gtk_scrolled_window_add_with_viewport
222                         (GTK_SCROLLED_WINDOW(win), widget);
223         else
224                 gtk_container_add (GTK_CONTAINER(win),
225                                    widget);
226
227         return win;
228 }
229
230
231 static gboolean
232 on_delete_event (GtkWidget *widget, GdkEvent  *event, ModestMainWindow *self)
233 {
234         save_sizes (self);
235         return FALSE;
236 }
237
238
239 ModestWindow*
240 modest_main_window_new (ModestWidgetFactory *widget_factory,
241                         TnyAccountStore *account_store)
242 {
243         GObject *obj;
244         ModestMainWindowPrivate *priv;
245         ModestWindowPrivate *parent_priv;
246         GtkWidget *main_vbox;
247         GtkWidget *status_hbox;
248         GtkWidget *header_win, *folder_win;
249         GtkActionGroup *action_group;
250         GError *error = NULL;
251         
252         g_return_val_if_fail (widget_factory, NULL);
253
254         obj  = g_object_new(MODEST_TYPE_MAIN_WINDOW, NULL);
255         priv = MODEST_MAIN_WINDOW_GET_PRIVATE(obj);
256         parent_priv = MODEST_WINDOW_GET_PRIVATE(obj);
257
258         parent_priv->widget_factory = g_object_ref (widget_factory);
259         parent_priv->account_store = g_object_ref (account_store);
260
261         parent_priv->ui_manager = gtk_ui_manager_new();
262         action_group = gtk_action_group_new ("ModestMainWindowActions");
263
264         /* Add common actions */
265         gtk_action_group_add_actions (action_group,
266                                       modest_action_entries,
267                                       G_N_ELEMENTS (modest_action_entries),
268                                       obj);
269
270         gtk_ui_manager_insert_action_group (parent_priv->ui_manager, action_group, 0);
271         g_object_unref (action_group);
272
273         /* Load the UI definition */
274         gtk_ui_manager_add_ui_from_file (parent_priv->ui_manager, MODEST_UIDIR "modest-ui.xml", &error);
275         if (error != NULL) {
276                 g_warning ("Could not merge modest-ui.xml: %s", error->message);
277                 g_error_free (error);
278                 error = NULL;
279         }
280
281         /* Add accelerators */
282         gtk_window_add_accel_group (GTK_WINDOW (obj), 
283                                     gtk_ui_manager_get_accel_group (parent_priv->ui_manager));
284
285
286         /* Toolbar / Menubar */
287         parent_priv->toolbar = gtk_ui_manager_get_widget (parent_priv->ui_manager, "/ToolBar");
288         gtk_toolbar_set_tooltips (GTK_TOOLBAR (parent_priv->toolbar), TRUE);
289         hildon_window_add_toolbar (HILDON_WINDOW (obj), GTK_TOOLBAR (parent_priv->toolbar));
290         gtk_widget_show_all (parent_priv->toolbar);
291
292         parent_priv->menubar = gtk_ui_manager_get_widget (parent_priv->ui_manager, "/MenuBar");
293         hildon_window_set_menu (HILDON_WINDOW (obj), GTK_MENU (parent_priv->menubar));
294
295         /* widgets from factory */
296         priv->folder_view = modest_widget_factory_get_folder_view (widget_factory);
297         priv->header_view = header_view_new (MODEST_MAIN_WINDOW(obj));
298         priv->msg_preview = modest_widget_factory_get_msg_preview (widget_factory);
299         
300         folder_win = wrapped_in_scrolled_window (GTK_WIDGET(priv->folder_view),
301                                                  FALSE);
302         header_win = wrapped_in_scrolled_window (GTK_WIDGET(priv->header_view),
303                                                  FALSE);                           
304
305         /* paned */
306         priv->main_paned = gtk_hpaned_new ();
307         gtk_paned_add1 (GTK_PANED(priv->main_paned), folder_win);
308         gtk_paned_add2 (GTK_PANED(priv->main_paned), header_win);
309         gtk_widget_show (GTK_WIDGET(priv->header_view));
310         
311         gtk_tree_view_columns_autosize (GTK_TREE_VIEW(priv->header_view));
312
313         
314         /* status bar / progress */
315         status_hbox = gtk_hbox_new (FALSE, 0);
316         gtk_box_pack_start (GTK_BOX(status_hbox),
317                             modest_widget_factory_get_folder_info_label (widget_factory),
318                             FALSE,FALSE, 6);
319         gtk_box_pack_start (GTK_BOX(status_hbox),
320                             modest_widget_factory_get_status_bar(widget_factory),
321                             TRUE, TRUE, 0);
322         gtk_box_pack_start (GTK_BOX(status_hbox),
323                             modest_widget_factory_get_progress_bar(widget_factory),
324                             FALSE, FALSE, 0);
325         gtk_box_pack_start (GTK_BOX(status_hbox),
326                           modest_widget_factory_get_online_toggle(widget_factory),
327                           FALSE, FALSE, 0);
328
329         /* putting it all together... */
330         main_vbox = gtk_vbox_new (FALSE, 6);
331         gtk_box_pack_start (GTK_BOX(main_vbox), priv->main_paned, TRUE, TRUE,0);
332 /*      gtk_box_pack_start (GTK_BOX(main_vbox), parent_priv->toolbar, FALSE, FALSE, 0); */
333         gtk_box_pack_start (GTK_BOX(main_vbox), status_hbox, FALSE, FALSE, 0);
334
335         
336         gtk_container_add (GTK_CONTAINER(obj), main_vbox);
337         restore_sizes (MODEST_MAIN_WINDOW(obj));        
338
339         gtk_window_set_title (GTK_WINDOW(obj), _("Modest"));
340         gtk_window_set_icon  (GTK_WINDOW(obj),
341                               modest_icon_factory_get_icon (MODEST_APP_ICON));
342         
343         gtk_widget_show_all (main_vbox);
344
345         g_signal_connect (G_OBJECT(obj), "delete-event",
346                           G_CALLBACK(on_delete_event), obj);
347         
348         return (ModestWindow *) obj;
349 }