2007-04-05 Murray Cumming <murrayc@murrayc.com>
[modest] / src / maemo / 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-account-mgr-helpers.h>
38 #include <string.h>
39 #include "modest-account-assistant.h"
40 #include "modest-tny-platform-factory.h"
41
42 /* 'private'/'protected' functions */
43 static void                            modest_account_view_window_class_init   (ModestAccountViewWindowClass *klass);
44 static void                            modest_account_view_window_init         (ModestAccountViewWindow *obj);
45 static void                            modest_account_view_window_finalize     (GObject *obj);
46
47 /* list my signals */
48 enum {
49         /* MY_SIGNAL_1, */
50         /* MY_SIGNAL_2, */
51         LAST_SIGNAL
52 };
53
54 typedef struct _ModestAccountViewWindowPrivate ModestAccountViewWindowPrivate;
55 struct _ModestAccountViewWindowPrivate {
56         GtkWidget           *new_button;
57         GtkWidget           *edit_button;
58         GtkWidget           *delete_button;
59         GtkWidget           *close_button;
60         ModestAccountView   *account_view;
61 };
62 #define MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
63                                                         MODEST_TYPE_ACCOUNT_VIEW_WINDOW, \
64                                                         ModestAccountViewWindowPrivate))
65 /* globals */
66 static GtkDialogClass *parent_class = NULL;
67
68 /* uncomment the following if you have defined any signals */
69 /* static guint signals[LAST_SIGNAL] = {0}; */
70
71 GType
72 modest_account_view_window_get_type (void)
73 {
74         static GType my_type = 0;
75         if (!my_type) {
76                 static const GTypeInfo my_info = {
77                         sizeof(ModestAccountViewWindowClass),
78                         NULL,           /* base init */
79                         NULL,           /* base finalize */
80                         (GClassInitFunc) modest_account_view_window_class_init,
81                         NULL,           /* class finalize */
82                         NULL,           /* class data */
83                         sizeof(ModestAccountViewWindow),
84                         1,              /* n_preallocs */
85                         (GInstanceInitFunc) modest_account_view_window_init,
86                         NULL
87                 };
88                 my_type = g_type_register_static (GTK_TYPE_DIALOG,
89                                                   "ModestAccountViewWindow",
90                                                   &my_info, 0);
91         }
92         return my_type;
93 }
94
95 static void
96 modest_account_view_window_class_init (ModestAccountViewWindowClass *klass)
97 {
98         GObjectClass *gobject_class;
99         gobject_class = (GObjectClass*) klass;
100
101         parent_class            = g_type_class_peek_parent (klass);
102         gobject_class->finalize = modest_account_view_window_finalize;
103
104         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewWindowPrivate));
105
106         /* signal definitions go here, e.g.: */
107 /*      signals[MY_SIGNAL_1] = */
108 /*              g_signal_new ("my_signal_1",....); */
109 /*      signals[MY_SIGNAL_2] = */
110 /*              g_signal_new ("my_signal_2",....); */
111 /*      etc. */
112 }
113
114 static void
115 modest_account_view_window_finalize (GObject *obj)
116 {
117         G_OBJECT_CLASS(parent_class)->finalize (obj);
118 }
119
120
121 static void
122 on_selection_changed (GtkTreeSelection *sel, ModestAccountViewWindow *self)
123 {
124         ModestAccountViewWindowPrivate *priv;
125         GtkTreeModel                   *model;
126         GtkTreeIter                     iter;
127         gboolean                        has_selection;
128         gchar                          *account_name;
129         gchar                          *default_account_name;
130         
131         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
132
133         has_selection =
134                 gtk_tree_selection_get_selected (sel, &model, &iter);
135
136         gtk_widget_set_sensitive (priv->edit_button, has_selection);
137         gtk_widget_set_sensitive (priv->delete_button, has_selection);  
138
139         account_name = modest_account_view_get_selected_account (priv->account_view);
140         default_account_name = modest_account_mgr_get_default_account(
141                 modest_runtime_get_account_mgr());
142
143         g_free (account_name);
144         g_free (default_account_name);
145 }
146
147 static void
148 on_delete_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
149 {
150         ModestAccountViewWindowPrivate *priv;
151         ModestAccountMgr *account_mgr;
152         gchar *account_name;
153         
154         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
155
156         account_mgr = modest_runtime_get_account_mgr(); 
157         account_name = modest_account_view_get_selected_account (priv->account_view);
158
159         if (account_name) {
160                 gboolean removed;
161                 GtkWidget *dialog;
162                 gchar *txt;
163
164                 dialog = gtk_dialog_new_with_buttons (_("Confirmation dialog"),
165                                                       GTK_WINDOW (self),
166                                                       GTK_DIALOG_MODAL,
167                                                       GTK_STOCK_CANCEL,
168                                                       GTK_RESPONSE_REJECT,
169                                                       GTK_STOCK_OK,
170                                                       GTK_RESPONSE_ACCEPT,
171                                                       NULL);
172                 txt = g_strdup_printf (_("Do you really want to delete the account %s?"), account_name);
173                 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
174                                     gtk_label_new (txt), FALSE, FALSE, 0);
175                 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
176                 g_free (txt);
177
178                 if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) {
179                         /* Remove account. If succeeded it removes also 
180                            the account from the ModestAccountView */
181                         removed = modest_account_mgr_remove_account (account_mgr,
182                                                                      account_name,
183                                                                      FALSE);                                             
184                         if (removed) {
185                                 /* Show confirmation dialog ??? */
186                         } else {
187                                 /* Show error dialog ??? */
188                         }
189                 }
190                 gtk_widget_destroy (dialog);
191                 g_free (account_name);
192         }
193 }
194
195 static void
196 on_edit_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
197 {
198         modest_runtime_not_implemented (GTK_WINDOW(self));
199 }
200
201 static void
202 on_new_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
203 {
204         GtkWidget *notebook, *assistant;
205         ModestAccountViewWindowPrivate *priv;
206
207         /* TODO: */
208         modest_runtime_not_implemented (GTK_WINDOW(self));
209         return;
210
211         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
212
213         notebook = modest_account_assistant_new (modest_runtime_get_account_mgr());
214         assistant = hildon_wizard_dialog_new (GTK_WINDOW(self), _("Account setup wizard"),
215                                               GTK_NOTEBOOK(notebook));
216         
217         gtk_dialog_run (GTK_DIALOG(assistant));
218         gtk_widget_destroy (assistant);
219 }
220
221
222 static void
223 on_close_button_clicked (GtkWidget *button, gpointer user_data)
224 {
225         ModestAccountViewWindow *self = MODEST_ACCOUNT_VIEW_WINDOW (user_data);
226
227         gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_OK);
228 }
229
230
231
232 static GtkWidget*
233 button_box_new (ModestAccountViewWindow *self)
234 {
235         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
236         
237         GtkWidget *button_box = gtk_hbutton_box_new ();
238         gtk_button_box_set_spacing (GTK_BUTTON_BOX (button_box), 6);
239         gtk_button_box_set_layout (GTK_BUTTON_BOX (button_box), 
240                                    GTK_BUTTONBOX_START);
241         
242         priv->new_button     = gtk_button_new_from_stock(_("mcen_bd_new"));
243         priv->edit_button = gtk_button_new_with_label(_("mcen_bd_emailsetup_edit"));
244         priv->delete_button  = gtk_button_new_from_stock(_("mcen_bd_emailsetup_delete"));
245         priv->close_button    = gtk_button_new_from_stock(_("mcen_bd_emailsetup_close"));
246         
247         g_signal_connect (G_OBJECT(priv->new_button), "clicked",
248                           G_CALLBACK(on_new_button_clicked),
249                           self);
250         g_signal_connect (G_OBJECT(priv->delete_button), "clicked",
251                           G_CALLBACK(on_delete_button_clicked),
252                           self);
253         g_signal_connect (G_OBJECT(priv->edit_button), "clicked",
254                           G_CALLBACK(on_edit_button_clicked),
255                           self);
256         g_signal_connect (G_OBJECT(priv->close_button), "clicked",
257                           G_CALLBACK(on_close_button_clicked),
258                           self);
259         
260         gtk_box_pack_start (GTK_BOX(button_box), priv->new_button, FALSE, FALSE,2);
261         gtk_box_pack_start (GTK_BOX(button_box), priv->edit_button, FALSE, FALSE,2);
262         gtk_box_pack_start (GTK_BOX(button_box), priv->delete_button, FALSE, FALSE,2);
263         gtk_box_pack_start (GTK_BOX(button_box), priv->close_button, FALSE, FALSE,2);
264
265         gtk_widget_set_sensitive (priv->edit_button, FALSE);
266         gtk_widget_set_sensitive (priv->delete_button, FALSE);  
267
268         gtk_widget_show_all (button_box);
269         return button_box;
270 }
271
272
273 static GtkWidget*
274 window_vbox_new (ModestAccountViewWindow *self)
275 {
276         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
277
278         GtkWidget *main_vbox     = gtk_vbox_new (FALSE, 6);
279         GtkWidget *main_hbox     = gtk_hbox_new (FALSE, 6);
280         
281         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
282         gtk_widget_set_size_request (GTK_WIDGET(priv->account_view), 300, 400);
283         gtk_widget_show (GTK_WIDGET (priv->account_view));
284
285         GtkTreeSelection *sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(priv->account_view));
286         g_signal_connect (G_OBJECT(sel), "changed",  G_CALLBACK(on_selection_changed),
287                           self);
288                           
289         GtkWidget *scrolled_window = gtk_scrolled_window_new (NULL, NULL);
290         gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (priv->account_view));
291         gtk_widget_show (GTK_WIDGET (scrolled_window));
292         
293         gtk_box_pack_start (GTK_BOX(main_hbox), GTK_WIDGET(scrolled_window), TRUE, TRUE, 2);
294         
295         gtk_box_pack_start (GTK_BOX(main_vbox), main_hbox, TRUE, TRUE, 2);
296         gtk_widget_show (GTK_WIDGET (main_hbox));
297         gtk_widget_show (GTK_WIDGET (main_vbox));
298
299         return main_vbox;
300 }
301
302
303 static void
304 modest_account_view_window_init (ModestAccountViewWindow *obj)
305 {
306 /*
307         ModestAccountViewWindowPrivate *priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(obj);
308 */              
309         gtk_box_pack_start (GTK_BOX((GTK_DIALOG (obj)->vbox)), GTK_WIDGET (window_vbox_new (obj)), 
310                 TRUE, TRUE, 2);
311         
312         gtk_box_pack_start (GTK_BOX((GTK_DIALOG (obj)->action_area)), GTK_WIDGET (button_box_new (obj)), 
313                 TRUE, TRUE, 2);
314 }
315
316
317 GtkWidget*
318 modest_account_view_window_new (void)
319 {
320         GObject *obj = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
321         
322         return GTK_WIDGET(obj);
323 }