transmission/qt/torrent-filter.h

58 lines
1.3 KiB
C
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) 2010-2014 Mnemosyne LLC
2009-04-09 18:55:47 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2009-04-09 18:55:47 +00:00
*
* $Id$
2009-04-09 18:55:47 +00:00
*/
#ifndef QTR_TORRENT_FILTER_H
#define QTR_TORRENT_FILTER_H
#include <QSortFilterProxyModel>
#include <QMetaType>
#include <QVariant>
class QString;
class QWidget;
2009-04-09 18:55:47 +00:00
class FilterMode;
class Prefs;
class Torrent;
2009-04-09 18:55:47 +00:00
class TorrentFilter: public QSortFilterProxyModel
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
public:
TorrentFilter (Prefs& prefs);
virtual ~TorrentFilter ();
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
public:
enum TextMode { FILTER_BY_NAME, FILTER_BY_FILES, FILTER_BY_TRACKER };
int hiddenRowCount () const;
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
private slots:
void refreshPref (int key);
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
protected:
virtual bool filterAcceptsRow (int, const QModelIndex&) const;
virtual bool lessThan (const QModelIndex&, const QModelIndex&) const;
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
private:
bool activityFilterAcceptsTorrent (const Torrent * tor, const FilterMode& mode) const;
bool trackerFilterAcceptsTorrent (const Torrent * tor, const QString& tracker) const;
2013-09-14 22:45:04 +00:00
public:
void countTorrentsPerMode (int * setmeCounts) const;
2013-09-14 22:45:04 +00:00
private:
Prefs& myPrefs;
2009-04-09 18:55:47 +00:00
};
#endif