Cleaned up some code. Moved the monitor to the header view
[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           *add_button;
57         GtkWidget           *edit_button;
58         GtkWidget           *remove_button;
59         GtkWidget           *default_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 GtkWindowClass *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_WINDOW,
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_init (ModestAccountViewWindow *obj)
116 {
117         /* empty */
118 }
119
120 static void
121 modest_account_view_window_finalize (GObject *obj)
122 {
123         G_OBJECT_CLASS(parent_class)->finalize (obj);
124 }
125
126
127 static void
128 on_selection_changed (GtkTreeSelection *sel, ModestAccountViewWindow *self)
129 {
130         ModestAccountViewWindowPrivate *priv;
131         GtkTreeModel                   *model;
132         GtkTreeIter                     iter;
133         gboolean                        has_selection;
134         gchar                          *account_name;
135         gchar                          *default_account_name;
136         
137         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
138
139         has_selection =
140                 gtk_tree_selection_get_selected (sel, &model, &iter);
141
142         gtk_widget_set_sensitive (priv->edit_button, has_selection);
143         gtk_widget_set_sensitive (priv->remove_button, has_selection);  
144
145         account_name = modest_account_view_get_selected_account (priv->account_view);
146         default_account_name = modest_account_mgr_get_default_account(
147                 modest_runtime_get_account_mgr());
148         gtk_widget_set_sensitive (priv->default_button,
149                                   default_account_name == NULL || account_name == NULL ||
150                                   strcmp (default_account_name, account_name) != 0);
151         g_free (account_name);
152         g_free (default_account_name);
153 }
154
155 static void
156 on_remove_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
157 {
158         ModestAccountViewWindowPrivate *priv;
159         ModestAccountMgr *account_mgr;
160         gchar *account_name;
161         
162         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
163
164         account_mgr = modest_runtime_get_account_mgr(); 
165         account_name = modest_account_view_get_selected_account (priv->account_view);
166
167         if (account_name) {
168                 gboolean removed;
169                 GtkWidget *dialog;
170                 gchar *txt;
171
172                 dialog = gtk_dialog_new_with_buttons (_("Confirmation dialog"),
173                                                       GTK_WINDOW (self),
174                                                       GTK_DIALOG_MODAL,
175                                                       GTK_STOCK_CANCEL,
176                                                       GTK_RESPONSE_REJECT,
177                                                       GTK_STOCK_OK,
178                                                       GTK_RESPONSE_ACCEPT,
179                                                       NULL);
180                 txt = g_strdup_printf (_("Do you really want to delete the account %s?"), account_name);
181                 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
182                                     gtk_label_new (txt), FALSE, FALSE, 0);
183                 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
184                 g_free (txt);
185
186                 if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) {
187                         /* Remove account. If succeeded it removes also 
188                            the account from the ModestAccountView */
189                         removed = modest_account_mgr_remove_account (account_mgr,
190                                                                      account_name,
191                                                                      FALSE);                                             
192                         if (removed) {
193                                 /* Show confirmation dialog ??? */
194                         } else {
195                                 /* Show error dialog ??? */
196                         }
197                 }
198                 gtk_widget_destroy (dialog);
199                 g_free (account_name);
200         }
201 }
202
203 static void
204 on_edit_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
205 {
206         g_message (__FUNCTION__);
207 }
208
209 static void
210 on_add_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
211 {
212         GtkWidget *notebook, *assistant;
213         ModestAccountViewWindowPrivate *priv;
214
215         g_message (__FUNCTION__);
216         return;
217
218         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
219
220         notebook = modest_account_assistant_new (modest_runtime_get_account_mgr());
221         assistant = hildon_wizard_dialog_new (GTK_WINDOW(self), _("Account setup wizard"),
222                                               GTK_NOTEBOOK(notebook));
223         
224         gtk_dialog_run (GTK_DIALOG(assistant));
225 }
226
227
228 static void
229 on_default_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
230 {
231         ModestAccountViewWindowPrivate *priv;
232         ModestAccountMgr *account_mgr;
233         gchar *account_name;
234         
235         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
236
237         account_mgr = modest_runtime_get_account_mgr(); 
238         account_name = modest_account_view_get_selected_account (priv->account_view);
239
240         modest_account_mgr_set_default_account (account_mgr, account_name);
241
242         g_free (account_name);
243 }
244
245
246
247 static void
248 on_close_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
249 {
250         gtk_widget_destroy (GTK_WIDGET(self));
251 }
252
253
254
255 static GtkWidget*
256 button_box_new (ModestAccountViewWindow *self)
257 {
258
259         GtkWidget *button_box;
260         ModestAccountViewWindowPrivate *priv;
261         
262         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
263         
264         button_box   = gtk_vbutton_box_new ();
265         gtk_button_box_set_spacing (GTK_BUTTON_BOX (button_box), 6);
266         gtk_button_box_set_layout (GTK_BUTTON_BOX (button_box), 
267                                    GTK_BUTTONBOX_START);
268         
269         priv->add_button     = gtk_button_new_from_stock(GTK_STOCK_ADD);
270         priv->default_button = gtk_button_new_with_label(_("Make default"));
271         priv->remove_button  = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
272         priv->edit_button    = gtk_button_new_from_stock(GTK_STOCK_EDIT);
273         
274         g_signal_connect (G_OBJECT(priv->add_button), "clicked",
275                           G_CALLBACK(on_add_button_clicked),
276                           self);
277         g_signal_connect (G_OBJECT(priv->remove_button), "clicked",
278                           G_CALLBACK(on_remove_button_clicked),
279                           self);
280         g_signal_connect (G_OBJECT(priv->edit_button), "clicked",
281                           G_CALLBACK(on_edit_button_clicked),
282                           self);
283         g_signal_connect (G_OBJECT(priv->default_button), "clicked",
284                           G_CALLBACK(on_default_button_clicked),
285                           self);
286         
287         gtk_box_pack_start (GTK_BOX(button_box), priv->add_button, FALSE, FALSE,2);
288         gtk_box_pack_start (GTK_BOX(button_box), priv->default_button, FALSE, FALSE,2);
289         gtk_box_pack_start (GTK_BOX(button_box), priv->remove_button, FALSE, FALSE,2);
290         gtk_box_pack_start (GTK_BOX(button_box), priv->edit_button, FALSE, FALSE,2);
291
292         gtk_widget_set_sensitive (priv->edit_button, FALSE);
293         gtk_widget_set_sensitive (priv->remove_button, FALSE);  
294         gtk_widget_set_sensitive (priv->default_button, FALSE);
295         
296         return button_box;
297 }
298
299
300 static GtkWidget*
301 window_vbox_new (ModestAccountViewWindow *self)
302 {
303         ModestAccountViewWindowPrivate *priv;
304         GtkTreeSelection *sel;
305         GtkWidget *main_hbox, *main_vbox, *button_box;
306         GtkWidget *close_button;
307         GtkWidget *close_hbox;
308
309         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
310
311         main_vbox     = gtk_vbox_new (FALSE, 6);
312         main_hbox     = gtk_hbox_new (FALSE, 6);
313         
314         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
315         gtk_widget_set_size_request (GTK_WIDGET(priv->account_view), 300, 400);
316
317         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(priv->account_view));
318         g_signal_connect (G_OBJECT(sel), "changed",  G_CALLBACK(on_selection_changed),
319                           self);
320         
321         button_box = button_box_new (self);
322         
323         gtk_box_pack_start (GTK_BOX(main_hbox), GTK_WIDGET(priv->account_view), TRUE, TRUE, 2);
324         gtk_box_pack_start (GTK_BOX(main_hbox), button_box, FALSE, FALSE,2);
325
326         gtk_box_pack_start (GTK_BOX(main_vbox), main_hbox, TRUE, TRUE, 2);
327
328         close_button = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
329         g_signal_connect (G_OBJECT(close_button), "clicked",
330                           G_CALLBACK(on_close_button_clicked),
331                           self);
332         
333         close_hbox = gtk_hbox_new (FALSE, 2);
334         gtk_box_pack_end (GTK_BOX(close_hbox),
335                           close_button, FALSE, FALSE,2);
336         gtk_box_pack_end (GTK_BOX(main_vbox), close_hbox, FALSE, FALSE,2);
337
338         gtk_widget_show_all (main_vbox);
339         return main_vbox;
340 }
341
342
343 GtkWidget*
344 modest_account_view_window_new (void)
345 {
346         GObject *obj;
347         ModestAccountViewWindowPrivate *priv;
348         
349         obj  = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
350         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(obj);
351
352         gtk_window_set_resizable (GTK_WINDOW(obj), FALSE);
353         gtk_window_set_title (GTK_WINDOW(obj), _("Accounts"));
354         gtk_window_set_type_hint (GTK_WINDOW(obj), GDK_WINDOW_TYPE_HINT_DIALOG);
355         
356         gtk_window_set_modal (GTK_WINDOW(obj), TRUE);
357                 
358         gtk_container_add (GTK_CONTAINER(obj),
359                            window_vbox_new (MODEST_ACCOUNT_VIEW_WINDOW(obj)));
360                 
361         return GTK_WIDGET(obj);
362 }