2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2019-09-07 19:14:59 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-07-11 06:47:26 -06:00
|
|
|
#include <AK/Badge.h>
|
2019-09-07 19:14:59 +02:00
|
|
|
#include <AK/HashTable.h>
|
2020-09-18 09:49:51 +02:00
|
|
|
#include <AK/Noncopyable.h>
|
2020-07-11 06:47:26 -06:00
|
|
|
#include <AK/TemporaryChange.h>
|
2020-02-16 09:17:49 +01:00
|
|
|
#include <AK/Vector.h>
|
2020-02-06 20:33:02 +01:00
|
|
|
#include <LibGUI/ModelIndex.h>
|
2019-09-07 19:14:59 +02:00
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
namespace GUI {
|
2019-09-07 19:14:59 +02:00
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
class ModelSelection {
|
2020-08-14 12:04:03 +02:00
|
|
|
AK_MAKE_NONCOPYABLE(ModelSelection);
|
|
|
|
|
AK_MAKE_NONMOVABLE(ModelSelection);
|
|
|
|
|
|
2019-09-07 19:14:59 +02:00
|
|
|
public:
|
2020-02-02 15:07:41 +01:00
|
|
|
ModelSelection(AbstractView& view)
|
2019-09-07 19:14:59 +02:00
|
|
|
: m_view(view)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 22:23:52 +02:00
|
|
|
int size() const { return m_indices.size(); }
|
|
|
|
|
bool is_empty() const { return m_indices.is_empty(); }
|
|
|
|
|
bool contains(const ModelIndex& index) const { return m_indices.contains(index); }
|
2019-09-07 19:33:58 +02:00
|
|
|
bool contains_row(int row) const
|
|
|
|
|
{
|
2021-04-29 22:23:52 +02:00
|
|
|
for (auto& index : m_indices) {
|
2019-09-07 19:33:58 +02:00
|
|
|
if (index.row() == row)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-09-07 19:14:59 +02:00
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
void set(const ModelIndex&);
|
|
|
|
|
void add(const ModelIndex&);
|
2020-11-30 09:59:14 +03:30
|
|
|
void add_all(const Vector<ModelIndex>&);
|
2020-02-02 15:07:41 +01:00
|
|
|
void toggle(const ModelIndex&);
|
|
|
|
|
bool remove(const ModelIndex&);
|
2019-09-07 19:14:59 +02:00
|
|
|
void clear();
|
|
|
|
|
|
|
|
|
|
template<typename Callback>
|
|
|
|
|
void for_each_index(Callback callback)
|
|
|
|
|
{
|
2021-04-29 22:23:52 +02:00
|
|
|
for (auto& index : indices())
|
2019-09-07 19:14:59 +02:00
|
|
|
callback(index);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-12 18:42:15 +02:00
|
|
|
template<typename Callback>
|
|
|
|
|
void for_each_index(Callback callback) const
|
|
|
|
|
{
|
2021-04-29 22:23:52 +02:00
|
|
|
for (auto& index : indices())
|
2019-09-12 18:42:15 +02:00
|
|
|
callback(index);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 22:23:52 +02:00
|
|
|
Vector<ModelIndex> indices() const
|
2019-09-17 02:26:10 -05:00
|
|
|
{
|
2021-04-29 22:23:52 +02:00
|
|
|
Vector<ModelIndex> selected_indices;
|
2019-09-17 02:26:10 -05:00
|
|
|
|
2021-04-29 22:23:52 +02:00
|
|
|
for (auto& index : m_indices)
|
|
|
|
|
selected_indices.append(index);
|
2020-01-10 19:06:00 +03:00
|
|
|
|
2021-04-29 22:23:52 +02:00
|
|
|
return selected_indices;
|
2019-09-17 02:26:10 -05:00
|
|
|
}
|
|
|
|
|
|
2019-09-07 19:14:59 +02:00
|
|
|
// FIXME: This doesn't guarantee that what you get is the lowest or "first" index selected..
|
2020-02-02 15:07:41 +01:00
|
|
|
ModelIndex first() const
|
2019-09-07 19:14:59 +02:00
|
|
|
{
|
2021-04-29 22:23:52 +02:00
|
|
|
if (m_indices.is_empty())
|
2019-09-07 19:14:59 +02:00
|
|
|
return {};
|
2021-04-29 22:23:52 +02:00
|
|
|
return *m_indices.begin();
|
2019-09-07 19:14:59 +02:00
|
|
|
}
|
|
|
|
|
|
2022-01-05 17:03:49 +01:00
|
|
|
void remove_all_matching(Function<bool(ModelIndex const&)> filter);
|
2020-04-09 09:51:44 +02:00
|
|
|
|
2020-07-11 06:47:26 -06:00
|
|
|
template<typename Function>
|
|
|
|
|
void change_from_model(Badge<SortingProxyModel>, Function f)
|
|
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
TemporaryChange change(m_disable_notify, true);
|
|
|
|
|
m_notify_pending = false;
|
|
|
|
|
f(*this);
|
|
|
|
|
}
|
|
|
|
|
if (m_notify_pending)
|
|
|
|
|
notify_selection_changed();
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-07 19:14:59 +02:00
|
|
|
private:
|
2020-07-11 06:47:26 -06:00
|
|
|
void notify_selection_changed();
|
|
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
AbstractView& m_view;
|
2021-04-29 22:23:52 +02:00
|
|
|
HashTable<ModelIndex> m_indices;
|
2020-07-11 06:47:26 -06:00
|
|
|
bool m_disable_notify { false };
|
|
|
|
|
bool m_notify_pending { false };
|
2019-09-07 19:14:59 +02:00
|
|
|
};
|
2020-02-02 15:07:41 +01:00
|
|
|
|
|
|
|
|
}
|