1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00
transmission/gtk/FilterBase.hh
Mike Gelfand fa091495d6
Refactor sorting and filtering compatibility code (GTK client) (#4558)
* Refactor sorting and filtering compatibility code

Factor out parts of `TorrentFilter` and `TorrentSorter` classes into
reusable `FilterBase<>` and `SorterBase<>` templates.

Factor out filter and sort models setup from `FilterBar` and `Session`
classes into reusable `FilterListModel<>` and `SortListModel<>`
templates.

* Remove unused lambda capture (Clang build failure)
2023-01-08 15:31:03 +00:00

67 lines
1.3 KiB
C++

// This file Copyright © 2022-2023 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 "FilterBase.h"
#if GTKMM_CHECK_VERSION(4, 0, 0)
#include "Utils.h"
#endif
template<typename T>
bool FilterBase<T>::matches_all() const
{
return false;
}
template<typename T>
bool FilterBase<T>::matches_none() const
{
return false;
}
#if GTKMM_CHECK_VERSION(4, 0, 0)
template<typename T>
bool FilterBase<T>::match_vfunc(Glib::RefPtr<Glib::ObjectBase> const& object)
{
auto const concrete_object = gtr_ptr_dynamic_cast<T>(object);
g_return_val_if_fail(concrete_object != nullptr, false);
return match(*concrete_object);
}
template<typename T>
typename FilterBase<T>::Match FilterBase<T>::get_strictness_vfunc()
{
if (matches_all())
{
return Match::ALL;
}
if (matches_none())
{
return Match::NONE;
}
return Match::SOME;
}
#else
template<typename T>
sigc::signal<void(typename FilterBase<T>::Change)>& FilterBase<T>::signal_changed()
{
return signal_changed_;
}
template<typename T>
void FilterBase<T>::changed(Change change)
{
signal_changed_.emit(change);
}
#endif