Files
transmission/qt/TorrentFilter.h
Mike Gelfand 07912d230b Use PascalCase for Qt client filenames
Split FileTree.{h,cc} and FilterBar.{h,cc} files so that each class
is in its own file.

This breaks translations (some classes got renamed => context changed),
to be fixed by next commit (along with Tx sync).
2015-06-10 21:27:11 +00:00

55 lines
1.2 KiB
C++

/*
* This file Copyright (C) 2009-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_TORRENT_FILTER_H
#define QTR_TORRENT_FILTER_H
#include <QSortFilterProxyModel>
#include <QMetaType>
#include <QVariant>
class QString;
class QWidget;
class FilterMode;
class Prefs;
class Torrent;
class TorrentFilter: public QSortFilterProxyModel
{
Q_OBJECT
public:
TorrentFilter (const Prefs& prefs);
virtual ~TorrentFilter ();
public:
enum TextMode { FILTER_BY_NAME, FILTER_BY_FILES, FILTER_BY_TRACKER };
int hiddenRowCount () const;
private slots:
void refreshPref (int key);
protected:
virtual bool filterAcceptsRow (int, const QModelIndex&) const;
virtual bool lessThan (const QModelIndex&, const QModelIndex&) const;
private:
bool activityFilterAcceptsTorrent (const Torrent * tor, const FilterMode& mode) const;
bool trackerFilterAcceptsTorrent (const Torrent * tor, const QString& tracker) const;
public:
void countTorrentsPerMode (int * setmeCounts) const;
private:
const Prefs& myPrefs;
};
#endif // QTR_TORRENT_FILTER_H