* make modest_text_utils_get_display_date return a ptr to
[modest] / src / widgets / modest-folder-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 <string.h>
32 #include <gdk/gdkkeysyms.h>
33 #include <tny-account-store-view.h>
34 #include <tny-gtk-account-list-model.h>
35 #include <tny-gtk-folder-store-tree-model.h>
36 #include <tny-gtk-header-list-model.h>
37 #include <tny-folder.h>
38 #include <tny-folder-store-observer.h>
39 #include <tny-account-store.h>
40 #include <tny-account.h>
41 #include <tny-folder.h>
42 #include <tny-camel-folder.h>
43 #include <tny-simple-list.h>
44 #include <tny-camel-account.h>
45 #include <modest-tny-account.h>
46 #include <modest-tny-folder.h>
47 #include <modest-tny-local-folders-account.h>
48 #include <modest-tny-outbox-account.h>
49 #include <modest-marshal.h>
50 #include <modest-icon-names.h>
51 #include <modest-tny-account-store.h>
52 #include <modest-text-utils.h>
53 #include <modest-runtime.h>
54 #include "modest-folder-view.h"
55 #include <modest-platform.h>
56 #include <modest-widget-memory.h>
57 #include <modest-ui-actions.h>
58 #include "modest-dnd.h"
59 #include "widgets/modest-window.h"
60
61 /* Folder view drag types */
62 const GtkTargetEntry folder_view_drag_types[] =
63 {
64         { "GTK_TREE_MODEL_ROW", GTK_TARGET_SAME_WIDGET, MODEST_FOLDER_ROW },
65         { GTK_TREE_PATH_AS_STRING_LIST, GTK_TARGET_SAME_APP, MODEST_HEADER_ROW }
66 };
67
68 /* 'private'/'protected' functions */
69 static void modest_folder_view_class_init  (ModestFolderViewClass *klass);
70 static void modest_folder_view_init        (ModestFolderView *obj);
71 static void modest_folder_view_finalize    (GObject *obj);
72
73 static void         tny_account_store_view_init (gpointer g, 
74                                                  gpointer iface_data);
75
76 static void         modest_folder_view_set_account_store (TnyAccountStoreView *self, 
77                                                           TnyAccountStore     *account_store);
78
79 static void         on_selection_changed   (GtkTreeSelection *sel, gpointer data);
80
81 static void         on_account_removed     (TnyAccountStore *self, 
82                                             TnyAccount *account,
83                                             gpointer user_data);
84
85 static void         on_account_inserted    (TnyAccountStore *self, 
86                                             TnyAccount *account,
87                                             gpointer user_data);
88
89 static void         on_account_changed    (TnyAccountStore *self, 
90                                             TnyAccount *account,
91                                             gpointer user_data);
92
93 static gint         cmp_rows               (GtkTreeModel *tree_model, 
94                                             GtkTreeIter *iter1, 
95                                             GtkTreeIter *iter2,
96                                             gpointer user_data);
97
98 static gboolean     filter_row             (GtkTreeModel *model,
99                                             GtkTreeIter *iter,
100                                             gpointer data);
101
102 static gboolean     on_key_pressed         (GtkWidget *self,
103                                             GdkEventKey *event,
104                                             gpointer user_data);
105
106 static void         on_configuration_key_changed  (ModestConf* conf, 
107                                                    const gchar *key, 
108                                                    ModestConfEvent event,
109                                                    ModestConfNotificationId notification_id, 
110                                                    ModestFolderView *self);
111
112 /* DnD functions */
113 static void         on_drag_data_get       (GtkWidget *widget, 
114                                             GdkDragContext *context, 
115                                             GtkSelectionData *selection_data, 
116                                             guint info, 
117                                             guint time, 
118                                             gpointer data);
119
120 static void         on_drag_data_received  (GtkWidget *widget, 
121                                             GdkDragContext *context, 
122                                             gint x, 
123                                             gint y, 
124                                             GtkSelectionData *selection_data, 
125                                             guint info, 
126                                             guint time, 
127                                             gpointer data);
128
129 static gboolean     on_drag_motion         (GtkWidget      *widget,
130                                             GdkDragContext *context,
131                                             gint            x,
132                                             gint            y,
133                                             guint           time,
134                                             gpointer        user_data);
135
136 static void         expand_root_items (ModestFolderView *self);
137
138 static gint         expand_row_timeout     (gpointer data);
139
140 static void         setup_drag_and_drop    (GtkTreeView *self);
141
142 static gboolean     _clipboard_set_selected_data (ModestFolderView *folder_view, 
143                                                   gboolean delete);
144
145 static void         _clear_hidding_filter (ModestFolderView *folder_view);
146
147 static void         on_row_inserted_maybe_select_folder (GtkTreeModel     *tree_model, 
148                                                          GtkTreePath      *path, 
149                                                          GtkTreeIter      *iter,
150                                                          ModestFolderView *self);
151
152 static void         on_display_name_changed (ModestAccountMgr *self, 
153                                              const gchar *account,
154                                              gpointer user_data);
155
156 enum {
157         FOLDER_SELECTION_CHANGED_SIGNAL,
158         FOLDER_DISPLAY_NAME_CHANGED_SIGNAL,
159         LAST_SIGNAL
160 };
161
162 typedef struct _ModestFolderViewPrivate ModestFolderViewPrivate;
163 struct _ModestFolderViewPrivate {
164         TnyAccountStore      *account_store;
165         TnyFolderStore       *cur_folder_store;
166
167         TnyFolder            *folder_to_select; /* folder to select after the next update */
168
169         gulong                changed_signal;
170         gulong                account_inserted_signal;
171         gulong                account_removed_signal;
172         gulong                account_changed_signal;
173         gulong                conf_key_signal;
174         gulong                display_name_changed_signal;
175         
176         /* not unref this object, its a singlenton */
177         ModestEmailClipboard *clipboard;
178
179         /* Filter tree model */
180         gchar **hidding_ids;
181         guint n_selected;
182
183         TnyFolderStoreQuery  *query;
184         guint                 timer_expander;
185
186         gchar                *local_account_name;
187         gchar                *visible_account_id;
188         ModestFolderViewStyle style;
189
190         gboolean  reselect; /* we use this to force a reselection of the INBOX */
191         gboolean  show_non_move;
192         gboolean  reexpand; /* next time we expose, we'll expand all root folders */
193 };
194 #define MODEST_FOLDER_VIEW_GET_PRIVATE(o)                       \
195         (G_TYPE_INSTANCE_GET_PRIVATE((o),                       \
196                                      MODEST_TYPE_FOLDER_VIEW,   \
197                                      ModestFolderViewPrivate))
198 /* globals */
199 static GObjectClass *parent_class = NULL;
200
201 static guint signals[LAST_SIGNAL] = {0}; 
202
203 GType
204 modest_folder_view_get_type (void)
205 {
206         static GType my_type = 0;
207         if (!my_type) {
208                 static const GTypeInfo my_info = {
209                         sizeof(ModestFolderViewClass),
210                         NULL,           /* base init */
211                         NULL,           /* base finalize */
212                         (GClassInitFunc) modest_folder_view_class_init,
213                         NULL,           /* class finalize */
214                         NULL,           /* class data */
215                         sizeof(ModestFolderView),
216                         1,              /* n_preallocs */
217                         (GInstanceInitFunc) modest_folder_view_init,
218                         NULL
219                 };
220
221                 static const GInterfaceInfo tny_account_store_view_info = {
222                         (GInterfaceInitFunc) tny_account_store_view_init, /* interface_init */
223                         NULL,         /* interface_finalize */
224                         NULL          /* interface_data */
225                 };
226
227                                 
228                 my_type = g_type_register_static (GTK_TYPE_TREE_VIEW,
229                                                   "ModestFolderView",
230                                                   &my_info, 0);
231
232                 g_type_add_interface_static (my_type, 
233                                              TNY_TYPE_ACCOUNT_STORE_VIEW, 
234                                              &tny_account_store_view_info);
235         }
236         return my_type;
237 }
238
239 static void
240 modest_folder_view_class_init (ModestFolderViewClass *klass)
241 {
242         GObjectClass *gobject_class;
243         gobject_class = (GObjectClass*) klass;
244
245         parent_class            = g_type_class_peek_parent (klass);
246         gobject_class->finalize = modest_folder_view_finalize;
247
248         g_type_class_add_private (gobject_class,
249                                   sizeof(ModestFolderViewPrivate));
250         
251         signals[FOLDER_SELECTION_CHANGED_SIGNAL] = 
252                 g_signal_new ("folder_selection_changed",
253                               G_TYPE_FROM_CLASS (gobject_class),
254                               G_SIGNAL_RUN_FIRST,
255                               G_STRUCT_OFFSET (ModestFolderViewClass,
256                                                folder_selection_changed),
257                               NULL, NULL,
258                               modest_marshal_VOID__POINTER_BOOLEAN,
259                               G_TYPE_NONE, 2, G_TYPE_POINTER, G_TYPE_BOOLEAN);
260
261         /*
262          * This signal is emitted whenever the currently selected
263          * folder display name is computed. Note that the name could
264          * be different to the folder name, because we could append
265          * the unread messages count to the folder name to build the
266          * folder display name
267          */
268         signals[FOLDER_DISPLAY_NAME_CHANGED_SIGNAL] = 
269                 g_signal_new ("folder-display-name-changed",
270                               G_TYPE_FROM_CLASS (gobject_class),
271                               G_SIGNAL_RUN_FIRST,
272                               G_STRUCT_OFFSET (ModestFolderViewClass,
273                                                folder_display_name_changed),
274                               NULL, NULL,
275                               g_cclosure_marshal_VOID__STRING,
276                               G_TYPE_NONE, 1, G_TYPE_STRING);
277 }
278
279 /* Simplify checks for NULLs: */
280 static gboolean
281 strings_are_equal (const gchar *a, const gchar *b)
282 {
283         if (!a && !b)
284                 return TRUE;
285         if (a && b)
286         {
287                 return (strcmp (a, b) == 0);
288         }
289         else
290                 return FALSE;
291 }
292
293 static gboolean
294 on_model_foreach_set_name(GtkTreeModel *model, GtkTreePath *path,  GtkTreeIter *iter, gpointer data)
295 {
296         GObject *instance = NULL;
297         
298         gtk_tree_model_get (model, iter,
299                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &instance,
300                             -1);
301                             
302         if (!instance)
303                 return FALSE; /* keep walking */
304                         
305         if (!TNY_IS_ACCOUNT (instance)) {
306                 g_object_unref (instance);
307                 return FALSE; /* keep walking */        
308         }    
309         
310         /* Check if this is the looked-for account: */
311         TnyAccount *this_account = TNY_ACCOUNT (instance);
312         TnyAccount *account = TNY_ACCOUNT (data);
313         
314         const gchar *this_account_id = tny_account_get_id(this_account);
315         const gchar *account_id = tny_account_get_id(account);
316         g_object_unref (instance);
317         instance = NULL;
318
319         /* printf ("DEBUG: %s: this_account_id=%s, account_id=%s\n", __FUNCTION__, this_account_id, account_id); */
320         if (strings_are_equal(this_account_id, account_id)) {
321                 /* Tell the model that the data has changed, so that
322                  * it calls the cell_data_func callbacks again: */
323                 /* TODO: This does not seem to actually cause the new string to be shown: */
324                 gtk_tree_model_row_changed (model, path, iter);
325                 
326                 return TRUE; /* stop walking */
327         }
328         
329         return FALSE; /* keep walking */
330 }
331
332 typedef struct 
333 {
334         ModestFolderView *self;
335         gchar *previous_name;
336 } GetMmcAccountNameData;
337
338 static void
339 on_get_mmc_account_name (TnyStoreAccount* account, gpointer user_data)
340 {
341         /* printf ("DEBU1G: %s: account name=%s\n", __FUNCTION__, tny_account_get_name (TNY_ACCOUNT(account))); */
342
343         GetMmcAccountNameData *data = (GetMmcAccountNameData*)user_data;
344         
345         if (!strings_are_equal (
346                 tny_account_get_name(TNY_ACCOUNT(account)), 
347                 data->previous_name)) {
348         
349                 /* Tell the model that the data has changed, so that 
350                  * it calls the cell_data_func callbacks again: */
351                 ModestFolderView *self = data->self;
352                 GtkTreeModel *model = gtk_tree_view_get_model (GTK_TREE_VIEW (self));
353                 if (model)
354                         gtk_tree_model_foreach(model, on_model_foreach_set_name, account);
355         }
356
357         g_free (data->previous_name);
358         g_slice_free (GetMmcAccountNameData, data);
359 }
360
361 static void
362 text_cell_data  (GtkTreeViewColumn *column,  
363                  GtkCellRenderer *renderer,
364                  GtkTreeModel *tree_model,  
365                  GtkTreeIter *iter,  
366                  gpointer data)
367 {
368         ModestFolderViewPrivate *priv;
369         GObject *rendobj;
370         gchar *fname = NULL;
371         TnyFolderType type = TNY_FOLDER_TYPE_UNKNOWN;
372         GObject *instance = NULL;
373
374         g_return_if_fail (column);
375         g_return_if_fail (tree_model);
376         g_return_if_fail (iter != NULL);
377
378         gtk_tree_model_get (tree_model, iter,
379                             TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN, &fname,
380                             TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &type,
381                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &instance,
382                             -1);
383         rendobj = G_OBJECT(renderer);
384
385         if (!fname)
386                 return;
387
388         if (!instance) {
389                 g_free (fname);
390                 return;
391         }
392
393         ModestFolderView *self = MODEST_FOLDER_VIEW (data);
394         priv =  MODEST_FOLDER_VIEW_GET_PRIVATE (self);
395         
396         gchar *item_name = NULL;
397         gint item_weight = 400;
398         
399         if (type != TNY_FOLDER_TYPE_ROOT) {
400                 gint number = 0;
401                 
402                 if (modest_tny_folder_is_local_folder (TNY_FOLDER (instance)) ||
403                     modest_tny_folder_is_memory_card_folder (TNY_FOLDER (instance))) {
404                         type = modest_tny_folder_get_local_or_mmc_folder_type (TNY_FOLDER (instance));
405                         if (type != TNY_FOLDER_TYPE_UNKNOWN) {
406                                 g_free (fname);
407                                 fname = g_strdup (modest_local_folder_info_get_type_display_name (type));
408                         }
409                 }
410
411                 /* note: we cannot reliably get the counts from the tree model, we need
412                  * to use explicit calls on tny_folder for some reason.
413                  */
414                 /* Select the number to show: the unread or unsent messages. in case of outbox/drafts, show all */
415                 if ((type == TNY_FOLDER_TYPE_DRAFTS) ||
416                     (type == TNY_FOLDER_TYPE_OUTBOX) ||
417                     (type == TNY_FOLDER_TYPE_MERGE)) /* _OUTBOX actually returns _MERGE... */
418                         number = tny_folder_get_all_count (TNY_FOLDER(instance));
419                 else
420                         number = tny_folder_get_unread_count (TNY_FOLDER(instance));
421                                                                 
422                 /* Use bold font style if there are unread or unset messages */
423                 if (number > 0) {
424                         item_name = g_strdup_printf ("%s (%d)", fname, number);
425                         item_weight = 800;
426                 } else {
427                         item_name = g_strdup (fname);
428                         item_weight = 400;
429                 }
430                 
431         } else if (TNY_IS_ACCOUNT (instance)) {
432                 /* If it's a server account */
433                 if (modest_tny_account_is_virtual_local_folders (TNY_ACCOUNT (instance))) {
434                         item_name = g_strdup (priv->local_account_name);
435                         item_weight = 800;
436                 } else if (modest_tny_account_is_memory_card_account (TNY_ACCOUNT (instance))) {
437                         /* fname is only correct when the items are first 
438                          * added to the model, not when the account is 
439                          * changed later, so get the name from the account
440                          * instance: */
441                         item_name = g_strdup (tny_account_get_name (TNY_ACCOUNT (instance)));
442                         item_weight = 800;
443                 } else {
444                         item_name = g_strdup (fname);
445                         item_weight = 800;
446                 }
447         }
448         
449         if (!item_name)
450                 item_name = g_strdup ("unknown");
451                         
452         if (item_name && item_weight) {
453                 /* Set the name in the treeview cell: */
454                 g_object_set (rendobj,"text", item_name, "weight", item_weight, NULL);
455                 
456                 /* Notify display name observers */
457                 /* TODO: What listens for this signal, and how can it use only the new name? */
458                 if (G_OBJECT (priv->cur_folder_store) == instance) {
459                         g_signal_emit (G_OBJECT(self),
460                                                signals[FOLDER_DISPLAY_NAME_CHANGED_SIGNAL], 0,
461                                                item_name);
462                 }
463                 g_free (item_name);
464                 
465         }
466         
467         /* If it is a Memory card account, make sure that we have the correct name.
468          * This function will be trigerred again when the name has been retrieved: */
469         if (TNY_IS_STORE_ACCOUNT (instance) && 
470                 modest_tny_account_is_memory_card_account (TNY_ACCOUNT (instance))) {
471
472                 /* Get the account name asynchronously: */
473                 GetMmcAccountNameData *callback_data = 
474                         g_slice_new0(GetMmcAccountNameData);
475                 callback_data->self = self;
476
477                 const gchar *name = tny_account_get_name (TNY_ACCOUNT(instance));
478                 if (name)
479                         callback_data->previous_name = g_strdup (name); 
480
481                 modest_tny_account_get_mmc_account_name (TNY_STORE_ACCOUNT (instance), 
482                                                          on_get_mmc_account_name, callback_data);
483         }
484                         
485         g_object_unref (G_OBJECT (instance));
486         g_free (fname);
487 }
488
489 static void
490 icon_cell_data  (GtkTreeViewColumn *column,  GtkCellRenderer *renderer,
491                  GtkTreeModel *tree_model,  GtkTreeIter *iter, gpointer data)
492 {
493         GObject *rendobj = NULL, *instance = NULL;
494         GdkPixbuf *pixbuf = NULL;
495         TnyFolderType type = TNY_FOLDER_TYPE_UNKNOWN;
496         const gchar *account_id = NULL;
497         gboolean has_children;
498
499         rendobj = G_OBJECT(renderer);
500         gtk_tree_model_get (tree_model, iter,
501                             TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &type,
502                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &instance,
503                             -1);
504         has_children = gtk_tree_model_iter_has_child (tree_model, iter);
505
506         if (!instance) 
507                 return;
508
509         /* MERGE is not needed anymore as the folder now has the correct type jschmid */
510         /* We include the MERGE type here because it's used to create
511            the local OUTBOX folder */
512         if (type == TNY_FOLDER_TYPE_NORMAL || 
513             type == TNY_FOLDER_TYPE_UNKNOWN) {
514                 type = modest_tny_folder_guess_folder_type (TNY_FOLDER (instance));             
515         }
516
517         switch (type) {
518         case TNY_FOLDER_TYPE_INVALID:
519                 g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
520                 break;
521                 
522         case TNY_FOLDER_TYPE_ROOT:
523                 if (TNY_IS_ACCOUNT (instance)) {
524                         
525                         if (modest_tny_account_is_virtual_local_folders (
526                                 TNY_ACCOUNT (instance))) {
527                                 pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_LOCAL_FOLDERS);
528                         }
529                         else {
530                                 account_id = tny_account_get_id (TNY_ACCOUNT (instance));
531                                 
532                                 if (!strcmp (account_id, MODEST_MMC_ACCOUNT_ID))
533                                         pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_MMC);
534                                 else
535                                         pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_ACCOUNT);
536                         }
537                 }
538                 break;
539         case TNY_FOLDER_TYPE_INBOX:
540             pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_INBOX);
541             break;
542         case TNY_FOLDER_TYPE_OUTBOX:
543                 pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_OUTBOX);
544                 break;
545         case TNY_FOLDER_TYPE_JUNK:
546                 pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_JUNK);
547                 break;
548         case TNY_FOLDER_TYPE_SENT:
549                 pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_SENT);
550                 break;
551         case TNY_FOLDER_TYPE_TRASH:
552                 pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_TRASH);
553                 break;
554         case TNY_FOLDER_TYPE_DRAFTS:
555                 pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_DRAFTS);
556                 break;
557         case TNY_FOLDER_TYPE_NORMAL:
558         default:
559                 pixbuf = modest_platform_get_icon (MODEST_FOLDER_ICON_NORMAL);
560                 break;
561         }
562         
563         g_object_unref (G_OBJECT (instance));
564
565         /* Set pixbuf */
566         g_object_set (rendobj, "pixbuf", pixbuf, NULL);
567         if (has_children && (pixbuf != NULL)) {
568                 GdkPixbuf *open_pixbuf, *closed_pixbuf;
569                 GdkPixbuf *open_emblem, *closed_emblem;
570                 open_pixbuf = gdk_pixbuf_copy (pixbuf);
571                 closed_pixbuf = gdk_pixbuf_copy (pixbuf);
572                 open_emblem = modest_platform_get_icon ("qgn_list_gene_fldr_exp");
573                 closed_emblem = modest_platform_get_icon ("qgn_list_gene_fldr_clp");
574
575                 if (open_emblem) {
576                         gdk_pixbuf_composite (open_emblem, open_pixbuf, 0, 0, 
577                                               MIN (gdk_pixbuf_get_width (open_emblem), 
578                                                    gdk_pixbuf_get_width (open_pixbuf)),
579                                               MIN (gdk_pixbuf_get_height (open_emblem), 
580                                                    gdk_pixbuf_get_height (open_pixbuf)),
581                                               0, 0, 1, 1, GDK_INTERP_NEAREST, 255);
582                         g_object_set (rendobj, "pixbuf-expander-open", open_pixbuf, NULL);
583                         g_object_unref (open_emblem);
584                 }
585                 if (closed_emblem) {
586                         gdk_pixbuf_composite (closed_emblem, closed_pixbuf, 0, 0, 
587                                               MIN (gdk_pixbuf_get_width (closed_emblem), 
588                                                    gdk_pixbuf_get_width (closed_pixbuf)),
589                                               MIN (gdk_pixbuf_get_height (closed_emblem), 
590                                                    gdk_pixbuf_get_height (closed_pixbuf)),
591                                               0, 0, 1, 1, GDK_INTERP_NEAREST, 255);
592                         g_object_set (rendobj, "pixbuf-expander-closed", closed_pixbuf, NULL);
593                         g_object_unref (closed_emblem);
594                 }
595                 if (closed_pixbuf)
596                         g_object_unref (closed_pixbuf);
597                 if (open_pixbuf)
598                         g_object_unref (open_pixbuf);
599         }
600
601         if (pixbuf != NULL)
602                 g_object_unref (pixbuf);
603 }
604
605 static void
606 add_columns (GtkWidget *treeview)
607 {
608         GtkTreeViewColumn *column;
609         GtkCellRenderer *renderer;
610         GtkTreeSelection *sel;
611
612         /* Create column */
613         column = gtk_tree_view_column_new ();   
614         
615         /* Set icon and text render function */
616         renderer = gtk_cell_renderer_pixbuf_new();
617         gtk_tree_view_column_pack_start (column, renderer, FALSE);
618         gtk_tree_view_column_set_cell_data_func(column, renderer,
619                                                 icon_cell_data, treeview, NULL);
620         
621         renderer = gtk_cell_renderer_text_new();
622         g_object_set (renderer, "ellipsize", PANGO_ELLIPSIZE_END, 
623                         "ellipsize-set", TRUE, NULL);
624         gtk_tree_view_column_pack_start (column, renderer, TRUE);
625         gtk_tree_view_column_set_cell_data_func(column, renderer,
626                                                 text_cell_data, treeview, NULL);
627         
628         /* Set selection mode */
629         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(treeview));
630         gtk_tree_selection_set_mode (sel, GTK_SELECTION_SINGLE);
631
632         /* Set treeview appearance */
633         gtk_tree_view_column_set_spacing (column, 2);
634         gtk_tree_view_column_set_resizable (column, TRUE);
635         gtk_tree_view_column_set_fixed_width (column, TRUE);            
636         gtk_tree_view_set_headers_clickable (GTK_TREE_VIEW(treeview), FALSE);
637         gtk_tree_view_set_enable_search (GTK_TREE_VIEW(treeview), FALSE);
638
639         /* Add column */
640         gtk_tree_view_append_column (GTK_TREE_VIEW(treeview),column);
641 }
642
643 static void
644 modest_folder_view_init (ModestFolderView *obj)
645 {
646         ModestFolderViewPrivate *priv;
647         ModestConf *conf;
648         
649         priv =  MODEST_FOLDER_VIEW_GET_PRIVATE(obj);
650         
651         priv->timer_expander = 0;
652         priv->account_store  = NULL;
653         priv->query          = NULL;
654         priv->style          = MODEST_FOLDER_VIEW_STYLE_SHOW_ALL;
655         priv->cur_folder_store   = NULL;
656         priv->visible_account_id = NULL;
657         priv->folder_to_select = NULL;
658
659         priv->reexpand = TRUE;
660
661         /* Initialize the local account name */
662         conf = modest_runtime_get_conf();
663         priv->local_account_name = modest_conf_get_string (conf, MODEST_CONF_DEVICE_NAME, NULL);
664
665         /* Init email clipboard */
666         priv->clipboard = modest_runtime_get_email_clipboard ();
667         priv->hidding_ids = NULL;
668         priv->n_selected = 0;
669         priv->reselect = FALSE;
670         priv->show_non_move = TRUE;
671
672         /* Build treeview */
673         add_columns (GTK_WIDGET (obj));
674
675         /* Setup drag and drop */
676         setup_drag_and_drop (GTK_TREE_VIEW(obj));
677
678         /* Connect signals */
679         g_signal_connect (G_OBJECT (obj), 
680                           "key-press-event", 
681                           G_CALLBACK (on_key_pressed), NULL);
682
683         priv->display_name_changed_signal = 
684                 g_signal_connect (modest_runtime_get_account_mgr (),
685                                   "display_name_changed",
686                                   G_CALLBACK (on_display_name_changed),
687                                   obj);
688
689         /*
690          * Track changes in the local account name (in the device it
691          * will be the device name)
692          */
693         priv->conf_key_signal = g_signal_connect (G_OBJECT(conf), 
694                                                   "key_changed",
695                                                   G_CALLBACK(on_configuration_key_changed), 
696                                                   obj);
697 }
698
699 static void
700 tny_account_store_view_init (gpointer g, gpointer iface_data)
701 {
702         TnyAccountStoreViewIface *klass = (TnyAccountStoreViewIface *)g;
703
704         klass->set_account_store_func = modest_folder_view_set_account_store;
705
706         return;
707 }
708
709 static void
710 modest_folder_view_finalize (GObject *obj)
711 {
712         ModestFolderViewPrivate *priv;
713         GtkTreeSelection    *sel;
714         
715         g_return_if_fail (obj);
716         
717         priv =  MODEST_FOLDER_VIEW_GET_PRIVATE(obj);
718
719         if (priv->timer_expander != 0) {
720                 g_source_remove (priv->timer_expander);
721                 priv->timer_expander = 0;
722         }
723
724         if (priv->account_store) {
725                 g_signal_handler_disconnect (G_OBJECT(priv->account_store),
726                                              priv->account_inserted_signal);
727                 g_signal_handler_disconnect (G_OBJECT(priv->account_store),
728                                              priv->account_removed_signal);
729                 g_signal_handler_disconnect (G_OBJECT(priv->account_store),
730                                              priv->account_changed_signal);
731                 g_object_unref (G_OBJECT(priv->account_store));
732                 priv->account_store = NULL;
733         }
734
735         if (priv->query) {
736                 g_object_unref (G_OBJECT (priv->query));
737                 priv->query = NULL;
738         }
739
740 /*      modest_folder_view_disable_next_folder_selection (MODEST_FOLDER_VIEW(obj)); */
741         if (priv->folder_to_select) {
742                 g_object_unref (G_OBJECT(priv->folder_to_select));
743                 priv->folder_to_select = NULL;
744         }
745    
746         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(obj));
747         if (sel)
748                 g_signal_handler_disconnect (G_OBJECT(sel), priv->changed_signal);
749
750         g_free (priv->local_account_name);
751         g_free (priv->visible_account_id);
752         
753         if (priv->conf_key_signal) {
754                 g_signal_handler_disconnect (modest_runtime_get_conf (),
755                                              priv->conf_key_signal);
756                 priv->conf_key_signal = 0;
757         }
758
759         if (priv->cur_folder_store) {
760                 if (TNY_IS_FOLDER(priv->cur_folder_store))
761                         tny_folder_sync (TNY_FOLDER(priv->cur_folder_store), FALSE, NULL);
762                         /* FALSE --> expunge the message */
763
764                 g_object_unref (priv->cur_folder_store);
765                 priv->cur_folder_store = NULL;
766         }
767
768         /* Clear hidding array created by cut operation */
769         _clear_hidding_filter (MODEST_FOLDER_VIEW (obj));
770
771         G_OBJECT_CLASS(parent_class)->finalize (obj);
772 }
773
774
775 static void
776 modest_folder_view_set_account_store (TnyAccountStoreView *self, TnyAccountStore *account_store)
777 {
778         ModestFolderViewPrivate *priv;
779         TnyDevice *device;
780
781         g_return_if_fail (MODEST_IS_FOLDER_VIEW (self));
782         g_return_if_fail (TNY_IS_ACCOUNT_STORE (account_store));
783
784         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (self);
785         device = tny_account_store_get_device (account_store);
786
787         if (G_UNLIKELY (priv->account_store)) {
788
789                 if (g_signal_handler_is_connected (G_OBJECT (priv->account_store),
790                                                    priv->account_inserted_signal))
791                         g_signal_handler_disconnect (G_OBJECT (priv->account_store),
792                                                      priv->account_inserted_signal);
793                 if (g_signal_handler_is_connected (G_OBJECT (priv->account_store), 
794                                                    priv->account_removed_signal))
795                         g_signal_handler_disconnect (G_OBJECT (priv->account_store), 
796                                                      priv->account_removed_signal);
797                 if (g_signal_handler_is_connected (G_OBJECT (priv->account_store), 
798                                                    priv->account_changed_signal))
799                         g_signal_handler_disconnect (G_OBJECT (priv->account_store), 
800                                                      priv->account_changed_signal);
801                 g_object_unref (G_OBJECT (priv->account_store));
802         }
803
804         priv->account_store = g_object_ref (G_OBJECT (account_store));
805
806         priv->account_removed_signal = 
807                 g_signal_connect (G_OBJECT(account_store), "account_removed",
808                                   G_CALLBACK (on_account_removed), self);
809
810         priv->account_inserted_signal =
811                 g_signal_connect (G_OBJECT(account_store), "account_inserted",
812                                   G_CALLBACK (on_account_inserted), self);
813
814         priv->account_changed_signal =
815                 g_signal_connect (G_OBJECT(account_store), "account_changed",
816                                   G_CALLBACK (on_account_changed), self);
817
818         modest_folder_view_update_model (MODEST_FOLDER_VIEW (self), account_store);
819         
820         g_object_unref (G_OBJECT (device));
821 }
822
823 static void
824 on_connection_status_changed (TnyAccount *self, 
825                               TnyConnectionStatus status, 
826                               gpointer user_data)
827 {
828         /* If the account becomes online then refresh it */
829         if (status == TNY_CONNECTION_STATUS_CONNECTED) {
830                 const gchar *acc_name;
831                 GtkWidget *my_window;
832
833                 my_window = gtk_widget_get_ancestor (GTK_WIDGET (user_data), MODEST_TYPE_WINDOW);
834                 acc_name = modest_tny_account_get_parent_modest_account_name_for_server_account (self);
835                 modest_ui_actions_do_send_receive (acc_name, MODEST_WINDOW (my_window));
836         }
837 }
838
839 static void
840 on_account_inserted (TnyAccountStore *account_store, 
841                      TnyAccount *account,
842                      gpointer user_data)
843 {
844         ModestFolderViewPrivate *priv;
845         GtkTreeModel *sort_model, *filter_model;
846
847         /* Ignore transport account insertions, we're not showing them
848            in the folder view */
849         if (TNY_IS_TRANSPORT_ACCOUNT (account))
850                 return;
851
852         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (user_data);
853
854         /* If we're adding a new account, and there is no previous
855            one, we need to select the visible server account */
856         if (priv->style == MODEST_FOLDER_VIEW_STYLE_SHOW_ONE &&
857             !priv->visible_account_id)
858                 modest_widget_memory_restore (modest_runtime_get_conf(), 
859                                               G_OBJECT (user_data),
860                                               MODEST_CONF_FOLDER_VIEW_KEY);
861
862         /* Get the inner model */
863         filter_model = gtk_tree_view_get_model (GTK_TREE_VIEW (user_data));
864         sort_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (filter_model));
865
866         /* Insert the account in the model */
867         tny_list_append (TNY_LIST (gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (sort_model))),
868                          G_OBJECT (account));
869
870
871         /* When the store account gets online refresh it */
872         g_signal_connect (account, "connection_status_changed", 
873                           G_CALLBACK (on_connection_status_changed), 
874                           MODEST_FOLDER_VIEW (user_data));
875
876         /* Refilter the model */
877         gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (filter_model));
878 }
879
880
881 static void
882 on_account_changed (TnyAccountStore *account_store, 
883                     TnyAccount *tny_account,
884                     gpointer user_data)
885 {
886         /* do nothing */
887         ModestFolderViewPrivate *priv;
888         GtkTreeModel *sort_model, *filter_model;
889
890         /* Ignore transport account insertions, we're not showing them
891            in the folder view */
892         if (TNY_IS_TRANSPORT_ACCOUNT (tny_account))
893                 return;
894
895         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (user_data);
896
897         /* Get the inner model */
898         filter_model = gtk_tree_view_get_model (GTK_TREE_VIEW (user_data));
899         sort_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (filter_model));
900         
901         /* Remove the account from the model */
902         tny_list_remove (TNY_LIST (gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (sort_model))),
903                          G_OBJECT (tny_account));
904
905         /* Insert the account in the model */
906         tny_list_append (TNY_LIST (gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (sort_model))),
907                          G_OBJECT (tny_account));
908
909         /* Refilter the model */
910         gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (filter_model));
911 }
912
913
914
915 static void
916 on_account_removed (TnyAccountStore *account_store, 
917                     TnyAccount *account,
918                     gpointer user_data)
919 {
920         ModestFolderView *self = NULL;
921         ModestFolderViewPrivate *priv;
922         GtkTreeModel *sort_model, *filter_model;
923         GtkTreeSelection *sel = NULL;
924
925         /* Ignore transport account removals, we're not showing them
926            in the folder view */
927         if (TNY_IS_TRANSPORT_ACCOUNT (account))
928                 return;
929
930         self = MODEST_FOLDER_VIEW (user_data);
931         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (self);
932
933         /* Invalidate the cur_folder_store only if the selected folder
934            belongs to the account that is being removed */
935         if (priv->cur_folder_store) {
936                 TnyAccount *selected_folder_account = NULL;
937
938                 if (TNY_IS_FOLDER (priv->cur_folder_store)) {
939                         selected_folder_account = 
940                                 tny_folder_get_account (TNY_FOLDER (priv->cur_folder_store));
941                 } else {
942                         selected_folder_account = 
943                                 TNY_ACCOUNT (g_object_ref (priv->cur_folder_store));
944                 }
945
946                 if (selected_folder_account == account) {
947                         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
948                         gtk_tree_selection_unselect_all (sel);
949                 }
950                 g_object_unref (selected_folder_account);
951         }
952
953         /* Invalidate row to select only if the folder to select
954            belongs to the account that is being removed*/
955         if (priv->folder_to_select) {
956                 TnyAccount *folder_to_select_account = NULL;
957
958                 folder_to_select_account = tny_folder_get_account (priv->folder_to_select);
959                 if (folder_to_select_account == account) {
960 /*                      modest_folder_view_disable_next_folder_selection (self); */
961                         g_object_unref (priv->folder_to_select);
962                         priv->folder_to_select = NULL;
963                 }
964                 g_object_unref (folder_to_select_account);
965         }
966
967         /* Remove the account from the model */
968         filter_model = gtk_tree_view_get_model (GTK_TREE_VIEW (self));
969         sort_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (filter_model));
970         tny_list_remove (TNY_LIST (gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (sort_model))),
971                          G_OBJECT (account));
972
973         /* If the removed account is the currently viewed one then
974            clear the configuration value. The new visible account will be the default account */
975         if (priv->visible_account_id &&
976             !strcmp (priv->visible_account_id, tny_account_get_id (account))) {
977
978                 /* Clear the current visible account_id */
979                 modest_folder_view_set_account_id_of_visible_server_account (self, NULL);
980
981                 /* Call the restore method, this will set the new visible account */
982                 modest_widget_memory_restore (modest_runtime_get_conf(), G_OBJECT(self),
983                                               MODEST_CONF_FOLDER_VIEW_KEY);
984         }
985
986         /* Refilter the model */
987         gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (filter_model));
988
989         /* Select the first INBOX if the currently selected folder
990            belongs to the account that is being deleted */
991         if (priv->cur_folder_store) {
992                 TnyAccount *folder_selected_account;
993
994                 folder_selected_account = (TNY_IS_FOLDER (priv->cur_folder_store)) ?
995                         modest_tny_folder_get_account (TNY_FOLDER (priv->cur_folder_store)) :
996                         TNY_ACCOUNT (g_object_ref (priv->cur_folder_store));
997                 if (account == folder_selected_account)
998                         modest_folder_view_select_first_inbox_or_local (self);
999                 g_object_unref (folder_selected_account);
1000         }
1001 }
1002
1003 void
1004 modest_folder_view_set_title (ModestFolderView *self, const gchar *title)
1005 {
1006         GtkTreeViewColumn *col;
1007         
1008         g_return_if_fail (self);
1009
1010         col = gtk_tree_view_get_column (GTK_TREE_VIEW(self), 0);
1011         if (!col) {
1012                 g_printerr ("modest: failed get column for title\n");
1013                 return;
1014         }
1015
1016         gtk_tree_view_column_set_title (col, title);
1017         gtk_tree_view_set_headers_visible (GTK_TREE_VIEW(self),
1018                                            title != NULL);
1019 }
1020
1021 static gboolean
1022 modest_folder_view_on_map (ModestFolderView *self, 
1023                            GdkEventExpose *event,
1024                            gpointer data)
1025 {
1026         ModestFolderViewPrivate *priv;
1027
1028         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (self);
1029
1030         /* This won't happen often */
1031         if (G_UNLIKELY (priv->reselect)) {
1032                 /* Select the first inbox or the local account if not found */
1033
1034                 /* TODO: this could cause a lock at startup, so we
1035                    comment it for the moment. We know that this will
1036                    be a bug, because the INBOX is not selected, but we
1037                    need to rewrite some parts of Modest to avoid the
1038                    deathlock situation */
1039                 /* TODO: check if this is still the case */
1040                 priv->reselect = FALSE;
1041                 modest_folder_view_select_first_inbox_or_local (self);
1042                 /* Notify the display name observers */
1043                 g_signal_emit (G_OBJECT(self),
1044                                signals[FOLDER_DISPLAY_NAME_CHANGED_SIGNAL], 0,
1045                                NULL);
1046         }
1047
1048         if (priv->reexpand) {
1049                 expand_root_items (self); 
1050                 priv->reexpand = FALSE;
1051         }
1052
1053         return FALSE;
1054 }
1055
1056 GtkWidget*
1057 modest_folder_view_new (TnyFolderStoreQuery *query)
1058 {
1059         GObject *self;
1060         ModestFolderViewPrivate *priv;
1061         GtkTreeSelection *sel;
1062         
1063         self = G_OBJECT (g_object_new (MODEST_TYPE_FOLDER_VIEW, NULL));
1064         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (self);
1065
1066         if (query)
1067                 priv->query = g_object_ref (query);
1068         
1069         sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(self));
1070         priv->changed_signal = g_signal_connect (sel, "changed",
1071                                                  G_CALLBACK (on_selection_changed), self);
1072
1073         g_signal_connect (self, "expose-event", G_CALLBACK (modest_folder_view_on_map), NULL);
1074
1075         return GTK_WIDGET(self);
1076 }
1077
1078 /* this feels dirty; any other way to expand all the root items? */
1079 static void
1080 expand_root_items (ModestFolderView *self)
1081 {
1082         GtkTreePath *path;
1083         GtkTreeModel *model;
1084         GtkTreeIter iter;
1085
1086         model = gtk_tree_view_get_model (GTK_TREE_VIEW (self));
1087         path = gtk_tree_path_new_first ();
1088
1089         /* all folders should have child items, so.. */
1090         do {
1091                 gtk_tree_view_expand_row (GTK_TREE_VIEW(self), path, FALSE);
1092                 gtk_tree_path_next (path);
1093         } while (gtk_tree_model_get_iter (model, &iter, path));
1094         
1095         gtk_tree_path_free (path);
1096 }
1097
1098 /*
1099  * We use this function to implement the
1100  * MODEST_FOLDER_VIEW_STYLE_SHOW_ONE style. We only show the default
1101  * account in this case, and the local folders.
1102  */
1103 static gboolean 
1104 filter_row (GtkTreeModel *model,
1105             GtkTreeIter *iter,
1106             gpointer data)
1107 {
1108         ModestFolderViewPrivate *priv;
1109         gboolean retval = TRUE;
1110         TnyFolderType type = TNY_FOLDER_TYPE_UNKNOWN;
1111         GObject *instance = NULL;
1112         const gchar *id = NULL;
1113         guint i;
1114         gboolean found = FALSE;
1115         gboolean cleared = FALSE;
1116
1117         g_return_val_if_fail (MODEST_IS_FOLDER_VIEW (data), FALSE);
1118         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (data);
1119
1120         gtk_tree_model_get (model, iter,
1121                             TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &type,
1122                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &instance,
1123                             -1);
1124
1125         /* Do not show if there is no instance, this could indeed
1126            happen when the model is being modified while it's being
1127            drawn. This could occur for example when moving folders
1128            using drag&drop */
1129         if (!instance)
1130                 return FALSE;
1131
1132         if (type == TNY_FOLDER_TYPE_ROOT) {
1133                 /* TNY_FOLDER_TYPE_ROOT means that the instance is an
1134                    account instead of a folder. */
1135                 if (TNY_IS_ACCOUNT (instance)) {
1136                         TnyAccount *acc = TNY_ACCOUNT (instance);
1137                         const gchar *account_id = tny_account_get_id (acc);
1138         
1139                         /* If it isn't a special folder, 
1140                          * don't show it unless it is the visible account: */
1141                         if (priv->style == MODEST_FOLDER_VIEW_STYLE_SHOW_ONE &&
1142                             !modest_tny_account_is_virtual_local_folders (acc) &&
1143                             strcmp (account_id, MODEST_MMC_ACCOUNT_ID)) {
1144                                 
1145                                 /* Show only the visible account id */
1146                                 if (priv->visible_account_id) {
1147                                         if (strcmp (account_id, priv->visible_account_id))
1148                                                 retval = FALSE;
1149                                 } else {
1150                                         retval = FALSE;
1151                                 }                               
1152                         }
1153                         
1154                         /* Never show these to the user. They are merged into one folder 
1155                          * in the local-folders account instead: */
1156                         if (retval && MODEST_IS_TNY_OUTBOX_ACCOUNT (acc))
1157                                 retval = FALSE;
1158                 }
1159         }
1160
1161         /* Check hiding (if necessary) */
1162         cleared = modest_email_clipboard_cleared (priv->clipboard);            
1163         if ((retval) && (!cleared) && (TNY_IS_FOLDER (instance))) {
1164                 id = tny_folder_get_id (TNY_FOLDER(instance));
1165                 if (priv->hidding_ids != NULL)
1166                         for (i=0; i < priv->n_selected && !found; i++)
1167                                 if (priv->hidding_ids[i] != NULL && id != NULL)
1168                                         found = (!strcmp (priv->hidding_ids[i], id));
1169                 
1170                 retval = !found;
1171         }
1172         
1173         
1174         /* If this is a move to dialog, hide Sent, Outbox and Drafts
1175         folder as no message can be move there according to UI specs */
1176         if (!priv->show_non_move) {
1177                 switch (type) {
1178                         case TNY_FOLDER_TYPE_OUTBOX:
1179                         case TNY_FOLDER_TYPE_SENT:
1180                         case TNY_FOLDER_TYPE_DRAFTS:
1181                                 retval = FALSE;
1182                                 break;
1183                         case TNY_FOLDER_TYPE_UNKNOWN:
1184                         case TNY_FOLDER_TYPE_NORMAL:
1185                                 type = modest_tny_folder_guess_folder_type(TNY_FOLDER(instance));
1186                                 if (type == TNY_FOLDER_TYPE_INVALID)
1187                                         g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
1188                                 
1189                                 if (type == TNY_FOLDER_TYPE_OUTBOX || 
1190                                     type == TNY_FOLDER_TYPE_SENT
1191                                     || type == TNY_FOLDER_TYPE_DRAFTS)
1192                                         retval = FALSE;
1193                                 break;
1194                         default:
1195                                 break;
1196                 }
1197         }
1198         
1199         /* Free */
1200         g_object_unref (instance);
1201
1202         return retval;
1203 }
1204
1205
1206 gboolean
1207 modest_folder_view_update_model (ModestFolderView *self,
1208                                  TnyAccountStore *account_store)
1209 {
1210         ModestFolderViewPrivate *priv;
1211         GtkTreeModel *model /* , *old_model */;                                                    
1212         GtkTreeModel *filter_model = NULL, *sortable = NULL;
1213
1214         g_return_val_if_fail (MODEST_IS_FOLDER_VIEW (self), FALSE);
1215         g_return_val_if_fail (account_store, FALSE);
1216
1217         priv =  MODEST_FOLDER_VIEW_GET_PRIVATE(self);
1218         
1219         /* Notify that there is no folder selected */
1220         g_signal_emit (G_OBJECT(self), 
1221                        signals[FOLDER_SELECTION_CHANGED_SIGNAL], 0,
1222                        NULL, FALSE);
1223         if (priv->cur_folder_store) {
1224                 g_object_unref (priv->cur_folder_store);
1225                 priv->cur_folder_store = NULL;
1226         }
1227
1228         /* FIXME: the local accounts are not shown when the query
1229            selects only the subscribed folders */
1230         model        = tny_gtk_folder_store_tree_model_new (NULL);
1231
1232         /* Get the accounts: */
1233         tny_account_store_get_accounts (TNY_ACCOUNT_STORE(account_store),
1234                                         TNY_LIST (model),
1235                                         TNY_ACCOUNT_STORE_STORE_ACCOUNTS);
1236
1237         sortable = gtk_tree_model_sort_new_with_model (model);
1238         gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE(sortable),
1239                                               TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN, 
1240                                               GTK_SORT_ASCENDING);
1241         gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (sortable),
1242                                          TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN,
1243                                          cmp_rows, NULL, NULL);
1244
1245         /* Create filter model */
1246         filter_model = gtk_tree_model_filter_new (sortable, NULL);
1247         gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (filter_model),
1248                                                 filter_row,
1249                                                 self,
1250                                                 NULL);
1251
1252         /* Set new model */
1253         gtk_tree_view_set_model (GTK_TREE_VIEW(self), filter_model);
1254         g_signal_connect (G_OBJECT(filter_model), "row-inserted",
1255                           (GCallback) on_row_inserted_maybe_select_folder, self);
1256
1257
1258         g_object_unref (model);
1259         g_object_unref (filter_model);          
1260         g_object_unref (sortable);
1261         
1262         /* Force a reselection of the INBOX next time the widget is shown */
1263         priv->reselect = TRUE;
1264                         
1265         return TRUE;
1266 }
1267
1268
1269 static void
1270 on_selection_changed (GtkTreeSelection *sel, gpointer user_data)
1271 {
1272         GtkTreeModel *model = NULL;
1273         TnyFolderStore *folder = NULL;
1274         GtkTreeIter iter;
1275         ModestFolderView *tree_view = NULL;
1276         ModestFolderViewPrivate *priv = NULL;
1277         gboolean selected = FALSE;
1278
1279         g_return_if_fail (sel);
1280         g_return_if_fail (user_data);
1281         
1282         priv = MODEST_FOLDER_VIEW_GET_PRIVATE(user_data);
1283
1284         selected = gtk_tree_selection_get_selected (sel, &model, &iter);
1285
1286         /* Notify the display name observers */
1287         g_signal_emit (G_OBJECT(user_data),
1288                        signals[FOLDER_DISPLAY_NAME_CHANGED_SIGNAL], 0,
1289                        NULL);
1290
1291         tree_view = MODEST_FOLDER_VIEW (user_data);
1292
1293         if (selected) {
1294                 gtk_tree_model_get (model, &iter,
1295                                     TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &folder,
1296                                     -1);
1297
1298                 /* If the folder is the same do not notify */
1299                 if (folder && priv->cur_folder_store == folder) {
1300                         g_object_unref (folder);
1301                         return;
1302                 }
1303         }
1304         
1305         /* Current folder was unselected */
1306         if (priv->cur_folder_store) {
1307                 g_signal_emit (G_OBJECT(tree_view), signals[FOLDER_SELECTION_CHANGED_SIGNAL], 0,
1308                        priv->cur_folder_store, FALSE);
1309
1310                 if (TNY_IS_FOLDER(priv->cur_folder_store))
1311                         tny_folder_sync_async (TNY_FOLDER(priv->cur_folder_store),
1312                                                FALSE, NULL, NULL, NULL);
1313
1314                 /* FALSE --> don't expunge the messages */
1315
1316                 g_object_unref (priv->cur_folder_store);
1317                 priv->cur_folder_store = NULL;
1318         }
1319
1320         /* New current references */
1321         priv->cur_folder_store = folder;
1322
1323         /* New folder has been selected */
1324         g_signal_emit (G_OBJECT(tree_view),
1325                        signals[FOLDER_SELECTION_CHANGED_SIGNAL],
1326                        0, priv->cur_folder_store, TRUE);
1327 }
1328
1329 TnyFolderStore *
1330 modest_folder_view_get_selected (ModestFolderView *self)
1331 {
1332         ModestFolderViewPrivate *priv;
1333
1334         g_return_val_if_fail (self, NULL);
1335         
1336         priv = MODEST_FOLDER_VIEW_GET_PRIVATE(self);
1337         if (priv->cur_folder_store)
1338                 g_object_ref (priv->cur_folder_store);
1339
1340         return priv->cur_folder_store;
1341 }
1342
1343 static gint
1344 get_cmp_rows_type_pos (GObject *folder)
1345 {
1346         /* Remote accounts -> Local account -> MMC account .*/
1347         /* 0, 1, 2 */
1348         
1349         if (TNY_IS_ACCOUNT (folder) && 
1350                 modest_tny_account_is_virtual_local_folders (
1351                         TNY_ACCOUNT (folder))) {
1352                 return 1;
1353         } else if (TNY_IS_ACCOUNT (folder)) {
1354                 TnyAccount *account = TNY_ACCOUNT (folder);
1355                 const gchar *account_id = tny_account_get_id (account);
1356                 if (!strcmp (account_id, MODEST_MMC_ACCOUNT_ID))
1357                         return 2;
1358                 else
1359                         return 0;
1360         }
1361         else {
1362                 printf ("DEBUG: %s: unexpected type.\n", __FUNCTION__);
1363                 return -1; /* Should never happen */
1364         }
1365 }
1366
1367 static gint
1368 get_cmp_subfolder_type_pos (TnyFolderType t)
1369 {
1370         /* Inbox, Outbox, Drafts, Sent, User */
1371         /* 0, 1, 2, 3, 4 */
1372
1373         switch (t) {
1374         case TNY_FOLDER_TYPE_INBOX:
1375                 return 0;
1376                 break;
1377         case TNY_FOLDER_TYPE_OUTBOX:
1378                 return 1;
1379                 break;
1380         case TNY_FOLDER_TYPE_DRAFTS:
1381                 return 2;
1382                 break;
1383         case TNY_FOLDER_TYPE_SENT:
1384                 return 3;
1385                 break;
1386         default:
1387                 return 4;
1388         }
1389 }
1390
1391 /*
1392  * This function orders the mail accounts according to these rules:
1393  * 1st - remote accounts
1394  * 2nd - local account
1395  * 3rd - MMC account
1396  */
1397 static gint
1398 cmp_rows (GtkTreeModel *tree_model, GtkTreeIter *iter1, GtkTreeIter *iter2,
1399           gpointer user_data)
1400 {
1401         gint cmp = 0;
1402         gchar *name1 = NULL;
1403         gchar *name2 = NULL;
1404         TnyFolderType type = TNY_FOLDER_TYPE_UNKNOWN;
1405         TnyFolderType type2 = TNY_FOLDER_TYPE_UNKNOWN;
1406         GObject *folder1 = NULL;
1407         GObject *folder2 = NULL;
1408
1409         gtk_tree_model_get (tree_model, iter1,
1410                             TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN, &name1,
1411                             TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &type,
1412                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &folder1,
1413                             -1);
1414         gtk_tree_model_get (tree_model, iter2,
1415                             TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN, &name2,
1416                             TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &type2,
1417                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &folder2,
1418                             -1);
1419
1420         /* Return if we get no folder. This could happen when folder
1421            operations are happening. The model is updated after the
1422            folder copy/move actually occurs, so there could be
1423            situations where the model to be drawn is not correct */
1424         if (!folder1 || !folder2)
1425                 goto finish;
1426
1427         if (type == TNY_FOLDER_TYPE_ROOT) {
1428                 /* Compare the types, so that 
1429                  * Remote accounts -> Local account -> MMC account .*/
1430                 const gint pos1 = get_cmp_rows_type_pos (folder1);
1431                 const gint pos2 = get_cmp_rows_type_pos (folder2);
1432                 /* printf ("DEBUG: %s:\n  type1=%s, pos1=%d\n  type2=%s, pos2=%d\n", 
1433                         __FUNCTION__, G_OBJECT_TYPE_NAME(folder1), pos1, G_OBJECT_TYPE_NAME(folder2), pos2); */
1434                 if (pos1 <  pos2)
1435                         cmp = -1;
1436                 else if (pos1 > pos2)
1437                         cmp = 1;
1438                 else {
1439                         /* Compare items of the same type: */
1440                         
1441                         TnyAccount *account1 = NULL;
1442                         if (TNY_IS_ACCOUNT (folder1))
1443                                 account1 = TNY_ACCOUNT (folder1);
1444                                 
1445                         TnyAccount *account2 = NULL;
1446                         if (TNY_IS_ACCOUNT (folder2))
1447                                 account2 = TNY_ACCOUNT (folder2);
1448                                 
1449                         const gchar *account_id = account1 ? tny_account_get_id (account1) : NULL;
1450                         const gchar *account_id2 = account2 ? tny_account_get_id (account2) : NULL;
1451         
1452                         if (!account_id && !account_id2) {
1453                                 cmp = 0;
1454                         } else if (!account_id) {
1455                                 cmp = -1;
1456                         } else if (!account_id2) {
1457                                 cmp = +1;
1458                         } else if (!strcmp (account_id, MODEST_MMC_ACCOUNT_ID)) {
1459                                 cmp = +1;
1460                         } else {
1461                                 cmp = modest_text_utils_utf8_strcmp (name1, name2, TRUE);
1462                         }
1463                 }
1464         } else {
1465                 gint cmp1 = 0, cmp2 = 0;
1466                 /* get the parent to know if it's a local folder */
1467
1468                 GtkTreeIter parent;
1469                 gboolean has_parent;
1470                 has_parent = gtk_tree_model_iter_parent (tree_model, &parent, iter1);
1471                 if (has_parent) {
1472                         GObject *parent_folder;
1473                         TnyFolderType parent_type = TNY_FOLDER_TYPE_UNKNOWN;
1474                         gtk_tree_model_get (tree_model, &parent, 
1475                                             TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &parent_type,
1476                                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &parent_folder,
1477                                             -1);
1478                         if ((parent_type == TNY_FOLDER_TYPE_ROOT) &&
1479                             TNY_IS_ACCOUNT (parent_folder) &&
1480                             modest_tny_account_is_virtual_local_folders (TNY_ACCOUNT (parent_folder))) {
1481                                 cmp1 = get_cmp_subfolder_type_pos (modest_tny_folder_get_local_or_mmc_folder_type
1482                                                                    (TNY_FOLDER (folder1)));
1483                                 cmp2 = get_cmp_subfolder_type_pos (modest_tny_folder_get_local_or_mmc_folder_type
1484                                                                    (TNY_FOLDER (folder2)));
1485                         }
1486                         g_object_unref (parent_folder);
1487                 }
1488                 
1489                 /* if they are not local folders */
1490                 if (cmp1 == cmp2) {
1491                         cmp1 = get_cmp_subfolder_type_pos (tny_folder_get_folder_type (TNY_FOLDER (folder1)));
1492                         cmp2 = get_cmp_subfolder_type_pos (tny_folder_get_folder_type (TNY_FOLDER (folder2)));
1493                 }
1494
1495                 if (cmp1 == cmp2)
1496                         cmp = modest_text_utils_utf8_strcmp (name1, name2, TRUE);
1497                 else 
1498                         cmp = (cmp1 - cmp2);
1499         }
1500
1501 finish: 
1502         if (folder1)
1503                 g_object_unref(G_OBJECT(folder1));
1504         if (folder2)
1505                 g_object_unref(G_OBJECT(folder2));
1506
1507         g_free (name1);
1508         g_free (name2);
1509
1510         return cmp;     
1511 }
1512
1513 /*****************************************************************************/
1514 /*                        DRAG and DROP stuff                                */
1515 /*****************************************************************************/
1516 /*
1517  * This function fills the #GtkSelectionData with the row and the
1518  * model that has been dragged. It's called when this widget is a
1519  * source for dnd after the event drop happened
1520  */
1521 static void
1522 on_drag_data_get (GtkWidget *widget, 
1523                   GdkDragContext *context, 
1524                   GtkSelectionData *selection_data, 
1525                   guint info, 
1526                   guint time, 
1527                   gpointer data)
1528 {
1529         GtkTreeSelection *selection;
1530         GtkTreeModel *model;
1531         GtkTreeIter iter;
1532         GtkTreePath *source_row;
1533
1534         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget));
1535         gtk_tree_selection_get_selected (selection, &model, &iter);
1536         source_row = gtk_tree_model_get_path (model, &iter);
1537
1538         gtk_tree_set_row_drag_data (selection_data,
1539                                     model,
1540                                     source_row);
1541
1542         gtk_tree_path_free (source_row);
1543 }
1544
1545 typedef struct _DndHelper {
1546         gboolean delete_source;
1547         GtkTreePath *source_row;
1548         GdkDragContext *context;
1549         guint time;
1550 } DndHelper;
1551
1552
1553 /*
1554  * This function is the callback of the
1555  * modest_mail_operation_xfer_msgs () and
1556  * modest_mail_operation_xfer_folder() calls. We check here if the
1557  * message/folder was correctly asynchronously transferred. The reason
1558  * to use the same callback is that the code is the same, it only has
1559  * to check that the operation went fine and then finalize the drag
1560  * and drop action
1561  */
1562 static void
1563 xfer_cb (ModestMailOperation *mail_op, 
1564          gpointer user_data)
1565 {
1566         gboolean success;
1567         DndHelper *helper;
1568
1569         helper = (DndHelper *) user_data;
1570
1571         if (modest_mail_operation_get_status (mail_op) == 
1572             MODEST_MAIL_OPERATION_STATUS_SUCCESS) {
1573                 success = TRUE;
1574         } else {
1575                 success = FALSE;
1576         }
1577
1578         /* Notify the drag source. Never call delete, the monitor will
1579            do the job if needed */
1580         gtk_drag_finish (helper->context, success, FALSE, helper->time);
1581
1582         /* Free the helper */
1583         gtk_tree_path_free (helper->source_row);
1584         g_slice_free (DndHelper, helper);
1585 }
1586
1587 /* get the folder for the row the treepath refers to. */
1588 /* folder must be unref'd */
1589 static TnyFolderStore *
1590 tree_path_to_folder (GtkTreeModel *model, GtkTreePath *path)
1591 {
1592         GtkTreeIter iter;
1593         TnyFolderStore *folder = NULL;
1594         
1595         if (gtk_tree_model_get_iter (model,&iter, path))
1596                 gtk_tree_model_get (model, &iter,
1597                                     TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &folder,
1598                                     -1);
1599         return folder;
1600 }
1601
1602 /*
1603  * This function is used by drag_data_received_cb to manage drag and
1604  * drop of a header, i.e, and drag from the header view to the folder
1605  * view.
1606  */
1607 static void
1608 drag_and_drop_from_header_view (GtkTreeModel *source_model,
1609                                 GtkTreeModel *dest_model,
1610                                 GtkTreePath  *dest_row,
1611                                 GtkSelectionData *selection_data,
1612                                 DndHelper    *helper)
1613 {
1614         TnyList *headers = NULL;
1615         TnyFolder *folder = NULL;
1616         TnyFolderType folder_type;
1617         ModestMailOperation *mail_op = NULL;
1618         GtkTreeIter source_iter, dest_iter;
1619         ModestWindowMgr *mgr = NULL;
1620         ModestWindow *main_win = NULL;
1621         gchar **uris, **tmp;
1622         gint response;
1623
1624         /* Build the list of headers */
1625         mgr = modest_runtime_get_window_mgr ();
1626         headers = tny_simple_list_new ();
1627         uris = modest_dnd_selection_data_get_paths (selection_data);
1628         tmp = uris;
1629
1630         while (*tmp != NULL) {
1631                 TnyHeader *header;
1632                 GtkTreePath *path;
1633
1634                 /* Get header */
1635                 path = gtk_tree_path_new_from_string (*tmp);
1636                 gtk_tree_model_get_iter (source_model, &source_iter, path);
1637                 gtk_tree_model_get (source_model, &source_iter, 
1638                                     TNY_GTK_HEADER_LIST_MODEL_INSTANCE_COLUMN, 
1639                                     &header, -1);
1640
1641                 /* Do not enable d&d of headers already opened */
1642                 if (!modest_window_mgr_find_registered_header(mgr, header, NULL))
1643                         tny_list_append (headers, G_OBJECT (header));
1644
1645                 /* Free and go on */
1646                 gtk_tree_path_free (path);
1647                 g_object_unref (header);
1648                 tmp++;
1649         }
1650         g_strfreev (uris);
1651
1652         /* Get the target folder */
1653         gtk_tree_model_get_iter (dest_model, &dest_iter, dest_row);
1654         gtk_tree_model_get (dest_model, &dest_iter, 
1655                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN,
1656                             &folder, -1);
1657
1658         if (!folder || TNY_IS_FOLDER_STORE(folder)) {
1659                 //g_warning ("%s: not a valid target folder", __FUNCTION__);
1660                 goto cleanup;
1661         }
1662         
1663         folder_type = modest_tny_folder_guess_folder_type (folder);
1664         if (folder_type == TNY_FOLDER_TYPE_INVALID) {
1665                 g_warning ("%s: invalid target folder", __FUNCTION__);
1666                 goto cleanup;  /* cannot move messages there */
1667         }
1668                 
1669         if (modest_tny_folder_get_rules((TNY_FOLDER(folder))) & MODEST_FOLDER_RULES_FOLDER_NON_WRITEABLE)
1670                 goto cleanup; /* verboten! */
1671         
1672         /* Ask for confirmation to move */
1673         main_win = modest_window_mgr_get_main_window (mgr, FALSE); /* don't create */
1674         if (!main_win) {
1675                 g_warning ("%s: BUG: no main window found", __FUNCTION__);
1676                 goto cleanup;
1677         }
1678
1679         response = modest_ui_actions_msgs_move_to_confirmation (main_win, folder, 
1680                                                                 TRUE, headers);
1681         if (response == GTK_RESPONSE_CANCEL)
1682                 goto cleanup;
1683
1684         /* Transfer messages */
1685         mail_op = modest_mail_operation_new_with_error_handling ((GObject *) main_win,
1686                                                                  modest_ui_actions_move_folder_error_handler,
1687                                                                  NULL, NULL);
1688
1689         modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
1690                                          mail_op);
1691
1692         modest_mail_operation_xfer_msgs (mail_op,
1693                                          headers, 
1694                                          folder, 
1695                                          helper->delete_source, 
1696                                          xfer_cb, helper);
1697         
1698         /* Frees */
1699 cleanup:
1700         if (G_IS_OBJECT(mail_op))
1701                 g_object_unref (G_OBJECT (mail_op));
1702         if (G_IS_OBJECT(folder))
1703                 g_object_unref (G_OBJECT (folder));
1704         if (G_IS_OBJECT(headers))
1705                 g_object_unref (headers);
1706 }
1707
1708 /*
1709  * This function is used by drag_data_received_cb to manage drag and
1710  * drop of a folder, i.e, and drag from the folder view to the same
1711  * folder view.
1712  */
1713 static void
1714 drag_and_drop_from_folder_view (GtkTreeModel     *source_model,
1715                                 GtkTreeModel     *dest_model,
1716                                 GtkTreePath      *dest_row,
1717                                 GtkSelectionData *selection_data,
1718                                 DndHelper        *helper)
1719 {
1720         ModestMailOperation *mail_op = NULL;
1721         GtkTreeIter dest_iter, iter;
1722         TnyFolderStore *dest_folder = NULL;
1723         TnyFolderStore *folder = NULL;
1724         gboolean forbidden = FALSE;
1725         ModestWindow *win;
1726
1727         win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr(), FALSE); /* don't create */
1728         if (!win) {
1729                 g_warning ("%s: BUG: no main window", __FUNCTION__);
1730                 return;
1731         }
1732         
1733         if (!forbidden) {
1734                 /* check the folder rules for the destination */
1735                 folder = tree_path_to_folder (dest_model, dest_row);
1736                 if (TNY_IS_FOLDER(folder)) {
1737                         ModestTnyFolderRules rules =
1738                                 modest_tny_folder_get_rules (TNY_FOLDER (folder));
1739                         forbidden = rules & MODEST_FOLDER_RULES_FOLDER_NON_WRITEABLE;
1740                 } else if (TNY_IS_FOLDER_STORE(folder)) {
1741                         /* enable local root as destination for folders */
1742                         if (!MODEST_IS_TNY_LOCAL_FOLDERS_ACCOUNT (folder)
1743                                         && TNY_IS_ACCOUNT (folder))
1744                                 forbidden = TRUE;
1745                 }
1746                 g_object_unref (folder);
1747         }
1748         if (!forbidden) {
1749                 /* check the folder rules for the source */
1750                 folder = tree_path_to_folder (source_model, helper->source_row);
1751                 if (TNY_IS_FOLDER(folder)) {
1752                         ModestTnyFolderRules rules =
1753                                 modest_tny_folder_get_rules (TNY_FOLDER (folder));
1754                         forbidden = rules & MODEST_FOLDER_RULES_FOLDER_NON_MOVEABLE;
1755                 } else
1756                         forbidden = TRUE;
1757                 g_object_unref (folder);
1758         }
1759
1760         
1761         /* Check if the drag is possible */
1762         if (forbidden || !gtk_tree_path_compare (helper->source_row, dest_row)) {
1763                 gtk_drag_finish (helper->context, FALSE, FALSE, helper->time);
1764                 gtk_tree_path_free (helper->source_row);        
1765                 g_slice_free (DndHelper, helper);
1766                 return;
1767         }
1768
1769         /* Get data */
1770         gtk_tree_model_get_iter (dest_model, &dest_iter, dest_row);
1771         gtk_tree_model_get (dest_model, &dest_iter, 
1772                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, 
1773                             &dest_folder, -1);
1774         gtk_tree_model_get_iter (source_model, &iter, helper->source_row);
1775         gtk_tree_model_get (source_model, &iter,
1776                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN,
1777                             &folder, -1);
1778
1779         /* Offer the connection dialog if necessary, for the destination parent folder and source folder: */
1780         if (modest_platform_connect_and_wait_if_network_folderstore (NULL, dest_folder) && 
1781             modest_platform_connect_and_wait_if_network_folderstore (NULL, TNY_FOLDER_STORE (folder))) {
1782         
1783                 /* Do the mail operation */
1784                 mail_op = modest_mail_operation_new_with_error_handling ((GObject *) win,
1785                                                                          modest_ui_actions_move_folder_error_handler,
1786                                                                          folder, NULL);
1787
1788                 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), 
1789                                                  mail_op);
1790
1791                 modest_mail_operation_xfer_folder (mail_op, 
1792                                                    TNY_FOLDER (folder), 
1793                                                    dest_folder,
1794                                                    helper->delete_source,
1795                                                    xfer_cb,
1796                                                    helper);
1797
1798                 g_object_unref (G_OBJECT (mail_op));
1799         }
1800         
1801         /* Frees */
1802         g_object_unref (G_OBJECT (dest_folder));
1803         g_object_unref (G_OBJECT (folder));
1804 }
1805
1806 /*
1807  * This function receives the data set by the "drag-data-get" signal
1808  * handler. This information comes within the #GtkSelectionData. This
1809  * function will manage both the drags of folders of the treeview and
1810  * drags of headers of the header view widget.
1811  */
1812 static void 
1813 on_drag_data_received (GtkWidget *widget, 
1814                        GdkDragContext *context, 
1815                        gint x, 
1816                        gint y, 
1817                        GtkSelectionData *selection_data, 
1818                        guint target_type, 
1819                        guint time, 
1820                        gpointer data)
1821 {
1822         GtkWidget *source_widget;
1823         GtkTreeModel *dest_model, *source_model;
1824         GtkTreePath *source_row, *dest_row;
1825         GtkTreeViewDropPosition pos;
1826         gboolean success = FALSE, delete_source = FALSE;
1827         DndHelper *helper = NULL; 
1828
1829         /* Do not allow further process */
1830         g_signal_stop_emission_by_name (widget, "drag-data-received");
1831         source_widget = gtk_drag_get_source_widget (context);
1832
1833         /* Get the action */
1834         if (context->action == GDK_ACTION_MOVE) {
1835                 delete_source = TRUE;
1836
1837                 /* Notify that there is no folder selected. We need to
1838                    do this in order to update the headers view (and
1839                    its monitors, because when moving, the old folder
1840                    won't longer exist. We can not wait for the end of
1841                    the operation, because the operation won't start if
1842                    the folder is in use */
1843                 if (source_widget == widget) {
1844                         GtkTreeSelection *sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget));
1845                         gtk_tree_selection_unselect_all (sel);
1846                 }
1847         }
1848
1849         /* Check if the get_data failed */
1850         if (selection_data == NULL || selection_data->length < 0)
1851                 gtk_drag_finish (context, success, FALSE, time);
1852
1853         /* Select the destination model */
1854         dest_model = gtk_tree_view_get_model (GTK_TREE_VIEW (widget));  
1855
1856         /* Get the path to the destination row. Can not call
1857            gtk_tree_view_get_drag_dest_row() because the source row
1858            is not selected anymore */
1859         gtk_tree_view_get_dest_row_at_pos (GTK_TREE_VIEW (widget), x, y,
1860                                            &dest_row, &pos);
1861
1862         /* Only allow drops IN other rows */
1863         if (!dest_row || 
1864             pos == GTK_TREE_VIEW_DROP_BEFORE || 
1865             pos == GTK_TREE_VIEW_DROP_AFTER)
1866                 gtk_drag_finish (context, success, FALSE, time);
1867
1868         /* Create the helper */
1869         helper = g_slice_new0 (DndHelper);
1870         helper->delete_source = delete_source;
1871         helper->context = context;
1872         helper->time = time;
1873
1874         /* Drags from the header view */
1875         if (source_widget != widget) {
1876                 source_model = gtk_tree_view_get_model (GTK_TREE_VIEW (source_widget));
1877
1878                 drag_and_drop_from_header_view (source_model,
1879                                                 dest_model,
1880                                                 dest_row,
1881                                                 selection_data,
1882                                                 helper);
1883         } else {
1884                 /* Get the source model and row */
1885                 gtk_tree_get_row_drag_data (selection_data,
1886                                             &source_model,
1887                                             &source_row);
1888                 helper->source_row = gtk_tree_path_copy (source_row);
1889
1890                 drag_and_drop_from_folder_view (source_model,
1891                                                 dest_model,
1892                                                 dest_row,
1893                                                 selection_data, 
1894                                                 helper);
1895
1896                 gtk_tree_path_free (source_row);
1897         }
1898
1899         /* Frees */
1900         gtk_tree_path_free (dest_row);
1901 }
1902
1903 /*
1904  * We define a "drag-drop" signal handler because we do not want to
1905  * use the default one, because the default one always calls
1906  * gtk_drag_finish and we prefer to do it in the "drag-data-received"
1907  * signal handler, because there we have all the information available
1908  * to know if the dnd was a success or not.
1909  */
1910 static gboolean
1911 drag_drop_cb (GtkWidget      *widget,
1912               GdkDragContext *context,
1913               gint            x,
1914               gint            y,
1915               guint           time,
1916               gpointer        user_data) 
1917 {
1918         gpointer target;
1919
1920         if (!context->targets)
1921                 return FALSE;
1922
1923         /* Check if we're dragging a folder row */
1924         target = gtk_drag_dest_find_target (widget, context, NULL);
1925
1926         /* Request the data from the source. */
1927         gtk_drag_get_data(widget, context, target, time);
1928
1929     return TRUE;
1930 }
1931
1932 /*
1933  * This function expands a node of a tree view if it's not expanded
1934  * yet. Not sure why it needs the threads stuff, but gtk+`example code
1935  * does that, so that's why they're here.
1936  */
1937 static gint
1938 expand_row_timeout (gpointer data)
1939 {
1940         GtkTreeView *tree_view = data;
1941         GtkTreePath *dest_path = NULL;
1942         GtkTreeViewDropPosition pos;
1943         gboolean result = FALSE;
1944         
1945         GDK_THREADS_ENTER ();
1946         
1947         gtk_tree_view_get_drag_dest_row (tree_view,
1948                                          &dest_path,
1949                                          &pos);
1950         
1951         if (dest_path &&
1952             (pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER ||
1953              pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)) {
1954                 gtk_tree_view_expand_row (tree_view, dest_path, FALSE);
1955                 gtk_tree_path_free (dest_path);
1956         }
1957         else {
1958                 if (dest_path)
1959                         gtk_tree_path_free (dest_path);
1960                 
1961                 result = TRUE;
1962         }
1963         
1964         GDK_THREADS_LEAVE ();
1965
1966         return result;
1967 }
1968
1969 /*
1970  * This function is called whenever the pointer is moved over a widget
1971  * while dragging some data. It installs a timeout that will expand a
1972  * node of the treeview if not expanded yet. This function also calls
1973  * gdk_drag_status in order to set the suggested action that will be
1974  * used by the "drag-data-received" signal handler to know if we
1975  * should do a move or just a copy of the data.
1976  */
1977 static gboolean
1978 on_drag_motion (GtkWidget      *widget,
1979                 GdkDragContext *context,
1980                 gint            x,
1981                 gint            y,
1982                 guint           time,
1983                 gpointer        user_data)  
1984 {
1985         GtkTreeViewDropPosition pos;
1986         GtkTreePath *dest_row;
1987         GtkTreeModel *dest_model;
1988         ModestFolderViewPrivate *priv;
1989         GdkDragAction suggested_action;
1990         gboolean valid_location = FALSE;
1991         TnyFolderStore *folder;
1992
1993         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (widget);
1994
1995         if (priv->timer_expander != 0) {
1996                 g_source_remove (priv->timer_expander);
1997                 priv->timer_expander = 0;
1998         }
1999
2000         gtk_tree_view_get_dest_row_at_pos (GTK_TREE_VIEW (widget),
2001                                            x, y,
2002                                            &dest_row,
2003                                            &pos);
2004
2005         /* Do not allow drops between folders */
2006         if (!dest_row ||
2007             pos == GTK_TREE_VIEW_DROP_BEFORE ||
2008             pos == GTK_TREE_VIEW_DROP_AFTER) {
2009                 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW (widget), NULL, 0);
2010                 gdk_drag_status(context, 0, time);
2011                 valid_location = FALSE;
2012                 goto out;
2013         } else {
2014                 valid_location = TRUE;
2015         }
2016
2017         /* Check that the destination folder is writable */
2018         dest_model = gtk_tree_view_get_model (GTK_TREE_VIEW (widget));
2019         folder = tree_path_to_folder (dest_model, dest_row);
2020         if (folder && TNY_IS_FOLDER (folder)) {
2021                 ModestTnyFolderRules rules = modest_tny_folder_get_rules(TNY_FOLDER (folder));
2022
2023                 if (rules & MODEST_FOLDER_RULES_FOLDER_NON_WRITEABLE) {
2024                         valid_location = FALSE;
2025                         goto out;
2026                 }
2027         }
2028         g_object_unref (folder);
2029
2030         /* Expand the selected row after 1/2 second */
2031         if (!gtk_tree_view_row_expanded (GTK_TREE_VIEW (widget), dest_row)) {
2032                 gtk_tree_view_set_drag_dest_row (GTK_TREE_VIEW (widget), dest_row, pos);
2033                 priv->timer_expander = g_timeout_add (500, expand_row_timeout, widget);
2034         }
2035
2036         /* Select the desired action. By default we pick MOVE */
2037         suggested_action = GDK_ACTION_MOVE;
2038
2039         if (context->actions == GDK_ACTION_COPY)
2040             gdk_drag_status(context, GDK_ACTION_COPY, time);
2041         else if (context->actions == GDK_ACTION_MOVE)
2042             gdk_drag_status(context, GDK_ACTION_MOVE, time);
2043         else if (context->actions & suggested_action)
2044             gdk_drag_status(context, suggested_action, time);
2045         else
2046             gdk_drag_status(context, GDK_ACTION_DEFAULT, time);
2047
2048  out:
2049         if (dest_row)
2050                 gtk_tree_path_free (dest_row);
2051         g_signal_stop_emission_by_name (widget, "drag-motion");
2052
2053         return valid_location;
2054 }
2055
2056 /*
2057  * This function sets the treeview as a source and a target for dnd
2058  * events. It also connects all the requirede signals.
2059  */
2060 static void
2061 setup_drag_and_drop (GtkTreeView *self)
2062 {
2063         /* Set up the folder view as a dnd destination. Set only the
2064            highlight flag, otherwise gtk will have a different
2065            behaviour */
2066         gtk_drag_dest_set (GTK_WIDGET (self),
2067                            GTK_DEST_DEFAULT_HIGHLIGHT,
2068                            folder_view_drag_types,
2069                            G_N_ELEMENTS (folder_view_drag_types),
2070                            GDK_ACTION_MOVE | GDK_ACTION_COPY);
2071
2072         g_signal_connect (G_OBJECT (self),
2073                           "drag_data_received",
2074                           G_CALLBACK (on_drag_data_received),
2075                           NULL);
2076
2077
2078         /* Set up the treeview as a dnd source */
2079         gtk_drag_source_set (GTK_WIDGET (self),
2080                              GDK_BUTTON1_MASK,
2081                              folder_view_drag_types,
2082                              G_N_ELEMENTS (folder_view_drag_types),
2083                              GDK_ACTION_MOVE | GDK_ACTION_COPY);
2084
2085         g_signal_connect (G_OBJECT (self),
2086                           "drag_motion",
2087                           G_CALLBACK (on_drag_motion),
2088                           NULL);
2089         
2090         g_signal_connect (G_OBJECT (self),
2091                           "drag_data_get",
2092                           G_CALLBACK (on_drag_data_get),
2093                           NULL);
2094
2095         g_signal_connect (G_OBJECT (self),
2096                           "drag_drop",
2097                           G_CALLBACK (drag_drop_cb),
2098                           NULL);
2099 }
2100
2101 /*
2102  * This function manages the navigation through the folders using the
2103  * keyboard or the hardware keys in the device
2104  */
2105 static gboolean
2106 on_key_pressed (GtkWidget *self,
2107                 GdkEventKey *event,
2108                 gpointer user_data)
2109 {
2110         GtkTreeSelection *selection;
2111         GtkTreeIter iter;
2112         GtkTreeModel *model;
2113         gboolean retval = FALSE;
2114
2115         /* Up and Down are automatically managed by the treeview */
2116         if (event->keyval == GDK_Return) {
2117                 /* Expand/Collapse the selected row */
2118                 selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
2119                 if (gtk_tree_selection_get_selected (selection, &model, &iter)) {
2120                         GtkTreePath *path;
2121
2122                         path = gtk_tree_model_get_path (model, &iter);
2123
2124                         if (gtk_tree_view_row_expanded (GTK_TREE_VIEW (self), path))
2125                                 gtk_tree_view_collapse_row (GTK_TREE_VIEW (self), path);
2126                         else
2127                                 gtk_tree_view_expand_row (GTK_TREE_VIEW (self), path, FALSE);
2128                         gtk_tree_path_free (path);
2129                 }
2130                 /* No further processing */
2131                 retval = TRUE;
2132         }
2133
2134         return retval;
2135 }
2136
2137 /*
2138  * We listen to the changes in the local folder account name key,
2139  * because we want to show the right name in the view. The local
2140  * folder account name corresponds to the device name in the Maemo
2141  * version. We do this because we do not want to query gconf on each
2142  * tree view refresh. It's better to cache it and change whenever
2143  * necessary.
2144  */
2145 static void 
2146 on_configuration_key_changed (ModestConf* conf, 
2147                               const gchar *key, 
2148                               ModestConfEvent event,
2149                               ModestConfNotificationId id, 
2150                               ModestFolderView *self)
2151 {
2152         ModestFolderViewPrivate *priv;
2153
2154
2155         g_return_if_fail (MODEST_IS_FOLDER_VIEW (self));
2156         priv = MODEST_FOLDER_VIEW_GET_PRIVATE(self);
2157
2158         if (!strcmp (key, MODEST_CONF_DEVICE_NAME)) {
2159                 g_free (priv->local_account_name);
2160
2161                 if (event == MODEST_CONF_EVENT_KEY_UNSET)
2162                         priv->local_account_name = g_strdup (MODEST_LOCAL_FOLDERS_DEFAULT_DISPLAY_NAME);
2163                 else
2164                         priv->local_account_name = modest_conf_get_string (modest_runtime_get_conf(),
2165                                                                            MODEST_CONF_DEVICE_NAME, NULL);
2166
2167                 /* Force a redraw */
2168 #if GTK_CHECK_VERSION(2, 8, 0)
2169                 GtkTreeViewColumn * tree_column;
2170
2171                 tree_column = gtk_tree_view_get_column (GTK_TREE_VIEW (self), 
2172                                                         TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN);
2173                 gtk_tree_view_column_queue_resize (tree_column);
2174 #else
2175                 gtk_widget_queue_draw (GTK_WIDGET (self));
2176 #endif
2177         }
2178 }
2179
2180 void
2181 modest_folder_view_set_style (ModestFolderView *self,
2182                               ModestFolderViewStyle style)
2183 {
2184         ModestFolderViewPrivate *priv;
2185
2186         g_return_if_fail (self);
2187         
2188         priv = MODEST_FOLDER_VIEW_GET_PRIVATE(self);
2189
2190         priv->style = style;
2191 }
2192
2193 void
2194 modest_folder_view_set_account_id_of_visible_server_account (ModestFolderView *self,
2195                                                              const gchar *account_id)
2196 {
2197         ModestFolderViewPrivate *priv;
2198         GtkTreeModel *model;
2199
2200         g_return_if_fail (self);
2201         
2202         priv = MODEST_FOLDER_VIEW_GET_PRIVATE(self);
2203
2204         /* This will be used by the filter_row callback,
2205          * to decided which rows to show: */
2206         if (priv->visible_account_id) {
2207                 g_free (priv->visible_account_id);
2208                 priv->visible_account_id = NULL;
2209         }
2210         if (account_id)
2211                 priv->visible_account_id = g_strdup (account_id);
2212
2213         /* Refilter */
2214         model = gtk_tree_view_get_model (GTK_TREE_VIEW (self));
2215         if (GTK_IS_TREE_MODEL_FILTER (model))
2216                 gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (model));
2217
2218         /* Save settings to gconf */
2219         modest_widget_memory_save (modest_runtime_get_conf (), G_OBJECT(self),
2220                                    MODEST_CONF_FOLDER_VIEW_KEY);
2221 }
2222
2223 const gchar *
2224 modest_folder_view_get_account_id_of_visible_server_account (ModestFolderView *self)
2225 {
2226         ModestFolderViewPrivate *priv;
2227
2228         g_return_val_if_fail (self, NULL);
2229         
2230         priv = MODEST_FOLDER_VIEW_GET_PRIVATE(self);
2231
2232         return (const gchar *) priv->visible_account_id;
2233 }
2234
2235 static gboolean
2236 find_inbox_iter (GtkTreeModel *model, GtkTreeIter *iter, GtkTreeIter *inbox_iter)
2237 {
2238         do {
2239                 GtkTreeIter child;
2240                 TnyFolderType type = TNY_FOLDER_TYPE_UNKNOWN;
2241
2242                 gtk_tree_model_get (model, iter, 
2243                                     TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, 
2244                                     &type, -1);
2245                         
2246                 gboolean result = FALSE;
2247                 if (type == TNY_FOLDER_TYPE_INBOX) {
2248                         result = TRUE;
2249                 }               
2250                 if (result) {
2251                         *inbox_iter = *iter;
2252                         return TRUE;
2253                 }
2254
2255                 if (gtk_tree_model_iter_children (model, &child, iter)) {
2256                         if (find_inbox_iter (model, &child, inbox_iter))
2257                                 return TRUE;
2258                 }
2259
2260         } while (gtk_tree_model_iter_next (model, iter));
2261
2262         return FALSE;
2263 }
2264
2265
2266
2267
2268 void 
2269 modest_folder_view_select_first_inbox_or_local (ModestFolderView *self)
2270 {
2271         GtkTreeModel *model;
2272         GtkTreeIter iter, inbox_iter;
2273         GtkTreeSelection *sel;
2274         GtkTreePath *path = NULL;
2275
2276         model = gtk_tree_view_get_model (GTK_TREE_VIEW (self));
2277         if (!model)
2278                 return;
2279
2280         expand_root_items (self);
2281         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
2282
2283         gtk_tree_model_get_iter_first (model, &iter);
2284
2285         if (find_inbox_iter (model, &iter, &inbox_iter))
2286                 path = gtk_tree_model_get_path (model, &inbox_iter);
2287         else
2288                 path = gtk_tree_path_new_first ();
2289
2290         /* Select the row and free */
2291         gtk_tree_view_set_cursor (GTK_TREE_VIEW (self), path, NULL, FALSE);
2292         gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (self), path, NULL, FALSE, 0.0, 0.0);
2293         gtk_tree_path_free (path);
2294
2295         /* set focus */
2296         gtk_widget_grab_focus (GTK_WIDGET(self));
2297 }
2298
2299
2300 /* recursive */
2301 static gboolean
2302 find_folder_iter (GtkTreeModel *model, GtkTreeIter *iter, GtkTreeIter *folder_iter, 
2303                   TnyFolder* folder)
2304 {
2305         do {
2306                 GtkTreeIter child;
2307                 TnyFolderType type = TNY_FOLDER_TYPE_UNKNOWN;
2308                 TnyFolder* a_folder;
2309                 gchar *name = NULL;
2310                 
2311                 gtk_tree_model_get (model, iter, 
2312                                     TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &a_folder,
2313                                     TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN, &name,
2314                                     TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &type, 
2315                                     -1);                
2316                 g_free (name);
2317
2318                 if (folder == a_folder) {
2319                         g_object_unref (a_folder);
2320                         *folder_iter = *iter;
2321                         return TRUE;
2322                 }
2323                 g_object_unref (a_folder);
2324                 
2325                 if (gtk_tree_model_iter_children (model, &child, iter)) {
2326                         if (find_folder_iter (model, &child, folder_iter, folder)) 
2327                                 return TRUE;
2328                 }
2329
2330         } while (gtk_tree_model_iter_next (model, iter));
2331
2332         return FALSE;
2333 }
2334
2335
2336 static void
2337 on_row_inserted_maybe_select_folder (GtkTreeModel *tree_model, GtkTreePath  *path, GtkTreeIter *iter,
2338                                      ModestFolderView *self)
2339 {
2340         ModestFolderViewPrivate *priv = NULL;
2341         GtkTreeSelection *sel;
2342         TnyFolderType type = TNY_FOLDER_TYPE_UNKNOWN;
2343         GObject *instance = NULL;
2344
2345         if (!MODEST_IS_FOLDER_VIEW(self))
2346                 return;
2347         
2348         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (self);
2349
2350         priv->reexpand = TRUE;
2351
2352         gtk_tree_model_get (tree_model, iter, 
2353                             TNY_GTK_FOLDER_STORE_TREE_MODEL_TYPE_COLUMN, &type,
2354                             TNY_GTK_FOLDER_STORE_TREE_MODEL_INSTANCE_COLUMN, &instance,
2355                             -1);
2356         if (type == TNY_FOLDER_TYPE_INBOX && priv->folder_to_select == NULL) {
2357                 priv->folder_to_select = g_object_ref (instance);
2358         }
2359         g_object_unref (instance);
2360
2361         
2362         if (priv->folder_to_select) {
2363                 
2364                 if (!modest_folder_view_select_folder (self, priv->folder_to_select,
2365                                                        FALSE)) {
2366                         GtkTreePath *path;
2367                         path = gtk_tree_model_get_path (tree_model, iter);
2368                         gtk_tree_view_expand_to_path (GTK_TREE_VIEW(self), path);
2369                         
2370                         sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
2371
2372                         gtk_tree_selection_select_iter (sel, iter);
2373                         gtk_tree_view_set_cursor (GTK_TREE_VIEW(self), path, NULL, FALSE);
2374
2375                         gtk_tree_path_free (path);
2376                 
2377                 }
2378
2379                 /* Disable next */
2380                 modest_folder_view_disable_next_folder_selection (self);
2381 /*              g_object_unref (priv->folder_to_select); */
2382 /*              priv->folder_to_select = NULL; */
2383         }
2384 }
2385
2386
2387 void
2388 modest_folder_view_disable_next_folder_selection (ModestFolderView *self) 
2389 {
2390         ModestFolderViewPrivate *priv = NULL;
2391
2392         g_return_if_fail (MODEST_IS_FOLDER_VIEW (self));        
2393         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (self);
2394
2395         if (priv->folder_to_select)
2396                 g_object_unref(priv->folder_to_select);
2397         
2398         priv->folder_to_select = NULL;
2399 }
2400
2401 gboolean
2402 modest_folder_view_select_folder (ModestFolderView *self, TnyFolder *folder, 
2403                                   gboolean after_change)
2404 {
2405         GtkTreeModel *model;
2406         GtkTreeIter iter, folder_iter;
2407         GtkTreeSelection *sel;
2408         ModestFolderViewPrivate *priv = NULL;
2409         
2410         g_return_val_if_fail (MODEST_IS_FOLDER_VIEW (self), FALSE);     
2411         g_return_val_if_fail (TNY_IS_FOLDER (folder), FALSE);   
2412                 
2413         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (self);
2414
2415         if (after_change) {
2416
2417                 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
2418                 gtk_tree_selection_unselect_all (sel);
2419
2420                 if (priv->folder_to_select)
2421                         g_object_unref(priv->folder_to_select);
2422                 priv->folder_to_select = TNY_FOLDER(g_object_ref(folder));
2423                 return TRUE;
2424         }
2425                 
2426         model = gtk_tree_view_get_model (GTK_TREE_VIEW (self));
2427         if (!model)
2428                 return FALSE;
2429
2430                 
2431         gtk_tree_model_get_iter_first (model, &iter);
2432         if (find_folder_iter (model, &iter, &folder_iter, folder)) {
2433                 GtkTreePath *path;
2434
2435                 path = gtk_tree_model_get_path (model, &folder_iter);
2436                 gtk_tree_view_expand_to_path (GTK_TREE_VIEW(self), path);
2437
2438                 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self));
2439                 gtk_tree_selection_select_iter (sel, &folder_iter);
2440                 gtk_tree_view_set_cursor (GTK_TREE_VIEW(self), path, NULL, FALSE);
2441
2442                 gtk_tree_path_free (path);
2443                 return TRUE;
2444         }
2445         return FALSE;
2446 }
2447
2448
2449 void 
2450 modest_folder_view_copy_selection (ModestFolderView *folder_view)
2451 {
2452         /* Copy selection */
2453         _clipboard_set_selected_data (folder_view, FALSE);
2454 }
2455
2456 void 
2457 modest_folder_view_cut_selection (ModestFolderView *folder_view)
2458 {
2459         ModestFolderViewPrivate *priv = NULL;
2460         GtkTreeModel *model = NULL;
2461         const gchar **hidding = NULL;
2462         guint i, n_selected;
2463
2464         g_return_if_fail (MODEST_IS_FOLDER_VIEW (folder_view));
2465         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (folder_view);
2466
2467         /* Copy selection */
2468         if (!_clipboard_set_selected_data (folder_view, TRUE))
2469                 return;
2470
2471         /* Get hidding ids */
2472         hidding = modest_email_clipboard_get_hidding_ids (priv->clipboard, &n_selected); 
2473         
2474         /* Clear hidding array created by previous cut operation */
2475         _clear_hidding_filter (MODEST_FOLDER_VIEW (folder_view));
2476
2477         /* Copy hidding array */
2478         priv->n_selected = n_selected;
2479         priv->hidding_ids = g_malloc0(sizeof(gchar *) * n_selected);
2480         for (i=0; i < n_selected; i++) 
2481                 priv->hidding_ids[i] = g_strdup(hidding[i]);            
2482
2483         /* Hide cut folders */
2484         model = gtk_tree_view_get_model (GTK_TREE_VIEW (folder_view));
2485         gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (model));
2486 }
2487
2488 void
2489 modest_folder_view_copy_model (ModestFolderView *folder_view_src,
2490                                ModestFolderView *folder_view_dst)
2491 {
2492         GtkTreeModel *filter_model = NULL;
2493         GtkTreeModel *model = NULL;
2494         GtkTreeModel *new_filter_model = NULL;
2495         
2496         g_return_if_fail (MODEST_IS_FOLDER_VIEW (folder_view_src));
2497         g_return_if_fail (MODEST_IS_FOLDER_VIEW (folder_view_dst));
2498
2499         /* Get src model*/
2500         filter_model = gtk_tree_view_get_model (GTK_TREE_VIEW (folder_view_src));
2501         model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER(filter_model));
2502
2503         /* Build new filter model */
2504         new_filter_model = gtk_tree_model_filter_new (model, NULL);     
2505         gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (new_filter_model),
2506                                                 filter_row,
2507                                                 folder_view_dst,
2508                                                 NULL);
2509         /* Set copied model */
2510         gtk_tree_view_set_model (GTK_TREE_VIEW (folder_view_dst), new_filter_model);
2511         g_signal_connect (G_OBJECT(new_filter_model), "row-inserted",
2512                           (GCallback) on_row_inserted_maybe_select_folder, folder_view_dst);
2513
2514         /* Free */
2515         g_object_unref (new_filter_model);
2516 }
2517
2518 void
2519 modest_folder_view_show_non_move_folders (ModestFolderView *folder_view,
2520                                           gboolean show)
2521 {
2522         GtkTreeModel *model = NULL;
2523         ModestFolderViewPrivate* priv = MODEST_FOLDER_VIEW_GET_PRIVATE(folder_view);
2524         priv->show_non_move = show;
2525 /*      modest_folder_view_update_model(folder_view, */
2526 /*                                      TNY_ACCOUNT_STORE(modest_runtime_get_account_store())); */
2527
2528         /* Hide special folders */
2529         model = gtk_tree_view_get_model (GTK_TREE_VIEW (folder_view));
2530         if (GTK_IS_TREE_MODEL_FILTER (model)) {
2531                 gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (model));
2532         }
2533 }
2534
2535 /* Returns FALSE if it did not selected anything */
2536 static gboolean
2537 _clipboard_set_selected_data (ModestFolderView *folder_view,
2538                               gboolean delete)
2539 {
2540         ModestFolderViewPrivate *priv = NULL;
2541         TnyFolderStore *folder = NULL;
2542         gboolean retval = FALSE;
2543
2544         g_return_val_if_fail (MODEST_IS_FOLDER_VIEW (folder_view), FALSE);
2545         priv = MODEST_FOLDER_VIEW_GET_PRIVATE (folder_view);
2546                 
2547         /* Set selected data on clipboard   */
2548         g_return_val_if_fail (MODEST_IS_EMAIL_CLIPBOARD (priv->clipboard), FALSE);
2549         folder = modest_folder_view_get_selected (folder_view);
2550
2551         /* Do not allow to select an account */
2552         if (TNY_IS_FOLDER (folder)) {
2553                 modest_email_clipboard_set_data (priv->clipboard, TNY_FOLDER(folder), NULL, delete);
2554                 retval = TRUE;
2555         }
2556
2557         /* Free */
2558         g_object_unref (folder);
2559
2560         return retval;
2561 }
2562
2563 static void
2564 _clear_hidding_filter (ModestFolderView *folder_view) 
2565 {
2566         ModestFolderViewPrivate *priv;
2567         guint i;
2568         
2569         g_return_if_fail (MODEST_IS_FOLDER_VIEW (folder_view)); 
2570         priv = MODEST_FOLDER_VIEW_GET_PRIVATE(folder_view);
2571
2572         if (priv->hidding_ids != NULL) {
2573                 for (i=0; i < priv->n_selected; i++) 
2574                         g_free (priv->hidding_ids[i]);
2575                 g_free(priv->hidding_ids);
2576         }       
2577 }
2578
2579
2580 static void 
2581 on_display_name_changed (ModestAccountMgr *mgr, 
2582                          const gchar *account,
2583                          gpointer user_data)
2584 {
2585         ModestFolderView *self;
2586
2587         self = MODEST_FOLDER_VIEW (user_data);
2588
2589         /* Force a redraw */
2590 #if GTK_CHECK_VERSION(2, 8, 0)
2591         GtkTreeViewColumn * tree_column;
2592         
2593         tree_column = gtk_tree_view_get_column (GTK_TREE_VIEW (self), 
2594                                                 TNY_GTK_FOLDER_STORE_TREE_MODEL_NAME_COLUMN);
2595         gtk_tree_view_column_queue_resize (tree_column);
2596 #else
2597         gtk_widget_queue_draw (GTK_WIDGET (self));
2598 #endif
2599 }