mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-27 06:54:20 +00:00
191cdc2849
Also move the names to Utils namespace.
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
#ifndef SEARCHSORTMODEL_H
|
|
#define SEARCHSORTMODEL_H
|
|
|
|
#include <QSortFilterProxyModel>
|
|
#include "core/utils/string.h"
|
|
|
|
class SearchSortModel : public QSortFilterProxyModel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum SearchColumn { NAME, SIZE, SEEDS, LEECHS, ENGINE_URL, DL_LINK, DESC_LINK, NB_SEARCH_COLUMNS };
|
|
|
|
SearchSortModel(QObject *parent = 0) : QSortFilterProxyModel(parent) {}
|
|
|
|
protected:
|
|
virtual bool lessThan(const QModelIndex &left, const QModelIndex &right) const {
|
|
if (sortColumn() == NAME || sortColumn() == ENGINE_URL) {
|
|
QVariant vL = sourceModel()->data(left);
|
|
QVariant vR = sourceModel()->data(right);
|
|
if (!(vL.isValid() && vR.isValid()))
|
|
return QSortFilterProxyModel::lessThan(left, right);
|
|
Q_ASSERT(vL.isValid());
|
|
Q_ASSERT(vR.isValid());
|
|
|
|
bool res = false;
|
|
if (Utils::String::naturalSort(vL.toString(), vR.toString(), res))
|
|
return res;
|
|
|
|
return QSortFilterProxyModel::lessThan(left, right);
|
|
}
|
|
return QSortFilterProxyModel::lessThan(left, right);
|
|
}
|
|
};
|
|
|
|
#endif // SEARCHSORTMODEL_H
|