95d7b2ffa147649b1a0583b0432e30cc95d42a6d
[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 #include <modest-runtime.h>
33 #include <modest-account-mgr-helpers.h>
34 #include <widgets/modest-account-view.h>
35 #include <string.h>
36 #include "modest-account-view-window.h"
37 #include "modest-account-assistant.h"
38 #include "modest-tny-platform-factory.h"
39
40 /* 'private'/'protected' functions */
41 static void                            modest_account_view_window_class_init   (ModestAccountViewWindowClass *klass);
42 static void                            modest_account_view_window_init         (ModestAccountViewWindow *obj);
43 static void                            modest_account_view_window_finalize     (GObject *obj);
44
45 /* list my signals */
46 enum {
47         /* MY_SIGNAL_1, */
48         /* MY_SIGNAL_2, */
49         LAST_SIGNAL
50 };
51
52 typedef struct _ModestAccountViewWindowPrivate ModestAccountViewWindowPrivate;
53 struct _ModestAccountViewWindowPrivate {
54         GtkWidget           *add_button;
55         GtkWidget           *edit_button;
56         GtkWidget           *remove_button;
57         GtkWidget           *default_button;
58         ModestAccountView   *account_view;
59 };
60 #define MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
61                                                         MODEST_TYPE_ACCOUNT_VIEW_WINDOW, \
62                                                         ModestAccountViewWindowPrivate))
63 /* globals */
64 static GtkWindowClass *parent_class = NULL;
65
66 /* uncomment the following if you have defined any signals */
67 /* static guint signals[LAST_SIGNAL] = {0}; */
68
69 GType
70 modest_account_view_window_get_type (void)
71 {
72         static GType my_type = 0;
73         if (!my_type) {
74                 static const GTypeInfo my_info = {
75                         sizeof(ModestAccountViewWindowClass),
76                         NULL,           /* base init */
77                         NULL,           /* base finalize */
78                         (GClassInitFunc) modest_account_view_window_class_init,
79                         NULL,           /* class finalize */
80                         NULL,           /* class data */
81                         sizeof(ModestAccountViewWindow),
82                         1,              /* n_preallocs */
83                         (GInstanceInitFunc) modest_account_view_window_init,
84                         NULL
85                 };
86                 my_type = g_type_register_static (GTK_TYPE_WINDOW,
87                                                   "ModestAccountViewWindow",
88                                                   &my_info, 0);
89         }
90         return my_type;
91 }
92
93 static void
94 modest_account_view_window_class_init (ModestAccountViewWindowClass *klass)
95 {
96         GObjectClass *gobject_class;
97         gobject_class = (GObjectClass*) klass;
98
99         parent_class            = g_type_class_peek_parent (klass);
100         gobject_class->finalize = modest_account_view_window_finalize;
101
102         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewWindowPrivate));
103
104         /* signal definitions go here, e.g.: */
105 /*      signals[MY_SIGNAL_1] = */
106 /*              g_signal_new ("my_signal_1",....); */
107 /*      signals[MY_SIGNAL_2] = */
108 /*              g_signal_new ("my_signal_2",....); */
109 /*      etc. */
110 }
111
112 static void
113 modest_account_view_window_init (ModestAccountViewWindow *obj)
114 {
115         /* empty */
116 }
117
118 static void
119 modest_account_view_window_finalize (GObject *obj)
120 {
121         G_OBJECT_CLASS(parent_class)->finalize (obj);
122 }
123
124
125 static void
126 on_selection_changed (GtkTreeSelection *sel, ModestAccountViewWindow *self)
127 {
128         ModestAccountViewWindowPrivate *priv;
129         GtkTreeModel                   *model;
130         GtkTreeIter                    iter;
131         gboolean                       has_selection;
132         const gchar                   *account_name;
133         gchar                         *default_account_name;
134         
135         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
136
137         has_selection =
138                 gtk_tree_selection_get_selected (sel, &model, &iter);
139
140         gtk_widget_set_sensitive (priv->edit_button, has_selection);
141         gtk_widget_set_sensitive (priv->remove_button, has_selection);  
142
143         account_name = modest_account_view_get_selected_account (priv->account_view);
144         default_account_name = modest_account_mgr_get_default_account(
145                 modest_runtime_get_account_mgr());
146         gtk_widget_set_sensitive (priv->default_button,
147                                   default_account_name == NULL || account_name == NULL ||
148                                   strcmp (default_account_name, account_name) != 0);
149         g_free (default_account_name);
150 }
151
152 static void
153 on_remove_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
154 {
155         ModestAccountViewWindowPrivate *priv;
156         ModestAccountMgr *account_mgr;
157         const gchar *account_name;
158         
159         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
160
161         account_mgr = modest_runtime_get_account_mgr(); 
162         account_name = modest_account_view_get_selected_account (priv->account_view);
163
164         if (account_name) {
165                 gboolean removed;
166                 GError *err = NULL;
167                 GtkWidget *dialog;
168                 gchar *txt;
169
170                 dialog = gtk_dialog_new_with_buttons (_("Confirmation dialog"),
171                                                       GTK_WINDOW (self),
172                                                       GTK_DIALOG_MODAL,
173                                                       GTK_STOCK_CANCEL,
174                                                       GTK_RESPONSE_REJECT,
175                                                       GTK_STOCK_OK,
176                                                       GTK_RESPONSE_ACCEPT,
177                                                       NULL);
178                 txt = g_strdup_printf (_("Do you really want to delete the account %s?"), account_name);
179                 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
180                                     gtk_label_new (txt), FALSE, FALSE, 0);
181                 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
182                 g_free (txt);
183
184                 if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) {
185                         /* Remove account. If succeeded it removes also 
186                            the account from the ModestAccountView */
187                         removed = modest_account_mgr_remove_account (account_mgr,
188                                                                      account_name,
189                                                                      FALSE,
190                                                                      &err);
191                         if (removed) {
192                                 /* Show confirmation dialog ??? */
193                         } else {
194                                 /* Show error dialog ??? */
195                                 if (err)
196                                         g_error_free (err);
197                         }
198                 }
199                 gtk_widget_destroy (dialog);
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 *assistant;
213         ModestAccountViewWindowPrivate *priv;
214         
215         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
216         /* FIXME */
217         g_warning (__FUNCTION__);
218         //assistant = modest_account_assistant_new (modest_runtime_get_account_mgr());
219         gtk_window_set_transient_for (GTK_WINDOW(assistant),
220                                       GTK_WINDOW(self));
221         
222         gtk_widget_show (GTK_WIDGET(assistant));
223 }
224
225
226 static void
227 on_default_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
228 {
229         ModestAccountViewWindowPrivate *priv;
230         ModestAccountMgr *account_mgr;
231         const gchar *account_name;
232         
233         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
234
235         account_mgr = modest_runtime_get_account_mgr(); 
236         account_name = modest_account_view_get_selected_account (priv->account_view);
237
238         modest_account_mgr_set_default_account (account_mgr, account_name);
239 }
240
241
242
243 static void
244 on_close_button_clicked (GtkWidget *button, ModestAccountViewWindow *self)
245 {
246         gtk_widget_destroy (GTK_WIDGET(self));
247 }
248
249
250
251 static GtkWidget*
252 button_box_new (ModestAccountViewWindow *self)
253 {
254
255         GtkWidget *button_box;
256         ModestAccountViewWindowPrivate *priv;
257         
258         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
259         
260         button_box   = gtk_vbutton_box_new ();
261         gtk_button_box_set_spacing (GTK_BUTTON_BOX (button_box), 6);
262         gtk_button_box_set_layout (GTK_BUTTON_BOX (button_box), 
263                                    GTK_BUTTONBOX_START);
264         
265         priv->add_button     = gtk_button_new_from_stock(GTK_STOCK_ADD);
266         priv->default_button = gtk_button_new_with_label(_("Make default"));
267         priv->remove_button  = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
268         priv->edit_button    = gtk_button_new_from_stock(GTK_STOCK_EDIT);
269         
270         g_signal_connect (G_OBJECT(priv->add_button), "clicked",
271                           G_CALLBACK(on_add_button_clicked),
272                           self);
273         g_signal_connect (G_OBJECT(priv->remove_button), "clicked",
274                           G_CALLBACK(on_remove_button_clicked),
275                           self);
276         g_signal_connect (G_OBJECT(priv->edit_button), "clicked",
277                           G_CALLBACK(on_edit_button_clicked),
278                           self);
279         g_signal_connect (G_OBJECT(priv->default_button), "clicked",
280                           G_CALLBACK(on_default_button_clicked),
281                           self);
282         
283         gtk_box_pack_start (GTK_BOX(button_box), priv->add_button, FALSE, FALSE,2);
284         gtk_box_pack_start (GTK_BOX(button_box), priv->default_button, FALSE, FALSE,2);
285         gtk_box_pack_start (GTK_BOX(button_box), priv->remove_button, FALSE, FALSE,2);
286         gtk_box_pack_start (GTK_BOX(button_box), priv->edit_button, FALSE, FALSE,2);
287
288         gtk_widget_set_sensitive (priv->edit_button, FALSE);
289         gtk_widget_set_sensitive (priv->remove_button, FALSE);  
290         gtk_widget_set_sensitive (priv->default_button, FALSE);
291         
292         return button_box;
293 }
294
295
296 static GtkWidget*
297 window_vbox_new (ModestAccountViewWindow *self)
298 {
299         ModestAccountViewWindowPrivate *priv;
300         GtkTreeSelection *sel;
301         GtkWidget *main_hbox, *main_vbox, *button_box;
302         GtkWidget *close_button;
303         GtkWidget *close_hbox;
304
305         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(self);
306
307         main_vbox     = gtk_vbox_new (FALSE, 6);
308         main_hbox     = gtk_hbox_new (FALSE, 6);
309         
310         priv->account_view = modest_account_view_new (modest_runtime_get_account_mgr());
311         gtk_widget_set_size_request (GTK_WIDGET(priv->account_view), 300, 400);
312
313         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(priv->account_view));
314         g_signal_connect (G_OBJECT(sel), "changed",  G_CALLBACK(on_selection_changed),
315                           self);
316         
317         button_box = button_box_new (self);
318         
319         gtk_box_pack_start (GTK_BOX(main_hbox), GTK_WIDGET(priv->account_view), TRUE, TRUE, 2);
320         gtk_box_pack_start (GTK_BOX(main_hbox), button_box, FALSE, FALSE,2);
321
322         gtk_box_pack_start (GTK_BOX(main_vbox), main_hbox, TRUE, TRUE, 2);
323
324         close_button = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
325         g_signal_connect (G_OBJECT(close_button), "clicked",
326                           G_CALLBACK(on_close_button_clicked),
327                           self);
328         
329         close_hbox = gtk_hbox_new (FALSE, 2);
330         gtk_box_pack_end (GTK_BOX(close_hbox),
331                           close_button, FALSE, FALSE,2);
332         gtk_box_pack_end (GTK_BOX(main_vbox), close_hbox, FALSE, FALSE,2);
333
334         gtk_widget_show_all (main_vbox);
335         return main_vbox;
336 }
337
338
339 GtkWidget*
340 modest_account_view_window_new (void)
341 {
342         GObject *obj;
343         ModestAccountViewWindowPrivate *priv;
344         
345         obj  = g_object_new(MODEST_TYPE_ACCOUNT_VIEW_WINDOW, NULL);
346         priv = MODEST_ACCOUNT_VIEW_WINDOW_GET_PRIVATE(obj);
347
348         gtk_window_set_resizable (GTK_WINDOW(obj), FALSE);
349         gtk_window_set_title (GTK_WINDOW(obj), _("Accounts"));
350         gtk_window_set_type_hint (GTK_WINDOW(obj), GDK_WINDOW_TYPE_HINT_DIALOG);
351         
352         gtk_window_set_modal (GTK_WINDOW(obj), TRUE);
353                 
354         gtk_container_add (GTK_CONTAINER(obj),
355                            window_vbox_new (MODEST_ACCOUNT_VIEW_WINDOW(obj)));
356                 
357         return GTK_WIDGET(obj);
358 }