mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
There're places where manual intervention is still required as uncrustify is not ideal (unfortunately), but at least one may rely on it to do the right thing most of the time (e.g. when sending in a patch). The style itself is quite different from what we had before but making it uniform across all the codebase is the key. I also hope that it'll make the code more readable (YMMV) and less sensitive to further changes.
54 lines
1.1 KiB
C++
54 lines
1.1 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.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
class QString;
|
|
|
|
class FilterMode;
|
|
class Prefs;
|
|
class Torrent;
|
|
|
|
class TorrentFilter : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum TextMode
|
|
{
|
|
FILTER_BY_NAME,
|
|
FILTER_BY_FILES,
|
|
FILTER_BY_TRACKER
|
|
};
|
|
|
|
public:
|
|
TorrentFilter(const Prefs& prefs);
|
|
virtual ~TorrentFilter();
|
|
|
|
int hiddenRowCount() const;
|
|
|
|
void countTorrentsPerMode(int* setmeCounts) const;
|
|
|
|
protected:
|
|
// QSortFilterProxyModel
|
|
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;
|
|
|
|
private slots:
|
|
void refreshPref(int key);
|
|
|
|
private:
|
|
const Prefs& myPrefs;
|
|
};
|