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