FEATURE: Added torrent filtering by name

This commit is contained in:
Christophe Dumez 2010-08-20 12:27:20 +00:00
commit 63ee1c36e8
43 changed files with 2285 additions and 1931 deletions

View file

@ -82,6 +82,7 @@ public slots:
void previewSelectedTorrents();
void hidePriorityColumn(bool hide);
void displayDLHoSMenu(const QPoint&);
void applyNameFilter(QString name);
void applyStatusFilter(int f);
void applyLabelFilter(QString label);
void previewFile(QString filePath);
@ -130,7 +131,8 @@ signals:
private:
TransferListDelegate *listDelegate;
QStandardItemModel *listModel;
QSortFilterProxyModel *proxyModel;
QSortFilterProxyModel *nameFilterModel;
QSortFilterProxyModel *statusFilterModel;
QSortFilterProxyModel *labelFilterModel;
Bittorrent* BTSession;
QTimer *refreshTimer;