Files
transmission/gtk/SortListModel.h
Yat Ho fc309238ce ci(gtk): run clang-tidy (#8251)
* ci: infra for parallel clang-tidy runs

* ci(gtk): run clang-tidy

* chore(gtk): silence warnings

* code review: use constexpr auto

* code review: use constants over magic numbers in Utils.cc

* code review: use `std::ignore` to ignore return value

* code review: add back visibility labels that indicated sections

* fix: wrap each command argument in single quotes
2026-02-17 17:53:01 -06:00

49 lines
1.4 KiB
C++

// This file Copyright © Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
#pragma once
#include "GtkCompat.h"
#include <giomm/listmodel.h>
#if GTKMM_CHECK_VERSION(4, 0, 0)
#include <gtkmm/sortlistmodel.h>
#else
#include <gtkmm/treemodel.h>
#include <gtkmm/treemodelsort.h>
#endif
template<typename ItemT>
class SorterBase;
template<typename ItemT>
class SortListModel : public IF_GTKMM4(Gtk::SortListModel, Gtk::TreeModelSort)
{
public:
using SorterType = SorterBase<ItemT>;
public:
SortListModel(Glib::RefPtr<Gio::ListModel> const& model, Glib::RefPtr<SorterType> const& sorter);
#if !GTKMM_CHECK_VERSION(4, 0, 0)
SortListModel(Glib::RefPtr<Gtk::TreeModel> const& model, Glib::RefPtr<SorterType> const& sorter);
~SortListModel() override;
SortListModel(SortListModel const& other) = delete;
SortListModel(SortListModel&& other) = delete;
SortListModel operator=(SortListModel const& other) = delete;
SortListModel operator=(SortListModel&& other) = delete;
#endif
template<typename ModelT>
static Glib::RefPtr<SortListModel<ItemT>> create(Glib::RefPtr<ModelT> const& model, Glib::RefPtr<SorterType> const& sorter);
private:
#if !GTKMM_CHECK_VERSION(4, 0, 0)
sigc::connection signal_changed_tag_;
#endif
};