|
|
|
|
@@ -30,78 +30,105 @@
|
|
|
|
|
|
|
|
|
|
#include "trackerlist.h"
|
|
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QHash>
|
|
|
|
|
#include <QAction>
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QColor>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QUrl>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QTableView>
|
|
|
|
|
#include <QHash>
|
|
|
|
|
#include <QHeaderView>
|
|
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QTableView>
|
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
|
#include <QUrl>
|
|
|
|
|
|
|
|
|
|
#include "base/bittorrent/peerinfo.h"
|
|
|
|
|
#include "base/bittorrent/session.h"
|
|
|
|
|
#include "base/bittorrent/torrenthandle.h"
|
|
|
|
|
#include "base/bittorrent/peerinfo.h"
|
|
|
|
|
#include "base/bittorrent/trackerentry.h"
|
|
|
|
|
#include "base/preferences.h"
|
|
|
|
|
#include "base/utils/misc.h"
|
|
|
|
|
#include "autoexpandabledialog.h"
|
|
|
|
|
#include "guiiconprovider.h"
|
|
|
|
|
#include "propertieswidget.h"
|
|
|
|
|
#include "trackersadditiondlg.h"
|
|
|
|
|
#include "guiiconprovider.h"
|
|
|
|
|
#include "autoexpandabledialog.h"
|
|
|
|
|
|
|
|
|
|
TrackerList::TrackerList(PropertiesWidget *properties): QTreeWidget(), properties(properties) {
|
|
|
|
|
TrackerList::TrackerList(PropertiesWidget *properties)
|
|
|
|
|
: QTreeWidget()
|
|
|
|
|
, m_properties(properties)
|
|
|
|
|
{
|
|
|
|
|
// Set header
|
|
|
|
|
// Must be set before calling loadSettings() otherwise the header is reset on restart
|
|
|
|
|
setHeaderLabels(headerLabels());
|
|
|
|
|
// Load settings
|
|
|
|
|
loadSettings();
|
|
|
|
|
// Graphical settings
|
|
|
|
|
setRootIsDecorated(false);
|
|
|
|
|
setAllColumnsShowFocus(true);
|
|
|
|
|
setItemsExpandable(false);
|
|
|
|
|
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
|
|
|
header()->setStretchLastSection(false); // Must be set after loadSettings() in order to work
|
|
|
|
|
// Ensure that at least one column is visible at all times
|
|
|
|
|
if (visibleColumnsCount() == 0)
|
|
|
|
|
setColumnHidden(COL_URL, false);
|
|
|
|
|
// To also mitigate the above issue, we have to resize each column when
|
|
|
|
|
// its size is 0, because explicitly 'showing' the column isn't enough
|
|
|
|
|
// in the above scenario.
|
|
|
|
|
for (unsigned int i = 0; i < COL_COUNT; ++i)
|
|
|
|
|
if ((columnWidth(i) <= 0) && !isColumnHidden(i))
|
|
|
|
|
resizeColumnToContents(i);
|
|
|
|
|
// Context menu
|
|
|
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showTrackerListMenu(QPoint)));
|
|
|
|
|
// Set header
|
|
|
|
|
QStringList header;
|
|
|
|
|
header << "#";
|
|
|
|
|
header << tr("URL");
|
|
|
|
|
header << tr("Status");
|
|
|
|
|
header << tr("Received");
|
|
|
|
|
header << tr("Seeds");
|
|
|
|
|
header << tr("Peers");
|
|
|
|
|
header << tr("Downloaded");
|
|
|
|
|
header << tr("Message");
|
|
|
|
|
setHeaderItem(new QTreeWidgetItem(header));
|
|
|
|
|
dht_item = new QTreeWidgetItem({ "", "** [DHT] **", "", "0", "", "", "0" });
|
|
|
|
|
insertTopLevelItem(0, dht_item);
|
|
|
|
|
// Header context menu
|
|
|
|
|
header()->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
connect(header(), SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayToggleColumnsMenu(const QPoint&)));
|
|
|
|
|
// Set DHT, PeX, LSD items
|
|
|
|
|
m_DHTItem = new QTreeWidgetItem({ "", "** [DHT] **", "", "0", "", "", "0" });
|
|
|
|
|
insertTopLevelItem(0, m_DHTItem);
|
|
|
|
|
setRowColor(0, QColor("grey"));
|
|
|
|
|
pex_item = new QTreeWidgetItem({ "", "** [PeX] **", "", "0", "", "", "0" });
|
|
|
|
|
insertTopLevelItem(1, pex_item);
|
|
|
|
|
m_PEXItem = new QTreeWidgetItem({ "", "** [PeX] **", "", "0", "", "", "0" });
|
|
|
|
|
insertTopLevelItem(1, m_PEXItem);
|
|
|
|
|
setRowColor(1, QColor("grey"));
|
|
|
|
|
lsd_item = new QTreeWidgetItem({ "", "** [LSD] **", "", "0", "", "", "0" });
|
|
|
|
|
insertTopLevelItem(2, lsd_item);
|
|
|
|
|
m_LSDItem = new QTreeWidgetItem({ "", "** [LSD] **", "", "0", "", "", "0" });
|
|
|
|
|
insertTopLevelItem(2, m_LSDItem);
|
|
|
|
|
setRowColor(2, QColor("grey"));
|
|
|
|
|
editHotkey = new QShortcut(Qt::Key_F2, this, SLOT(editSelectedTracker()), 0, Qt::WidgetShortcut);
|
|
|
|
|
// Set static items alignment
|
|
|
|
|
m_DHTItem->setTextAlignment(COL_RECEIVED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_PEXItem->setTextAlignment(COL_RECEIVED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_LSDItem->setTextAlignment(COL_RECEIVED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_DHTItem->setTextAlignment(COL_SEEDS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_PEXItem->setTextAlignment(COL_SEEDS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_LSDItem->setTextAlignment(COL_SEEDS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_DHTItem->setTextAlignment(COL_PEERS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_PEXItem->setTextAlignment(COL_PEERS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_LSDItem->setTextAlignment(COL_PEERS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_DHTItem->setTextAlignment(COL_DOWNLOADED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_PEXItem->setTextAlignment(COL_DOWNLOADED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
m_LSDItem->setTextAlignment(COL_DOWNLOADED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
// Set header alignment
|
|
|
|
|
headerItem()->setTextAlignment(COL_TIER, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
headerItem()->setTextAlignment(COL_RECEIVED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
headerItem()->setTextAlignment(COL_SEEDS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
headerItem()->setTextAlignment(COL_PEERS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
headerItem()->setTextAlignment(COL_DOWNLOADED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
// Set hotkeys
|
|
|
|
|
m_editHotkey = new QShortcut(Qt::Key_F2, this, SLOT(editSelectedTracker()), 0, Qt::WidgetShortcut);
|
|
|
|
|
connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(editSelectedTracker()));
|
|
|
|
|
deleteHotkey = new QShortcut(QKeySequence::Delete, this, SLOT(deleteSelectedTrackers()), 0, Qt::WidgetShortcut);
|
|
|
|
|
copyHotkey = new QShortcut(QKeySequence::Copy, this, SLOT(copyTrackerUrl()), 0, Qt::WidgetShortcut);
|
|
|
|
|
m_deleteHotkey = new QShortcut(QKeySequence::Delete, this, SLOT(deleteSelectedTrackers()), 0, Qt::WidgetShortcut);
|
|
|
|
|
m_copyHotkey = new QShortcut(QKeySequence::Copy, this, SLOT(copyTrackerUrl()), 0, Qt::WidgetShortcut);
|
|
|
|
|
|
|
|
|
|
// This hack fixes reordering of first column with Qt5.
|
|
|
|
|
// https://github.com/qtproject/qtbase/commit/e0fc088c0c8bc61dbcaf5928b24986cd61a22777
|
|
|
|
|
QTableView unused;
|
|
|
|
|
unused.setVerticalHeader(this->header());
|
|
|
|
|
this->header()->setParent(this);
|
|
|
|
|
unused.setVerticalHeader(header());
|
|
|
|
|
header()->setParent(this);
|
|
|
|
|
unused.setVerticalHeader(new QHeaderView(Qt::Horizontal));
|
|
|
|
|
|
|
|
|
|
loadSettings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TrackerList::~TrackerList() {
|
|
|
|
|
delete editHotkey;
|
|
|
|
|
delete deleteHotkey;
|
|
|
|
|
delete copyHotkey;
|
|
|
|
|
TrackerList::~TrackerList()
|
|
|
|
|
{
|
|
|
|
|
saveSettings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -125,7 +152,7 @@ void TrackerList::setRowColor(int row, QColor color) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::moveSelectionUp() {
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) {
|
|
|
|
|
clear();
|
|
|
|
|
return;
|
|
|
|
|
@@ -163,7 +190,7 @@ void TrackerList::moveSelectionUp() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::moveSelectionDown() {
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) {
|
|
|
|
|
clear();
|
|
|
|
|
return;
|
|
|
|
|
@@ -202,20 +229,20 @@ void TrackerList::moveSelectionDown() {
|
|
|
|
|
|
|
|
|
|
void TrackerList::clear()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(tracker_items.values());
|
|
|
|
|
tracker_items.clear();
|
|
|
|
|
dht_item->setText(COL_STATUS, "");
|
|
|
|
|
dht_item->setText(COL_SEEDS, "");
|
|
|
|
|
dht_item->setText(COL_PEERS, "");
|
|
|
|
|
dht_item->setText(COL_MSG, "");
|
|
|
|
|
pex_item->setText(COL_STATUS, "");
|
|
|
|
|
pex_item->setText(COL_SEEDS, "");
|
|
|
|
|
pex_item->setText(COL_PEERS, "");
|
|
|
|
|
pex_item->setText(COL_MSG, "");
|
|
|
|
|
lsd_item->setText(COL_STATUS, "");
|
|
|
|
|
lsd_item->setText(COL_SEEDS, "");
|
|
|
|
|
lsd_item->setText(COL_PEERS, "");
|
|
|
|
|
lsd_item->setText(COL_MSG, "");
|
|
|
|
|
qDeleteAll(m_trackerItems.values());
|
|
|
|
|
m_trackerItems.clear();
|
|
|
|
|
m_DHTItem->setText(COL_STATUS, "");
|
|
|
|
|
m_DHTItem->setText(COL_SEEDS, "");
|
|
|
|
|
m_DHTItem->setText(COL_PEERS, "");
|
|
|
|
|
m_DHTItem->setText(COL_MSG, "");
|
|
|
|
|
m_PEXItem->setText(COL_STATUS, "");
|
|
|
|
|
m_PEXItem->setText(COL_SEEDS, "");
|
|
|
|
|
m_PEXItem->setText(COL_PEERS, "");
|
|
|
|
|
m_PEXItem->setText(COL_MSG, "");
|
|
|
|
|
m_LSDItem->setText(COL_STATUS, "");
|
|
|
|
|
m_LSDItem->setText(COL_SEEDS, "");
|
|
|
|
|
m_LSDItem->setText(COL_PEERS, "");
|
|
|
|
|
m_LSDItem->setText(COL_MSG, "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::loadStickyItems(BitTorrent::TorrentHandle *const torrent) {
|
|
|
|
|
@@ -224,27 +251,27 @@ void TrackerList::loadStickyItems(BitTorrent::TorrentHandle *const torrent) {
|
|
|
|
|
|
|
|
|
|
// load DHT information
|
|
|
|
|
if (BitTorrent::Session::instance()->isDHTEnabled() && !torrent->isPrivate())
|
|
|
|
|
dht_item->setText(COL_STATUS, working);
|
|
|
|
|
m_DHTItem->setText(COL_STATUS, working);
|
|
|
|
|
else
|
|
|
|
|
dht_item->setText(COL_STATUS, disabled);
|
|
|
|
|
m_DHTItem->setText(COL_STATUS, disabled);
|
|
|
|
|
|
|
|
|
|
// Load PeX Information
|
|
|
|
|
if (BitTorrent::Session::instance()->isPeXEnabled() && !torrent->isPrivate())
|
|
|
|
|
pex_item->setText(COL_STATUS, working);
|
|
|
|
|
m_PEXItem->setText(COL_STATUS, working);
|
|
|
|
|
else
|
|
|
|
|
pex_item->setText(COL_STATUS, disabled);
|
|
|
|
|
m_PEXItem->setText(COL_STATUS, disabled);
|
|
|
|
|
|
|
|
|
|
// Load LSD Information
|
|
|
|
|
if (BitTorrent::Session::instance()->isLSDEnabled() && !torrent->isPrivate())
|
|
|
|
|
lsd_item->setText(COL_STATUS, working);
|
|
|
|
|
m_LSDItem->setText(COL_STATUS, working);
|
|
|
|
|
else
|
|
|
|
|
lsd_item->setText(COL_STATUS, disabled);
|
|
|
|
|
m_LSDItem->setText(COL_STATUS, disabled);
|
|
|
|
|
|
|
|
|
|
if (torrent->isPrivate()) {
|
|
|
|
|
QString privateMsg = tr("This torrent is private");
|
|
|
|
|
dht_item->setText(COL_MSG, privateMsg);
|
|
|
|
|
pex_item->setText(COL_MSG, privateMsg);
|
|
|
|
|
lsd_item->setText(COL_MSG, privateMsg);
|
|
|
|
|
m_DHTItem->setText(COL_MSG, privateMsg);
|
|
|
|
|
m_PEXItem->setText(COL_MSG, privateMsg);
|
|
|
|
|
m_LSDItem->setText(COL_MSG, privateMsg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XXX: libtorrent should provide this info...
|
|
|
|
|
@@ -273,31 +300,31 @@ void TrackerList::loadStickyItems(BitTorrent::TorrentHandle *const torrent) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dht_item->setText(COL_SEEDS, QString::number(seedsDHT));
|
|
|
|
|
dht_item->setText(COL_PEERS, QString::number(peersDHT));
|
|
|
|
|
pex_item->setText(COL_SEEDS, QString::number(seedsPeX));
|
|
|
|
|
pex_item->setText(COL_PEERS, QString::number(peersPeX));
|
|
|
|
|
lsd_item->setText(COL_SEEDS, QString::number(seedsLSD));
|
|
|
|
|
lsd_item->setText(COL_PEERS, QString::number(peersLSD));
|
|
|
|
|
m_DHTItem->setText(COL_SEEDS, QString::number(seedsDHT));
|
|
|
|
|
m_DHTItem->setText(COL_PEERS, QString::number(peersDHT));
|
|
|
|
|
m_PEXItem->setText(COL_SEEDS, QString::number(seedsPeX));
|
|
|
|
|
m_PEXItem->setText(COL_PEERS, QString::number(peersPeX));
|
|
|
|
|
m_LSDItem->setText(COL_SEEDS, QString::number(seedsLSD));
|
|
|
|
|
m_LSDItem->setText(COL_PEERS, QString::number(peersLSD));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::loadTrackers() {
|
|
|
|
|
// Load trackers from torrent handle
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) return;
|
|
|
|
|
|
|
|
|
|
loadStickyItems(torrent);
|
|
|
|
|
// Load actual trackers information
|
|
|
|
|
QHash<QString, BitTorrent::TrackerInfo> trackers_data = torrent->trackerInfos();
|
|
|
|
|
QStringList old_trackers_urls = tracker_items.keys();
|
|
|
|
|
QStringList old_trackers_urls = m_trackerItems.keys();
|
|
|
|
|
foreach (const BitTorrent::TrackerEntry &entry, torrent->trackers()) {
|
|
|
|
|
QString trackerUrl = entry.url();
|
|
|
|
|
QTreeWidgetItem *item = tracker_items.value(trackerUrl, 0);
|
|
|
|
|
QTreeWidgetItem *item = m_trackerItems.value(trackerUrl, 0);
|
|
|
|
|
if (!item) {
|
|
|
|
|
item = new QTreeWidgetItem();
|
|
|
|
|
item->setText(COL_URL, trackerUrl);
|
|
|
|
|
addTopLevelItem(item);
|
|
|
|
|
tracker_items[trackerUrl] = item;
|
|
|
|
|
m_trackerItems[trackerUrl] = item;
|
|
|
|
|
} else {
|
|
|
|
|
old_trackers_urls.removeOne(trackerUrl);
|
|
|
|
|
}
|
|
|
|
|
@@ -334,16 +361,21 @@ void TrackerList::loadTrackers() {
|
|
|
|
|
item->setText(COL_DOWNLOADED, "0");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
item->setTextAlignment(COL_TIER, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
item->setTextAlignment(COL_RECEIVED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
item->setTextAlignment(COL_SEEDS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
item->setTextAlignment(COL_PEERS, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
item->setTextAlignment(COL_DOWNLOADED, (Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
|
}
|
|
|
|
|
// Remove old trackers
|
|
|
|
|
foreach (const QString &tracker, old_trackers_urls) {
|
|
|
|
|
delete tracker_items.take(tracker);
|
|
|
|
|
delete m_trackerItems.take(tracker);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Ask the user for new trackers and add them to the torrent
|
|
|
|
|
void TrackerList::askForTrackers() {
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) return;
|
|
|
|
|
|
|
|
|
|
QList<BitTorrent::TrackerEntry> trackers;
|
|
|
|
|
@@ -366,7 +398,7 @@ void TrackerList::copyTrackerUrl() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TrackerList::deleteSelectedTrackers() {
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) {
|
|
|
|
|
clear();
|
|
|
|
|
return;
|
|
|
|
|
@@ -379,7 +411,7 @@ void TrackerList::deleteSelectedTrackers() {
|
|
|
|
|
foreach (QTreeWidgetItem *item, selected_items) {
|
|
|
|
|
QString tracker_url = item->data(COL_URL, Qt::DisplayRole).toString();
|
|
|
|
|
urls_to_remove << tracker_url;
|
|
|
|
|
tracker_items.remove(tracker_url);
|
|
|
|
|
m_trackerItems.remove(tracker_url);
|
|
|
|
|
delete item;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -398,7 +430,7 @@ void TrackerList::deleteSelectedTrackers() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::editSelectedTracker() {
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) return;
|
|
|
|
|
|
|
|
|
|
QString hash = torrent->hash();
|
|
|
|
|
@@ -449,13 +481,13 @@ void TrackerList::reannounceSelected() {
|
|
|
|
|
QList<QTreeWidgetItem *> selected_items = selectedItems();
|
|
|
|
|
if (selected_items.isEmpty()) return;
|
|
|
|
|
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) return;
|
|
|
|
|
QList<BitTorrent::TrackerEntry> trackers = torrent->trackers();
|
|
|
|
|
|
|
|
|
|
foreach (QTreeWidgetItem* item, selected_items) {
|
|
|
|
|
// DHT case
|
|
|
|
|
if (item == dht_item) {
|
|
|
|
|
if (item == m_DHTItem) {
|
|
|
|
|
torrent->forceDHTAnnounce();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
@@ -473,29 +505,29 @@ void TrackerList::reannounceSelected() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::showTrackerListMenu(QPoint) {
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *const torrent = m_properties->getCurrentTorrent();
|
|
|
|
|
if (!torrent) return;
|
|
|
|
|
//QList<QTreeWidgetItem*> selected_items = getSelectedTrackerItems();
|
|
|
|
|
QMenu menu;
|
|
|
|
|
// Add actions
|
|
|
|
|
QAction *addAct = menu.addAction(GuiIconProvider::instance()->getIcon("list-add"), tr("Add a new tracker..."));
|
|
|
|
|
QAction *copyAct = 0;
|
|
|
|
|
QAction *delAct = 0;
|
|
|
|
|
QAction *editAct = 0;
|
|
|
|
|
QAction *copyAct = nullptr;
|
|
|
|
|
QAction *delAct = nullptr;
|
|
|
|
|
QAction *editAct = nullptr;
|
|
|
|
|
if (!getSelectedTrackerItems().isEmpty()) {
|
|
|
|
|
delAct = menu.addAction(GuiIconProvider::instance()->getIcon("list-remove"), tr("Remove tracker"));
|
|
|
|
|
copyAct = menu.addAction(GuiIconProvider::instance()->getIcon("edit-copy"), tr("Copy tracker URL"));
|
|
|
|
|
editAct = menu.addAction(GuiIconProvider::instance()->getIcon("edit-rename"),tr("Edit selected tracker URL"));
|
|
|
|
|
}
|
|
|
|
|
QAction *reannounceSelAct = NULL;
|
|
|
|
|
QAction *reannounceAct = NULL;
|
|
|
|
|
QAction *reannounceSelAct = nullptr;
|
|
|
|
|
QAction *reannounceAct = nullptr;
|
|
|
|
|
if (!torrent->isPaused()) {
|
|
|
|
|
reannounceSelAct = menu.addAction(GuiIconProvider::instance()->getIcon("view-refresh"), tr("Force reannounce to selected trackers"));
|
|
|
|
|
menu.addSeparator();
|
|
|
|
|
reannounceAct = menu.addAction(GuiIconProvider::instance()->getIcon("view-refresh"), tr("Force reannounce to all trackers"));
|
|
|
|
|
}
|
|
|
|
|
QAction *act = menu.exec(QCursor::pos());
|
|
|
|
|
if (act == 0) return;
|
|
|
|
|
if (act == nullptr) return;
|
|
|
|
|
if (act == addAct) {
|
|
|
|
|
askForTrackers();
|
|
|
|
|
return;
|
|
|
|
|
@@ -513,7 +545,7 @@ void TrackerList::showTrackerListMenu(QPoint) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (act == reannounceAct) {
|
|
|
|
|
BitTorrent::TorrentHandle *h = properties->getCurrentTorrent();
|
|
|
|
|
BitTorrent::TorrentHandle *h = m_properties->getCurrentTorrent();
|
|
|
|
|
h->forceReannounce();
|
|
|
|
|
h->forceDHTAnnounce();
|
|
|
|
|
return;
|
|
|
|
|
@@ -524,13 +556,65 @@ void TrackerList::showTrackerListMenu(QPoint) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::loadSettings() {
|
|
|
|
|
if (!header()->restoreState(Preferences::instance()->getPropTrackerListState())) {
|
|
|
|
|
setColumnWidth(0, 30);
|
|
|
|
|
setColumnWidth(1, 300);
|
|
|
|
|
}
|
|
|
|
|
void TrackerList::loadSettings()
|
|
|
|
|
{
|
|
|
|
|
header()->restoreState(Preferences::instance()->getPropTrackerListState());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::saveSettings() const {
|
|
|
|
|
void TrackerList::saveSettings() const
|
|
|
|
|
{
|
|
|
|
|
Preferences::instance()->setPropTrackerListState(header()->saveState());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList TrackerList::headerLabels()
|
|
|
|
|
{
|
|
|
|
|
static const QStringList header {
|
|
|
|
|
"#"
|
|
|
|
|
, tr("URL")
|
|
|
|
|
, tr("Status")
|
|
|
|
|
, tr("Received")
|
|
|
|
|
, tr("Seeds")
|
|
|
|
|
, tr("Peers")
|
|
|
|
|
, tr("Downloaded")
|
|
|
|
|
, tr("Message")
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return header;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int TrackerList::visibleColumnsCount() const
|
|
|
|
|
{
|
|
|
|
|
int visibleCols = 0;
|
|
|
|
|
for (unsigned int i = 0; i < COL_COUNT; ++i) {
|
|
|
|
|
if (!isColumnHidden(i))
|
|
|
|
|
++visibleCols;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return visibleCols;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrackerList::displayToggleColumnsMenu(const QPoint &)
|
|
|
|
|
{
|
|
|
|
|
QMenu hideshowColumn(this);
|
|
|
|
|
hideshowColumn.setTitle(tr("Column visibility"));
|
|
|
|
|
for (int i = 0; i < COL_COUNT; ++i) {
|
|
|
|
|
QAction *myAct = hideshowColumn.addAction(headerLabels().at(i));
|
|
|
|
|
myAct->setCheckable(true);
|
|
|
|
|
myAct->setChecked(!isColumnHidden(i));
|
|
|
|
|
myAct->setData(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Call menu
|
|
|
|
|
QAction *act = hideshowColumn.exec(QCursor::pos());
|
|
|
|
|
if (!act) return;
|
|
|
|
|
|
|
|
|
|
int col = act->data().toInt();
|
|
|
|
|
Q_ASSERT(visibleColumnsCount() > 0);
|
|
|
|
|
if (!isColumnHidden(col) && (visibleColumnsCount() == 1))
|
|
|
|
|
return;
|
|
|
|
|
qDebug("Toggling column %d visibility", col);
|
|
|
|
|
setColumnHidden(col, !isColumnHidden(col));
|
|
|
|
|
if (!isColumnHidden(col) && (columnWidth(col) <= 5))
|
|
|
|
|
setColumnWidth(col, 100);
|
|
|
|
|
saveSettings();
|
|
|
|
|
}
|
|
|
|
|
|