* Removed the code that checks the message count before refreshing, the message...
[modest] / src / modest-widget-memory.c
index e09e0a2..794f7e8 100644 (file)
@@ -29,7 +29,8 @@
 
 #include <modest-widget-memory.h>
 #include <modest-widget-memory-priv.h>
-
+#include <modest-runtime.h>
+#include <modest-account-mgr-helpers.h>
 #include <modest-tny-platform-factory.h>
 #include <modest-tny-folder.h>
 #include <widgets/modest-header-view.h>
@@ -240,6 +241,9 @@ restore_settings_paned (ModestConf *conf, GtkPaned *paned, const gchar *name)
        if (modest_conf_key_exists (conf, key, NULL)) {
                pos = modest_conf_get_int (conf, key, NULL);
                gtk_paned_set_position (paned, pos);
+       } else {
+               /* The initial position must follow the 30/70 rule */
+               gtk_paned_set_position (paned, GTK_WIDGET(paned)->requisition.width/3);
        }
 
        g_free (key);
@@ -258,7 +262,8 @@ save_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
        TnyFolderType type;
        ModestHeaderViewStyle style;
        gint sort_colid;
-
+       GtkSortType sort_type;
+       
        folder = modest_header_view_get_folder (header_view);
        if (!folder || modest_header_view_is_empty (header_view))
                return TRUE; /* no non-empty folder: no settings */
@@ -276,6 +281,7 @@ save_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
         * are also used in modest-init.
         */
        sort_colid = modest_header_view_get_sort_column_id (header_view, type); 
+       sort_type = modest_header_view_get_sort_type (header_view, type); 
        while (cursor) {
 
                int col_id, width, sort;
@@ -286,10 +292,9 @@ save_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
                                                            MODEST_HEADER_VIEW_COLUMN));
                width = gtk_tree_view_column_get_width (col);
                sort = 0;
-/*             if (sort_colid == gtk_tree_view_column_get_sort_column_id(col)) */
                if (sort_colid == col_id)
-                       sort = 1;
-                       
+                       sort = (sort_type == GTK_SORT_ASCENDING) ? 1:0;
+               
                g_string_append_printf (str, "%d:%d:%d ", col_id, width, sort);
                cursor = g_list_next (cursor);
        }
@@ -315,13 +320,12 @@ restore_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
        TnyFolder *folder;
        TnyFolderType type;
        ModestHeaderViewStyle style;
-
+       
        folder = modest_header_view_get_folder (header_view);
        if (!folder || modest_header_view_is_empty (header_view))
                return TRUE; /* no non-empty folder: no settings */
        
-       type = modest_tny_folder_guess_folder_type (folder);
-       style = modest_header_view_get_style   (header_view);
+       type = modest_tny_folder_guess_folder_type (folder);    style = modest_header_view_get_style   (header_view);
 
        key = _modest_widget_memory_get_keyname_with_double_type (name, type, style,
                                                                  MODEST_WIDGET_MEMORY_PARAM_COLUMN_WIDTH);
@@ -334,7 +338,8 @@ restore_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
                GtkTreeModel *sortable;
 
                cursor = data = modest_conf_get_string (conf, key, NULL);
-               while (cursor && sscanf (cursor, "%u:%u:%u ", &col, &width, &sort) == 3) {
+               while (cursor && sscanf (cursor, "%d:%d:%d ", &col, &width, &sort) == 3) {
+
                        cols      = g_list_append (cols, GINT_TO_POINTER(col));
                        colwidths = g_list_append (colwidths, GINT_TO_POINTER(width));
                        colsortables = g_list_append (colsortables, GINT_TO_POINTER(sort));
@@ -344,7 +349,6 @@ restore_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
                
                if (cols) {
                        GList *viewcolumns, *colcursor, *widthcursor, *sortablecursor;
-/*                     gint sort_colid = -1; */
                        modest_header_view_set_columns (header_view, cols, type);
                        sortable = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
 
@@ -357,17 +361,13 @@ restore_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
                                if (width > 0)
                                        gtk_tree_view_column_set_max_width(GTK_TREE_VIEW_COLUMN(colcursor->data),
                                                                           width);
-                               if (sort > 0) {
+                               if (sort != 0) {
                                        int colid = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(colcursor->data), MODEST_HEADER_VIEW_COLUMN));
-                                       modest_header_view_set_sort_column_id (header_view, colid, type);
-/*                                     sort_colid = gtk_tree_view_column_get_sort_column_id (GTK_TREE_VIEW_COLUMN(colcursor->data)); */
-/*                                     modest_header_view_set_sort_column_id (header_view, sort_colid, type); */
-/*                                     gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE(sortable), */
-/*                                                                           sort_colid, */
-/*                                                                           GTK_SORT_DESCENDING); */
+                                       GtkSortType sort_type = (sort == 1) ? GTK_SORT_ASCENDING : GTK_SORT_DESCENDING; 
+                                       modest_header_view_set_sort_params (header_view, colid, sort_type, type);
                                        gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE(sortable),
                                                                              colid,
-                                                                             GTK_SORT_DESCENDING);
+                                                                             sort_type);
                                        gtk_tree_sortable_sort_column_changed (GTK_TREE_SORTABLE(sortable));
                                }
                                colcursor = g_list_next (colcursor);
@@ -394,20 +394,70 @@ static gboolean
 save_settings_folder_view (ModestConf *conf, ModestFolderView *folder_view,
                           const gchar *name)
 {
-       return TRUE; /* FIXME: implement this */
+       gchar *key;
+       const gchar* account_id;
+
+       /* Save the visible account */
+       key = _modest_widget_memory_get_keyname (name, "visible_server_account_id");
+
+       account_id = modest_folder_view_get_account_id_of_visible_server_account (folder_view);
+       if (account_id)
+               modest_conf_set_string (conf, key, account_id, NULL);
+       else
+               modest_conf_remove_key (conf, key, NULL);
+       g_free (key);
+
+       return TRUE;
 }
 
 static gboolean
-restore_settings_folder_view (ModestConf *conf, ModestFolderView *folder_view,
+restore_settings_folder_view (ModestConf *conf, 
+                             ModestFolderView *folder_view,
                              const gchar *name)
 {
-       return TRUE; /* FIXME: implement this */
+       gchar *key, *account_id;
+
+       /* Restore the visible account */
+       key = _modest_widget_memory_get_keyname (name, "visible_server_account_id");
+
+       if (modest_conf_key_exists (conf, key, NULL)) {
+               account_id = modest_conf_get_string (conf, key, NULL);
+               modest_folder_view_set_account_id_of_visible_server_account (folder_view, 
+                                                                            (const gchar *) account_id);
+               g_free (account_id);
+       } else {
+               ModestAccountMgr *mgr;
+               gchar *default_acc;
+
+               /* If there is no visible account id in the
+                  configuration then pick the default account as
+                  visible account */
+               mgr = modest_runtime_get_account_mgr ();
+               default_acc = modest_account_mgr_get_default_account (mgr);
+               if (default_acc) {
+                       ModestAccountData *acc_data;
+                       const gchar *server_acc_id;
+
+                       acc_data = modest_account_mgr_get_account_data (mgr, (const gchar*) default_acc);
+                       server_acc_id = (const gchar *) acc_data->store_account->account_name;
+
+                       modest_conf_set_string (conf, key, server_acc_id, NULL);
+                       modest_folder_view_set_account_id_of_visible_server_account (folder_view, server_acc_id);
+
+                       g_free (default_acc);
+               }
+       }
+
+       g_free (key);
+
+       return TRUE;
 }
 
 
 static gboolean
-save_settings_msg_view (ModestConf *conf, ModestMsgView *msg_view,
-                          const gchar *name)
+save_settings_msg_view (ModestConf *conf, 
+                       ModestMsgView *msg_view,
+                       const gchar *name)
 {
        return TRUE; /* FIXME: implement this */
 }