transmission/qt/TrackerModelFilter.h

34 lines
802 B
C
Raw Normal View History

// This file Copyright © 2010-2022 Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
#pragma once
#include <QSortFilterProxyModel>
#include <libtransmission/tr-macros.h>
class TrackerModelFilter : public QSortFilterProxyModel
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
TR_DISABLE_COPY_MOVE(TrackerModelFilter)
public:
explicit TrackerModelFilter(QObject* parent = nullptr);
void setShowBackupTrackers(bool);
bool showBackupTrackers() const
{
return show_backups_;
}
protected:
2015-06-12 22:12:12 +00:00
// QSortFilterProxyModel
virtual bool filterAcceptsRow(int source_row, QModelIndex const& source_parent) const override;
private:
bool show_backups_ = {};
};