blob: 6fac46b8f17597bdd8bd4fa3a862887285495cdc (
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
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGUI/AbstractView.h>
#include <LibGUI/Model.h>
#include <LibGUI/ModelSelection.h>
namespace GUI {
void ModelSelection::remove_all_matching(Function<bool(ModelIndex const&)> const& filter)
{
if (m_indices.remove_all_matching(filter))
notify_selection_changed();
}
void ModelSelection::set(ModelIndex const& index)
{
VERIFY(index.is_valid());
if (m_indices.size() == 1 && m_indices.contains(index))
return;
m_indices.clear();
m_indices.set(index);
notify_selection_changed();
}
void ModelSelection::add(ModelIndex const& index)
{
VERIFY(index.is_valid());
if (m_indices.set(index) == AK::HashSetResult::InsertedNewEntry)
notify_selection_changed();
}
void ModelSelection::add_all(Vector<ModelIndex> const& indices)
{
{
TemporaryChange notify_change { m_disable_notify, true };
for (auto& index : indices)
add(index);
}
if (m_notify_pending)
notify_selection_changed();
}
void ModelSelection::toggle(ModelIndex const& index)
{
VERIFY(index.is_valid());
if (m_indices.contains(index))
m_indices.remove(index);
else
m_indices.set(index);
notify_selection_changed();
}
bool ModelSelection::remove(ModelIndex const& index)
{
VERIFY(index.is_valid());
if (!m_indices.contains(index))
return false;
m_indices.remove(index);
notify_selection_changed();
return true;
}
void ModelSelection::clear()
{
if (m_indices.is_empty())
return;
m_indices.clear();
notify_selection_changed();
}
void ModelSelection::notify_selection_changed()
{
if (!m_disable_notify) {
m_view.notify_selection_changed({});
m_notify_pending = false;
} else {
m_notify_pending = true;
}
}
}
|