aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/e-table/e-table-sorted.c
blob: c754f4cff7d018ad6c833e332ec3d6796fca39bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * E-table-sorted.c: Implements a table that sorts another table
 *
 * Author:
 *   Miguel de Icaza (miguel@gnu.org)
 *
 * (C) 1999 Helix Code, Inc.
 */
#include <config.h>
#include <stdlib.h>
#include "e-util/e-util.h"
#include "e-table-sorted.h"

#define PARENT_TYPE E_TABLE_SUBSET_TYPE

static ETableSubsetClass *ets_parent_class;

static void
ets_class_init (GtkObjectClass *klass)
{
    ets_parent_class = gtk_type_class (PARENT_TYPE);
}

E_MAKE_TYPE(e_table_sorted, "ETableSorted", ETableSorted, ets_class_init, NULL, PARENT_TYPE);

static ETableSorted *sort_ets;

static int
my_sort (const void *a, const void *b)
{
    ETableModel *source = E_TABLE_SUBSET (sort_ets)->source;
    const int *ia = (const int *) a;
    const int *ib = (const int *) b;
    void *va, *vb;
    
    va = e_table_model_value_at (source, sort_ets->sort_col, *ia);
    vb = e_table_model_value_at (source, sort_ets->sort_col, *ib);

    return (*sort_ets->compare) (va, vb);
}

static void
do_sort (ETableSorted *ets)
{
    ETableSubset *etss = E_TABLE_SUBSET (ets);
    g_assert (sort_ets == NULL);
    
    sort_ets = ets;
    qsort (etss->map_table, etss->n_map, sizeof (unsigned int), my_sort);
    sort_ets = NULL;
}

ETableModel *
e_table_sorted_new (ETableModel *source, int col, GCompareFunc compare)
{
    ETableSorted *ets = gtk_type_new (E_TABLE_SORTED_TYPE);
    ETableSubset *etss = E_TABLE_SUBSET (ets);
    const int nvals = e_table_model_row_count (source);
    int i;

    if (e_table_subset_construct (etss, source, nvals) == NULL){
        gtk_object_destroy (GTK_OBJECT (ets));
        return NULL;
    }
    
    ets->compare = compare;
    ets->sort_col = col;
    
    /* Init */
    for (i = 0; i < nvals; i++)
        etss->map_table [i] = i;

    do_sort (ets);
    
    return (ETableModel *) ets;
}

void
e_table_sorted_resort (ETableSorted *ets, int col, GCompareFunc compare)
{
    if (col == -1 || compare == NULL)
        do_sort (ets);
    else {
        ets->sort_col = col;
        ets->compare = compare;
        do_sort (ets);
    }
}