* modest-account-view:
[modest] / src / widgets / modest-account-view.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 "modest-account-view.h"
32 #include <gtk/gtkcellrenderertoggle.h>
33 #include <gtk/gtkcellrenderertext.h>
34 #include <gtk/gtktreeselection.h>
35 #include <gtk/gtkliststore.h>
36
37 /* 'private'/'protected' functions */
38 static void modest_account_view_class_init    (ModestAccountViewClass *klass);
39 static void modest_account_view_init          (ModestAccountView *obj);
40 static void modest_account_view_finalize      (GObject *obj);
41
42
43 enum _AccountViewColumns {
44         ENABLED_COLUMN,
45         NAME_COLUMN,
46         PROTO_COLUMN,
47         N_COLUMNS
48 };
49 typedef enum _AccountViewColumns AccountViewColumns;
50
51
52 /* list my signals */
53 enum {
54         /* MY_SIGNAL_1, */
55         /* MY_SIGNAL_2, */
56         LAST_SIGNAL
57 };
58
59 typedef struct _ModestAccountViewPrivate ModestAccountViewPrivate;
60 struct _ModestAccountViewPrivate {
61         ModestAccountMgr *account_mgr;
62         gulong sig1, sig2;
63         
64 };
65 #define MODEST_ACCOUNT_VIEW_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
66                                                  MODEST_TYPE_ACCOUNT_VIEW, \
67                                                  ModestAccountViewPrivate))
68 /* globals */
69 static GtkTreeViewClass *parent_class = NULL;
70
71 /* uncomment the following if you have defined any signals */
72 /* static guint signals[LAST_SIGNAL] = {0}; */
73
74 GType
75 modest_account_view_get_type (void)
76 {
77         static GType my_type = 0;
78         if (!my_type) {
79                 static const GTypeInfo my_info = {
80                         sizeof(ModestAccountViewClass),
81                         NULL,           /* base init */
82                         NULL,           /* base finalize */
83                         (GClassInitFunc) modest_account_view_class_init,
84                         NULL,           /* class finalize */
85                         NULL,           /* class data */
86                         sizeof(ModestAccountView),
87                         1,              /* n_preallocs */
88                         (GInstanceInitFunc) modest_account_view_init,
89                         NULL
90                 };
91                 my_type = g_type_register_static (GTK_TYPE_TREE_VIEW,
92                                                   "ModestAccountView",
93                                                   &my_info, 0);
94         }
95         return my_type;
96 }
97
98 static void
99 modest_account_view_class_init (ModestAccountViewClass *klass)
100 {
101         GObjectClass *gobject_class;
102         gobject_class = (GObjectClass*) klass;
103
104         parent_class            = g_type_class_peek_parent (klass);
105         gobject_class->finalize = modest_account_view_finalize;
106
107         g_type_class_add_private (gobject_class, sizeof(ModestAccountViewPrivate));
108 }
109
110 static void
111 modest_account_view_init (ModestAccountView *obj)
112 {
113         ModestAccountViewPrivate *priv;
114
115         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(obj);
116         
117         priv->account_mgr = NULL; 
118 }
119
120 static void
121 modest_account_view_finalize (GObject *obj)
122 {
123         ModestAccountViewPrivate *priv;
124
125         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(obj);
126
127         g_signal_handler_disconnect (G_OBJECT(priv->account_mgr),
128                                      priv->sig1);
129         g_signal_handler_disconnect (G_OBJECT(priv->account_mgr),
130                                      priv->sig2);
131
132         if (priv->account_mgr) {
133                 g_object_unref (G_OBJECT(priv->account_mgr));
134                 priv->account_mgr = NULL; 
135         }
136         
137         G_OBJECT_CLASS(parent_class)->finalize (obj);
138 }
139
140
141
142 static void
143 update_account_view (ModestAccountMgr *account_mgr, ModestAccountView *view)
144 {
145         GSList *account_names, *cursor;
146         GtkListStore *model;
147                 
148         model = GTK_LIST_STORE(gtk_tree_view_get_model (GTK_TREE_VIEW(view)));  
149         gtk_list_store_clear (model);
150
151         cursor = account_names =
152                 modest_account_mgr_account_names (account_mgr, NULL);
153
154         while (cursor) {
155                 gchar    *proto = NULL;
156                 gchar    *store, *account_name, *display_name;
157                 gboolean enabled;
158
159                 account_name = (gchar*)cursor->data;
160                 
161                 display_name = modest_account_mgr_get_string (account_mgr,
162                                                               account_name,
163                                                               MODEST_ACCOUNT_DISPLAY_NAME,
164                                                               FALSE, NULL);
165                 /* don't display accounts without stores */
166                 if (store) {
167                         store = modest_account_mgr_get_string (account_mgr,
168                                                                account_name,
169                                                                MODEST_ACCOUNT_STORE_ACCOUNT,
170                                                                FALSE, NULL);
171                         if (store) {
172                                 proto = modest_account_mgr_get_string (account_mgr,
173                                                                        store,
174                                                                        MODEST_ACCOUNT_PROTO,
175                                                                        TRUE, NULL);
176                                 g_free(store);
177                         }
178                 
179                         enabled = modest_account_mgr_account_get_enabled (account_mgr, account_name);
180                         gtk_list_store_insert_with_values (
181                                 model, NULL, 0,
182                                 ENABLED_COLUMN, enabled,
183                                 NAME_COLUMN,  display_name,
184                                 PROTO_COLUMN, proto,
185                                 -1);
186                 }
187                 g_free (display_name);
188                 g_free (account_name);
189                 g_free (proto);
190                 
191                 cursor = cursor->next;
192         }
193         g_slist_free (account_names);
194 }
195
196
197 static void
198 on_account_changed (ModestAccountMgr *account_mgr,
199                     const gchar* account, const gchar* key,
200                     gboolean server_account, ModestAccountView *self)
201 {       
202         update_account_view (account_mgr, self);
203 }
204
205
206 static void
207 on_account_removed (ModestAccountMgr *account_mgr,
208                     const gchar* account, gboolean server_account,
209                     ModestAccountView *self)
210 {
211         on_account_changed (account_mgr, account, NULL, server_account, self);
212 }
213
214
215
216
217 static void
218 on_account_enable_toggled (GtkCellRendererToggle *cell_renderer, gchar *path,
219                            ModestAccountView *self)
220 {
221         GtkTreeIter iter;
222         ModestAccountViewPrivate *priv;
223         GtkTreeModel *model;
224         gchar *account_name;
225         gboolean enabled;
226         
227         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(self);
228         model = gtk_tree_view_get_model (GTK_TREE_VIEW(self));
229         
230         if (!gtk_tree_model_get_iter_from_string (model, &iter, path)) {
231                 g_printerr ("modest: cannot find iterator\n");
232                 return;
233         }
234         
235         gtk_tree_model_get (model, &iter, ENABLED_COLUMN, &enabled,
236                             NAME_COLUMN, &account_name,
237                             -1);
238         
239         /* toggle enabled / disabled */
240         modest_account_mgr_account_set_enabled (priv->account_mgr, account_name, !enabled);
241         g_free (account_name);
242 }
243
244 static void
245 init_view (ModestAccountView *self)
246 {
247         ModestAccountViewPrivate *priv;
248         GtkCellRenderer *renderer;
249         GtkListStore *model;
250         
251         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(self);
252                 
253         model = gtk_list_store_new (3,
254                                     G_TYPE_BOOLEAN, /* checkbox */
255                                     G_TYPE_STRING,  /* account name */
256                                     G_TYPE_STRING); /* account type (pop, imap,...) */
257
258         gtk_tree_view_set_model (GTK_TREE_VIEW(self), GTK_TREE_MODEL(model));
259
260         renderer = gtk_cell_renderer_toggle_new ();
261         g_object_set (G_OBJECT(renderer), "activatable", TRUE,"radio", FALSE, NULL);
262
263         g_signal_connect (G_OBJECT(renderer), "toggled",
264                           G_CALLBACK(on_account_enable_toggled),
265                           self);
266         
267         gtk_tree_view_append_column (GTK_TREE_VIEW(self),
268                                      gtk_tree_view_column_new_with_attributes (
269                                              _("Enabled"), renderer,
270                                              "active", ENABLED_COLUMN, NULL));
271         gtk_tree_view_append_column (GTK_TREE_VIEW(self),
272                                      gtk_tree_view_column_new_with_attributes (
273                                              _("Account"),
274                                              gtk_cell_renderer_text_new (),
275                                              "text", NAME_COLUMN, NULL));
276         gtk_tree_view_append_column (GTK_TREE_VIEW(self),
277                                      gtk_tree_view_column_new_with_attributes (
278                                              _("Type"),
279                                              gtk_cell_renderer_text_new (),
280                                              "text", PROTO_COLUMN, NULL));
281
282         priv->sig1 = g_signal_connect (G_OBJECT(priv->account_mgr),
283                                        "account_removed",
284                                        G_CALLBACK(on_account_removed), self);
285         priv->sig2 = g_signal_connect (G_OBJECT(priv->account_mgr),
286                                        "account_changed",
287                                        G_CALLBACK(on_account_changed), self);
288 }
289
290
291
292 ModestAccountView*
293 modest_account_view_new (ModestAccountMgr *account_mgr)
294 {
295         GObject *obj;
296         ModestAccountViewPrivate *priv;
297         
298         g_return_val_if_fail (account_mgr, NULL);
299         
300         obj  = g_object_new(MODEST_TYPE_ACCOUNT_VIEW, NULL);
301         priv = MODEST_ACCOUNT_VIEW_GET_PRIVATE(obj);
302         
303         g_object_ref (G_OBJECT(account_mgr));
304         priv->account_mgr = account_mgr;
305
306         init_view (MODEST_ACCOUNT_VIEW (obj));
307         update_account_view (account_mgr, MODEST_ACCOUNT_VIEW(obj));
308         
309         return MODEST_ACCOUNT_VIEW(obj);
310 }
311
312 const gchar *
313 modest_account_view_get_selected_account (ModestAccountView *self)
314 {
315         const gchar *account_name = NULL;
316         GtkTreeSelection *sel;
317         GtkTreeModel *model;
318         GtkTreeIter iter;
319
320         g_return_val_if_fail (MODEST_IS_ACCOUNT_VIEW (self), NULL);
321
322         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
323         if (gtk_tree_selection_get_selected (sel, &model, &iter)) {
324                 gtk_tree_model_get (model, &iter,
325                                     NAME_COLUMN, &account_name,
326                                     -1);
327         }
328
329         return account_name;
330 }