2007-04-30 Murray Cumming <murrayc@murrayc.com>
[modest] / src / modest-widget-memory.c
index 6d0e62d..6c2ab5b 100644 (file)
@@ -258,7 +258,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 +277,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,8 +288,8 @@ 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))
-                       sort = 1;
+               if (sort_colid == col_id)
+                       sort = (sort_type == GTK_SORT_ASCENDING) ? 1:-1;
                        
                g_string_append_printf (str, "%d:%d:%d ", col_id, width, sort);
                cursor = g_list_next (cursor);
@@ -333,7 +335,7 @@ 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));
@@ -342,31 +344,28 @@ restore_settings_header_view (ModestConf *conf, ModestHeaderView *header_view,
                g_free (data);  
                
                if (cols) {
-                       GList *viewcolumns, *colcursor, *widthcursor, *sortablecursor, *colidcursor;
-                       gint sort_colid = -1;
+                       GList *viewcolumns, *colcursor, *widthcursor, *sortablecursor;
                        modest_header_view_set_columns (header_view, cols, type);
                        sortable = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
 
-                       colidcursor = cols;
                        widthcursor = colwidths;
                        sortablecursor = colsortables;
                        colcursor = viewcolumns = gtk_tree_view_get_columns (GTK_TREE_VIEW(header_view));
-                       while (colcursor && widthcursor && sortablecursor && colidcursor) {
+                       while (colcursor && widthcursor && sortablecursor) {
                                int width = GPOINTER_TO_INT(widthcursor->data);
                                int sort = GPOINTER_TO_INT(sortablecursor->data);
-                               int colid = GPOINTER_TO_INT(colidcursor->data);
                                if (width > 0)
                                        gtk_tree_view_column_set_max_width(GTK_TREE_VIEW_COLUMN(colcursor->data),
                                                                           width);
-                               if (sort > 0) {
-                                       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);
+                               if (sort != 0) {
+                                       int colid = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(colcursor->data), MODEST_HEADER_VIEW_COLUMN));
+                                       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));
                                }
-                               colidcursor = g_list_next (colidcursor);
                                colcursor = g_list_next (colcursor);
                                widthcursor = g_list_next (widthcursor);
                                sortablecursor = g_list_next (sortablecursor);