transmission/qt/TrackerModelFilter.h

34 lines
729 B
C
Raw Normal View History

/*
* This file Copyright (C) 2010-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
* $Id$
*/
#ifndef QTR_TRACKER_MODEL_FILTER_H
#define QTR_TRACKER_MODEL_FILTER_H
#include <QSortFilterProxyModel>
2015-06-12 22:12:12 +00:00
class TrackerModelFilter: public QSortFilterProxyModel
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
2013-09-14 22:45:04 +00:00
public:
2015-06-12 22:12:12 +00:00
TrackerModelFilter (QObject * parent = nullptr);
2013-09-14 22:45:04 +00:00
void setShowBackupTrackers (bool);
bool showBackupTrackers () const { return myShowBackups; }
2013-09-14 22:45:04 +00:00
protected:
2015-06-12 22:12:12 +00:00
// QSortFilterProxyModel
virtual bool filterAcceptsRow (int sourceRow, const QModelIndex& sourceParent) const;
2013-09-14 22:45:04 +00:00
private:
bool myShowBackups;
};
#endif // QTR_TRACKER_MODEL_FILTER_H