Browse Source

Properly sort categories case-insensitively in filter widget. Closes #6708.

adaptive-webui-19844
Frédéric Brière 8 years ago
parent
commit
c37d90bf6d
  1. 2
      src/gui/CMakeLists.txt
  2. 12
      src/gui/categoryfiltermodel.cpp
  3. 57
      src/gui/categoryfilterproxymodel.cpp
  4. 48
      src/gui/categoryfilterproxymodel.h
  5. 17
      src/gui/categoryfilterwidget.cpp
  6. 2
      src/gui/gui.pri

2
src/gui/CMakeLists.txt

@ -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
@ -76,6 +77,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

12
src/gui/categoryfiltermodel.cpp

@ -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();
} }
@ -314,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();
} }

57
src/gui/categoryfilterproxymodel.cpp

@ -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());
}

48
src/gui/categoryfilterproxymodel.h

@ -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

17
src/gui/categoryfilterwidget.cpp

@ -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()) {
@ -59,7 +60,10 @@ namespace
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);
@ -71,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()));
@ -88,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)
@ -233,7 +238,7 @@ void CategoryFilterWidget::removeCategory()
auto selectedRows = selectionModel()->selectedRows(); auto selectedRows = selectionModel()->selectedRows();
if (!selectedRows.empty() && !CategoryFilterModel::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();
} }
} }
@ -242,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();
} }

2
src/gui/gui.pri

@ -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 \
@ -98,6 +99,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 \

Loading…
Cancel
Save