2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-03-09 15:33:52 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-06 22:33:02 +03:00
|
|
|
#include <LibGUI/Model.h>
|
2019-03-09 15:33:52 +03:00
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
namespace GUI {
|
|
|
|
|
2020-07-11 15:47:26 +03:00
|
|
|
class SortingProxyModel final : public Model
|
|
|
|
, private ModelClient {
|
2019-03-09 15:33:52 +03:00
|
|
|
public:
|
2020-02-02 17:07:41 +03:00
|
|
|
static NonnullRefPtr<SortingProxyModel> create(NonnullRefPtr<Model>&& model) { return adopt(*new SortingProxyModel(move(model))); }
|
|
|
|
virtual ~SortingProxyModel() override;
|
2019-03-09 15:33:52 +03:00
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
virtual int row_count(const ModelIndex& = ModelIndex()) const override;
|
|
|
|
virtual int column_count(const ModelIndex& = ModelIndex()) const override;
|
2019-03-09 15:33:52 +03:00
|
|
|
virtual String column_name(int) const override;
|
2020-02-02 17:07:41 +03:00
|
|
|
virtual Variant data(const ModelIndex&, Role = Role::Display) const override;
|
2019-03-09 15:33:52 +03:00
|
|
|
virtual void update() override;
|
2020-01-22 21:15:46 +03:00
|
|
|
virtual StringView drag_data_type() const override;
|
2019-03-09 15:33:52 +03:00
|
|
|
|
|
|
|
virtual int key_column() const override { return m_key_column; }
|
2020-02-02 17:07:41 +03:00
|
|
|
virtual SortOrder sort_order() const override { return m_sort_order; }
|
|
|
|
virtual void set_key_column_and_sort_order(int, SortOrder) override;
|
2020-05-21 20:45:15 +03:00
|
|
|
virtual bool is_column_sortable(int column_index) const override;
|
2019-03-09 15:33:52 +03:00
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
ModelIndex map_to_target(const ModelIndex&) const;
|
2019-03-09 15:33:52 +03:00
|
|
|
|
2020-07-04 19:40:21 +03:00
|
|
|
Role sort_role() const { return m_sort_role; }
|
|
|
|
void set_sort_role(Role role) { m_sort_role = role; }
|
|
|
|
|
2019-03-09 15:33:52 +03:00
|
|
|
private:
|
2020-02-02 17:07:41 +03:00
|
|
|
explicit SortingProxyModel(NonnullRefPtr<Model>&&);
|
2019-03-20 05:27:07 +03:00
|
|
|
|
2020-07-11 15:47:26 +03:00
|
|
|
virtual void on_model_update(unsigned) override;
|
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
Model& target() { return *m_target; }
|
|
|
|
const Model& target() const { return *m_target; }
|
2019-03-09 15:33:52 +03:00
|
|
|
|
2020-07-11 15:47:26 +03:00
|
|
|
void resort(unsigned flags = Model::UpdateFlag::DontInvalidateIndexes);
|
2019-03-09 15:33:52 +03:00
|
|
|
|
2019-08-11 19:11:25 +03:00
|
|
|
void set_sorting_case_sensitive(bool b) { m_sorting_case_sensitive = b; }
|
|
|
|
bool is_sorting_case_sensitive() { return m_sorting_case_sensitive; }
|
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
NonnullRefPtr<Model> m_target;
|
2019-03-09 15:33:52 +03:00
|
|
|
Vector<int> m_row_mappings;
|
|
|
|
int m_key_column { -1 };
|
2020-02-02 17:07:41 +03:00
|
|
|
SortOrder m_sort_order { SortOrder::Ascending };
|
2020-07-04 19:40:21 +03:00
|
|
|
Role m_sort_role { Role::Sort };
|
2019-08-11 19:11:25 +03:00
|
|
|
bool m_sorting_case_sensitive { false };
|
2020-07-11 15:47:26 +03:00
|
|
|
bool m_sorting { false };
|
2019-03-09 15:33:52 +03:00
|
|
|
};
|
2020-02-02 17:07:41 +03:00
|
|
|
|
|
|
|
}
|