Browse Source

Use a QTreeView and a sort proxy in the manually banned IP list to have a consistent sort order with QStringList::sor().

adaptive-webui-19844
sledgehammer999 8 years ago
parent
commit
b90db12ba0
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 37
      src/gui/banlistoptions.cpp
  2. 5
      src/gui/banlistoptions.h
  3. 14
      src/gui/banlistoptions.ui

37
src/gui/banlistoptions.cpp

@ -31,6 +31,8 @@ @@ -31,6 +31,8 @@
#include <QMessageBox>
#include <QHostAddress>
#include <QSortFilterProxyModel>
#include <QStringListModel>
#include "base/bittorrent/session.h"
#include "base/utils/net.h"
@ -41,7 +43,14 @@ BanListOptions::BanListOptions(QWidget *parent) @@ -41,7 +43,14 @@ BanListOptions::BanListOptions(QWidget *parent)
, m_modified(false)
{
m_ui->setupUi(this);
m_ui->bannedIPList->addItems(BitTorrent::Session::instance()->bannedIPs());
m_model = new QStringListModel(BitTorrent::Session::instance()->bannedIPs(), this);
m_sortFilter = new QSortFilterProxyModel(this);
m_sortFilter->setDynamicSortFilter(true);
m_sortFilter->setSourceModel(m_model);
m_ui->bannedIPList->setModel(m_sortFilter);
m_ui->bannedIPList->sortByColumn(0, Qt::AscendingOrder);
m_ui->buttonBanIP->setEnabled(false);
}
@ -55,8 +64,11 @@ void BanListOptions::on_buttonBox_accepted() @@ -55,8 +64,11 @@ void BanListOptions::on_buttonBox_accepted()
if (m_modified) {
// save to session
QStringList IPList;
for (int i = 0; i < m_ui->bannedIPList->count(); ++i)
IPList << m_ui->bannedIPList->item(i)->text();
// Operate on the m_sortFilter to grab the strings in sorted order
for (int i = 0; i < m_sortFilter->rowCount(); ++i) {
QModelIndex index = m_sortFilter->index(i, 0);
IPList << index.data().toString();
}
BitTorrent::Session::instance()->setBannedIPs(IPList);
}
QDialog::accept();
@ -73,23 +85,26 @@ void BanListOptions::on_buttonBanIP_clicked() @@ -73,23 +85,26 @@ void BanListOptions::on_buttonBanIP_clicked()
// QHostAddress::toString() result format follows RFC5952;
// thus we avoid duplicate entries pointing to the same address
ip = QHostAddress(ip).toString();
QList<QListWidgetItem *> findres = m_ui->bannedIPList->findItems(ip, Qt::MatchExactly);
if (!findres.isEmpty()) {
for (int i = 0; i < m_sortFilter->rowCount(); ++i) {
QModelIndex index = m_sortFilter->index(i, 0);
if (ip == index.data().toString()) {
QMessageBox::warning(this, tr("Warning"), tr("The entered IP is already banned."));
return;
}
m_ui->bannedIPList->addItem(ip);
}
m_model->insertRow(m_model->rowCount());
m_model->setData(m_model->index(m_model->rowCount() - 1, 0), ip);
m_ui->txtIP->clear();
m_modified = true;
}
void BanListOptions::on_buttonDeleteIP_clicked()
{
QList<QListWidgetItem *> selection = m_ui->bannedIPList->selectedItems();
for (auto &i : selection) {
m_ui->bannedIPList->removeItemWidget(i);
delete i;
}
QModelIndexList selection = m_ui->bannedIPList->selectionModel()->selectedIndexes();
for (auto &i : selection)
m_sortFilter->removeRow(i.row());
m_modified = true;
}

5
src/gui/banlistoptions.h

@ -31,6 +31,9 @@ @@ -31,6 +31,9 @@
#include <QDialog>
class QSortFilterProxyModel;
class QStringListModel;
namespace Ui
{
class BanListOptions;
@ -52,6 +55,8 @@ private slots: @@ -52,6 +55,8 @@ private slots:
private:
Ui::BanListOptions *m_ui;
QStringListModel *m_model;
QSortFilterProxyModel *m_sortFilter;
bool m_modified;
};

14
src/gui/banlistoptions.ui

@ -42,16 +42,28 @@ @@ -42,16 +42,28 @@
</property>
<layout class="QVBoxLayout" name="verticalLayout_21">
<item>
<widget class="QListWidget" name="bannedIPList">
<widget class="QTreeView" name="bannedIPList">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="uniformRowHeights">
<bool>true</bool>
</property>
<property name="itemsExpandable">
<bool>false</bool>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<attribute name="headerVisible">
<bool>false</bool>
</attribute>
</widget>
</item>
<item>

Loading…
Cancel
Save