summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GSortingProxyModel.cpp
blob: 5bf379695ba29f123cfc3c1c9d19488ce0b47a46 (plain)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include <AK/QuickSort.h>
#include <LibGUI/GSortingProxyModel.h>
#include <stdio.h>
#include <stdlib.h>

GSortingProxyModel::GSortingProxyModel(NonnullRefPtr<GModel>&& target)
    : m_target(move(target))
    , m_key_column(-1)
{
    m_target->on_model_update = [this](GModel&) {
        resort();
    };
}

GSortingProxyModel::~GSortingProxyModel()
{
}

int GSortingProxyModel::row_count(const GModelIndex& index) const
{
    return target().row_count(index);
}

int GSortingProxyModel::column_count(const GModelIndex& index) const
{
    return target().column_count(index);
}

GModelIndex GSortingProxyModel::map_to_target(const GModelIndex& index) const
{
    if (!index.is_valid())
        return {};
    if (index.row() >= m_row_mappings.size() || index.column() >= column_count())
        return {};
    return target().index(m_row_mappings[index.row()], index.column());
}

String GSortingProxyModel::row_name(int index) const
{
    return target().row_name(index);
}

String GSortingProxyModel::column_name(int index) const
{
    return target().column_name(index);
}

GModel::ColumnMetadata GSortingProxyModel::column_metadata(int index) const
{
    return target().column_metadata(index);
}

GVariant GSortingProxyModel::data(const GModelIndex& index, Role role) const
{
    return target().data(map_to_target(index), role);
}

void GSortingProxyModel::update()
{
    target().update();
}

void GSortingProxyModel::set_key_column_and_sort_order(int column, GSortOrder sort_order)
{
    if (column == m_key_column && sort_order == m_sort_order)
        return;

    ASSERT(column >= 0 && column < column_count());
    m_key_column = column;
    m_sort_order = sort_order;
    resort();
}

void GSortingProxyModel::resort()
{
    int previously_selected_target_row = map_to_target(selected_index()).row();
    int row_count = target().row_count();
    m_row_mappings.resize(row_count);
    for (int i = 0; i < row_count; ++i)
        m_row_mappings[i] = i;
    if (m_key_column == -1) {
        did_update();
        return;
    }
    quick_sort(m_row_mappings.begin(), m_row_mappings.end(), [&](auto row1, auto row2) -> bool {
        auto data1 = target().data(target().index(row1, m_key_column), GModel::Role::Sort);
        auto data2 = target().data(target().index(row2, m_key_column), GModel::Role::Sort);
        if (data1 == data2)
            return 0;
        bool is_less_than = data1 < data2;
        return m_sort_order == GSortOrder::Ascending ? is_less_than : !is_less_than;
    });
    if (previously_selected_target_row != -1) {
        // Preserve selection.
        ASSERT(m_row_mappings.size() == row_count);
        for (int i = 0; i < row_count; ++i) {
            if (m_row_mappings[i] == previously_selected_target_row) {
                set_selected_index(index(i, 0));
                break;
            }
        }
    }

    did_update();
}