Merge pull request #6714 from fbriere/issue/6708-sort-categories

Fix instances where categories where still sorted case-sensitively. Closes #6708.
This commit is contained in:
Vladimir Golovnev 2017-05-17 21:47:20 +03:00 committed by GitHub
commit c4ccf6b774
9 changed files with 137 additions and 23 deletions

View file

@ -34,6 +34,7 @@ advancedsettings.h
autoexpandabledialog.h autoexpandabledialog.h
banlistoptions.h banlistoptions.h
categoryfiltermodel.h categoryfiltermodel.h
categoryfilterproxymodel.h
categoryfilterwidget.h categoryfilterwidget.h
cookiesdialog.h cookiesdialog.h
cookiesmodel.h cookiesmodel.h
@ -78,6 +79,7 @@ advancedsettings.cpp
autoexpandabledialog.cpp autoexpandabledialog.cpp
banlistoptions.cpp banlistoptions.cpp
categoryfiltermodel.cpp categoryfiltermodel.cpp
categoryfilterproxymodel.cpp
categoryfilterwidget.cpp categoryfilterwidget.cpp
cookiesdialog.cpp cookiesdialog.cpp
cookiesmodel.cpp cookiesmodel.cpp

View file

@ -135,7 +135,6 @@ AddNewTorrentDialog::AddNewTorrentDialog(const BitTorrent::AddTorrentParams &inP
if (category != defaultCategory && category != m_torrentParams.category) if (category != defaultCategory && category != m_torrentParams.category)
ui->categoryComboBox->addItem(category); ui->categoryComboBox->addItem(category);
ui->categoryComboBox->model()->sort(0);
ui->contentTreeView->header()->setSortIndicator(0, Qt::AscendingOrder); ui->contentTreeView->header()->setSortIndicator(0, Qt::AscendingOrder);
loadState(); loadState();
// Signal / slots // Signal / slots

View file

@ -139,8 +139,7 @@ public:
item->m_parent = this; item->m_parent = this;
m_children[uid] = item; m_children[uid] = item;
auto pos = std::lower_bound(m_childUids.begin(), m_childUids.end(), uid); m_childUids.append(uid);
m_childUids.insert(pos, uid);
m_torrentsCount += item->torrentsCount(); m_torrentsCount += item->torrentsCount();
} }
@ -195,6 +194,13 @@ CategoryFilterModel::~CategoryFilterModel()
delete m_rootItem; delete m_rootItem;
} }
bool CategoryFilterModel::isSpecialItem(const QModelIndex &index)
{
// the first two items at first level are special items:
// 'All' and 'Uncategorized'
return (!index.parent().isValid() && (index.row() <= 1));
}
int CategoryFilterModel::columnCount(const QModelIndex &) const int CategoryFilterModel::columnCount(const QModelIndex &) const
{ {
return 1; return 1;
@ -307,11 +313,10 @@ void CategoryFilterModel::categoryAdded(const QString &categoryName)
parent = findItem(expanded[expanded.count() - 2]); parent = findItem(expanded[expanded.count() - 2]);
} }
auto item = new CategoryModelItem( int row = parent->childCount();
parent, m_isSubcategoriesEnabled ? shortName(categoryName) : categoryName); beginInsertRows(index(parent), row, row);
new CategoryModelItem(
QModelIndex i = index(item); parent, m_isSubcategoriesEnabled ? shortName(categoryName) : categoryName);
beginInsertRows(i.parent(), i.row(), i.row());
endInsertRows(); endInsertRows();
} }

View file

@ -48,6 +48,8 @@ public:
explicit CategoryFilterModel(QObject *parent = nullptr); explicit CategoryFilterModel(QObject *parent = nullptr);
~CategoryFilterModel(); ~CategoryFilterModel();
static bool isSpecialItem(const QModelIndex &index);
int columnCount(const QModelIndex &parent = QModelIndex()) const override; int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
Qt::ItemFlags flags(const QModelIndex &index) const override; Qt::ItemFlags flags(const QModelIndex &index) const override;

View file

@ -0,0 +1,57 @@
/*
* Bittorrent Client using Qt and libtorrent.
* Copyright (C) 2017 Frédéric Brière <fbriere@fbriere.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give permission to
* link this program with the OpenSSL project's "OpenSSL" library (or with
* modified versions of it that use the same license as the "OpenSSL" library),
* and distribute the linked executables. You must obey the GNU General Public
* License in all respects for all of the code used other than "OpenSSL". If you
* modify file(s), you may extend this exception to your version of the file(s),
* but you are not obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*/
#include "categoryfilterproxymodel.h"
#include "base/utils/string.h"
#include "categoryfiltermodel.h"
CategoryFilterProxyModel::CategoryFilterProxyModel(QObject *parent)
: QSortFilterProxyModel(parent)
{
}
QModelIndex CategoryFilterProxyModel::index(const QString &categoryName) const
{
return mapFromSource(static_cast<CategoryFilterModel *>(sourceModel())->index(categoryName));
}
QString CategoryFilterProxyModel::categoryName(const QModelIndex &index) const
{
return static_cast<CategoryFilterModel *>(sourceModel())->categoryName(mapToSource(index));
}
bool CategoryFilterProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{
// "All" and "Uncategorized" must be left in place
if (CategoryFilterModel::isSpecialItem(left) || CategoryFilterModel::isSpecialItem(right))
return left.row() < right.row();
else
return Utils::String::naturalCompareCaseInsensitive(
left.data().toString(), right.data().toString());
}

View file

@ -0,0 +1,48 @@
/*
* Bittorrent Client using Qt and libtorrent.
* Copyright (C) 2017 Frédéric Brière <fbriere@fbriere.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give permission to
* link this program with the OpenSSL project's "OpenSSL" library (or with
* modified versions of it that use the same license as the "OpenSSL" library),
* and distribute the linked executables. You must obey the GNU General Public
* License in all respects for all of the code used other than "OpenSSL". If you
* modify file(s), you may extend this exception to your version of the file(s),
* but you are not obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*/
#ifndef CATEGORYFILTERPROXYMODEL_H
#define CATEGORYFILTERPROXYMODEL_H
#include <QSortFilterProxyModel>
#include <QString>
class CategoryFilterProxyModel: public QSortFilterProxyModel
{
public:
explicit CategoryFilterProxyModel(QObject *parent = nullptr);
// CategoryFilterModel methods which we need to relay
QModelIndex index(const QString &categoryName) const;
QString categoryName(const QModelIndex &index) const;
protected:
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
};
#endif // CATEGORYFILTERPROXYMODEL_H

View file

@ -38,11 +38,12 @@
#include "base/utils/misc.h" #include "base/utils/misc.h"
#include "autoexpandabledialog.h" #include "autoexpandabledialog.h"
#include "categoryfiltermodel.h" #include "categoryfiltermodel.h"
#include "categoryfilterproxymodel.h"
#include "guiiconprovider.h" #include "guiiconprovider.h"
namespace namespace
{ {
QString getCategoryFilter(const CategoryFilterModel *const model, const QModelIndex &index) QString getCategoryFilter(const CategoryFilterProxyModel *const model, const QModelIndex &index)
{ {
QString categoryFilter; // Defaults to All QString categoryFilter; // Defaults to All
if (index.isValid()) { if (index.isValid()) {
@ -54,19 +55,15 @@ namespace
return categoryFilter; return categoryFilter;
} }
bool isSpecialItem(const QModelIndex &index)
{
// the first two items at first level are special items:
// 'All' and 'Uncategorized'
return (!index.parent().isValid() && (index.row() <= 1));
}
} }
CategoryFilterWidget::CategoryFilterWidget(QWidget *parent) CategoryFilterWidget::CategoryFilterWidget(QWidget *parent)
: QTreeView(parent) : QTreeView(parent)
{ {
setModel(new CategoryFilterModel(this)); CategoryFilterProxyModel *proxyModel = new CategoryFilterProxyModel(this);
proxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
proxyModel->setSourceModel(new CategoryFilterModel(this));
setModel(proxyModel);
setFrameShape(QFrame::NoFrame); setFrameShape(QFrame::NoFrame);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
@ -78,6 +75,7 @@ CategoryFilterWidget::CategoryFilterWidget(QWidget *parent)
setAttribute(Qt::WA_MacShowFocusRect, false); setAttribute(Qt::WA_MacShowFocusRect, false);
#endif #endif
setContextMenuPolicy(Qt::CustomContextMenu); setContextMenuPolicy(Qt::CustomContextMenu);
sortByColumn(0, Qt::AscendingOrder);
setCurrentIndex(model()->index(0, 0)); setCurrentIndex(model()->index(0, 0));
connect(this, SIGNAL(collapsed(QModelIndex)), SLOT(callUpdateGeometry())); connect(this, SIGNAL(collapsed(QModelIndex)), SLOT(callUpdateGeometry()));
@ -95,14 +93,14 @@ QString CategoryFilterWidget::currentCategory() const
if (!selectedRows.isEmpty()) if (!selectedRows.isEmpty())
current = selectedRows.first(); current = selectedRows.first();
return getCategoryFilter(static_cast<CategoryFilterModel *>(model()), current); return getCategoryFilter(static_cast<CategoryFilterProxyModel *>(model()), current);
} }
void CategoryFilterWidget::onCurrentRowChanged(const QModelIndex &current, const QModelIndex &previous) void CategoryFilterWidget::onCurrentRowChanged(const QModelIndex &current, const QModelIndex &previous)
{ {
Q_UNUSED(previous); Q_UNUSED(previous);
emit categoryChanged(getCategoryFilter(static_cast<CategoryFilterModel *>(model()), current)); emit categoryChanged(getCategoryFilter(static_cast<CategoryFilterProxyModel *>(model()), current));
} }
void CategoryFilterWidget::showMenu(QPoint) void CategoryFilterWidget::showMenu(QPoint)
@ -115,7 +113,7 @@ void CategoryFilterWidget::showMenu(QPoint)
connect(addAct, SIGNAL(triggered()), SLOT(addCategory())); connect(addAct, SIGNAL(triggered()), SLOT(addCategory()));
auto selectedRows = selectionModel()->selectedRows(); auto selectedRows = selectionModel()->selectedRows();
if (!selectedRows.empty() && !isSpecialItem(selectedRows.first())) { if (!selectedRows.empty() && !CategoryFilterModel::isSpecialItem(selectedRows.first())) {
if (BitTorrent::Session::instance()->isSubcategoriesEnabled()) { if (BitTorrent::Session::instance()->isSubcategoriesEnabled()) {
QAction *addSubAct = menu.addAction( QAction *addSubAct = menu.addAction(
GuiIconProvider::instance()->getIcon("list-add") GuiIconProvider::instance()->getIcon("list-add")
@ -238,9 +236,9 @@ void CategoryFilterWidget::addSubcategory()
void CategoryFilterWidget::removeCategory() void CategoryFilterWidget::removeCategory()
{ {
auto selectedRows = selectionModel()->selectedRows(); auto selectedRows = selectionModel()->selectedRows();
if (!selectedRows.empty() && !isSpecialItem(selectedRows.first())) { if (!selectedRows.empty() && !CategoryFilterModel::isSpecialItem(selectedRows.first())) {
BitTorrent::Session::instance()->removeCategory( BitTorrent::Session::instance()->removeCategory(
static_cast<CategoryFilterModel *>(model())->categoryName(selectedRows.first())); static_cast<CategoryFilterProxyModel *>(model())->categoryName(selectedRows.first()));
updateGeometry(); updateGeometry();
} }
} }
@ -249,7 +247,7 @@ void CategoryFilterWidget::removeUnusedCategories()
{ {
auto session = BitTorrent::Session::instance(); auto session = BitTorrent::Session::instance();
foreach (const QString &category, session->categories()) foreach (const QString &category, session->categories())
if (model()->data(static_cast<CategoryFilterModel *>(model())->index(category), Qt::UserRole) == 0) if (model()->data(static_cast<CategoryFilterProxyModel *>(model())->index(category), Qt::UserRole) == 0)
session->removeCategory(category); session->removeCategory(category);
updateGeometry(); updateGeometry();
} }

View file

@ -50,6 +50,7 @@ HEADERS += \
$$PWD/cookiesmodel.h \ $$PWD/cookiesmodel.h \
$$PWD/cookiesdialog.h \ $$PWD/cookiesdialog.h \
$$PWD/categoryfiltermodel.h \ $$PWD/categoryfiltermodel.h \
$$PWD/categoryfilterproxymodel.h \
$$PWD/categoryfilterwidget.h \ $$PWD/categoryfilterwidget.h \
$$PWD/banlistoptions.h \ $$PWD/banlistoptions.h \
$$PWD/rss/rsswidget.h \ $$PWD/rss/rsswidget.h \
@ -100,6 +101,7 @@ SOURCES += \
$$PWD/cookiesmodel.cpp \ $$PWD/cookiesmodel.cpp \
$$PWD/cookiesdialog.cpp \ $$PWD/cookiesdialog.cpp \
$$PWD/categoryfiltermodel.cpp \ $$PWD/categoryfiltermodel.cpp \
$$PWD/categoryfilterproxymodel.cpp \
$$PWD/categoryfilterwidget.cpp \ $$PWD/categoryfilterwidget.cpp \
$$PWD/banlistoptions.cpp \ $$PWD/banlistoptions.cpp \
$$PWD/rss/rsswidget.cpp \ $$PWD/rss/rsswidget.cpp \

View file

@ -74,6 +74,7 @@ void TransferListSortModel::disableTrackerFilter()
bool TransferListSortModel::lessThan(const QModelIndex &left, const QModelIndex &right) const bool TransferListSortModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{ {
switch (sortColumn()) { switch (sortColumn()) {
case TorrentModel::TR_CATEGORY:
case TorrentModel::TR_NAME: { case TorrentModel::TR_NAME: {
QVariant vL = left.data(); QVariant vL = left.data();
QVariant vR = right.data(); QVariant vR = right.data();