|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
|
|
|
* Copyright (C) 2006 Christophe Dumez
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Contact : chris@qbittorrent.org
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QListWidgetItem>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QStackedWidget>
|
|
|
|
#include <QSplitter>
|
|
|
|
#include <QHeaderView>
|
|
|
|
#include <QAction>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QBitArray>
|
|
|
|
|
|
|
|
#include "base/bittorrent/session.h"
|
|
|
|
#include "base/preferences.h"
|
|
|
|
#include "base/utils/fs.h"
|
|
|
|
#include "base/utils/misc.h"
|
|
|
|
#include "base/utils/string.h"
|
|
|
|
#include "base/unicodestrings.h"
|
|
|
|
#include "proplistdelegate.h"
|
|
|
|
#include "torrentcontentfiltermodel.h"
|
|
|
|
#include "torrentcontentmodel.h"
|
|
|
|
#include "peerlistwidget.h"
|
|
|
|
#include "speedwidget.h"
|
|
|
|
#include "trackerlist.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "messageboxraised.h"
|
|
|
|
#include "downloadedpiecesbar.h"
|
|
|
|
#include "pieceavailabilitybar.h"
|
|
|
|
#include "proptabbar.h"
|
|
|
|
#include "guiiconprovider.h"
|
|
|
|
#include "lineedit.h"
|
|
|
|
#include "transferlistwidget.h"
|
|
|
|
#include "autoexpandabledialog.h"
|
|
|
|
#include "propertieswidget.h"
|
|
|
|
|
|
|
|
PropertiesWidget::PropertiesWidget(QWidget *parent, MainWindow* main_window, TransferListWidget *transferList):
|
|
|
|
QWidget(parent), transferList(transferList), main_window(main_window), m_torrent(0) {
|
|
|
|
setupUi(this);
|
|
|
|
setAutoFillBackground(true);
|
|
|
|
|
|
|
|
state = VISIBLE;
|
|
|
|
|
|
|
|
// Set Properties list model
|
|
|
|
PropListModel = new TorrentContentFilterModel();
|
|
|
|
filesList->setModel(PropListModel);
|
|
|
|
PropDelegate = new PropListDelegate(this);
|
|
|
|
filesList->setItemDelegate(PropDelegate);
|
|
|
|
filesList->setSortingEnabled(true);
|
|
|
|
// Torrent content filtering
|
|
|
|
m_contentFilterLine = new LineEdit(this);
|
|
|
|
m_contentFilterLine->setPlaceholderText(tr("Filter files..."));
|
|
|
|
m_contentFilterLine->setMaximumSize(300, m_contentFilterLine->size().height());
|
|
|
|
connect(m_contentFilterLine, SIGNAL(textChanged(QString)), this, SLOT(filterText(QString)));
|
|
|
|
contentFilterLayout->insertWidget(3, m_contentFilterLine);
|
|
|
|
|
|
|
|
// SIGNAL/SLOTS
|
|
|
|
connect(filesList, SIGNAL(clicked(const QModelIndex&)), filesList, SLOT(edit(const QModelIndex&)));
|
|
|
|
connect(selectAllButton, SIGNAL(clicked()), PropListModel, SLOT(selectAll()));
|
|
|
|
connect(selectNoneButton, SIGNAL(clicked()), PropListModel, SLOT(selectNone()));
|
|
|
|
connect(filesList, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayFilesListMenu(const QPoint&)));
|
|
|
|
connect(filesList, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(openDoubleClickedFile(const QModelIndex &)));
|
|
|
|
connect(PropListModel, SIGNAL(filteredFilesChanged()), this, SLOT(filteredFilesChanged()));
|
|
|
|
connect(listWebSeeds, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayWebSeedListMenu(const QPoint&)));
|
|
|
|
connect(transferList, SIGNAL(currentTorrentChanged(BitTorrent::TorrentHandle *const)), this, SLOT(loadTorrentInfos(BitTorrent::TorrentHandle *const)));
|
|
|
|
connect(PropDelegate, SIGNAL(filteredFilesChanged()), this, SLOT(filteredFilesChanged()));
|
|
|
|
connect(stackedProperties, SIGNAL(currentChanged(int)), this, SLOT(loadDynamicData()));
|
|
|
|
connect(BitTorrent::Session::instance(), SIGNAL(torrentSavePathChanged(BitTorrent::TorrentHandle *const)), this, SLOT(updateSavePath(BitTorrent::TorrentHandle *const)));
|
|
|
|
connect(BitTorrent::Session::instance(), SIGNAL(torrentMetadataLoaded(BitTorrent::TorrentHandle *const)), this, SLOT(updateTorrentInfos(BitTorrent::TorrentHandle *const)));
|
|
|
|
connect(filesList->header(), SIGNAL(sectionMoved(int, int, int)), this, SLOT(saveSettings()));
|
|
|
|
connect(filesList->header(), SIGNAL(sectionResized(int, int, int)), this, SLOT(saveSettings()));
|
|
|
|
connect(filesList->header(), SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)), this, SLOT(saveSettings()));
|
|
|
|
|
|
|
|
#ifdef QBT_USES_QT5
|
|
|
|
// set bar height relative to screen dpi
|
|
|
|
int barHeight = devicePixelRatio() * 18;
|
|
|
|
#else
|
|
|
|
// set bar height relative to font height
|
|
|
|
QFont defFont;
|
|
|
|
QFontMetrics fMetrics(defFont, 0); // need to be device-dependent
|
|
|
|
int barHeight = fMetrics.height() * 5 / 4;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Downloaded pieces progress bar
|
|
|
|
tempProgressBarArea->setVisible(false);
|
|
|
|
downloaded_pieces = new DownloadedPiecesBar(this);
|
|
|
|
groupBarLayout->addWidget(downloaded_pieces, 0, 1);
|
|
|
|
downloaded_pieces->setFixedHeight(barHeight);
|
|
|
|
downloaded_pieces->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
|
|
|
|
|
|
// Pieces availability bar
|
|
|
|
tempAvailabilityBarArea->setVisible(false);
|
|
|
|
pieces_availability = new PieceAvailabilityBar(this);
|
|
|
|
groupBarLayout->addWidget(pieces_availability, 1, 1);
|
|
|
|
pieces_availability->setFixedHeight(barHeight);
|
|
|
|
pieces_availability->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
|
|
|
|
|
|
// Tracker list
|
|
|
|
trackerList = new TrackerList(this);
|
|
|
|
trackerUpButton->setIcon(GuiIconProvider::instance()->getIcon("go-up"));
|
|
|
|
trackerUpButton->setIconSize(Utils::Misc::smallIconSize());
|
|
|
|
trackerDownButton->setIcon(GuiIconProvider::instance()->getIcon("go-down"));
|
|
|
|
trackerDownButton->setIconSize(Utils::Misc::smallIconSize());
|
|
|
|
connect(trackerUpButton, SIGNAL(clicked()), trackerList, SLOT(moveSelectionUp()));
|
|
|
|
connect(trackerDownButton, SIGNAL(clicked()), trackerList, SLOT(moveSelectionDown()));
|
|
|
|
horizontalLayout_trackers->insertWidget(0, trackerList);
|
|
|
|
connect(trackerList->header(), SIGNAL(sectionMoved(int, int, int)), trackerList, SLOT(saveSettings()));
|
|
|
|
connect(trackerList->header(), SIGNAL(sectionResized(int, int, int)), trackerList, SLOT(saveSettings()));
|
|
|
|
connect(trackerList->header(), SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)), trackerList, SLOT(saveSettings()));
|
|
|
|
// Peers list
|
|
|
|
peersList = new PeerListWidget(this);
|
|
|
|
peerpage_layout->addWidget(peersList);
|
|
|
|
connect(peersList->header(), SIGNAL(sectionMoved(int, int, int)), peersList, SLOT(saveSettings()));
|
|
|
|
connect(peersList->header(), SIGNAL(sectionResized(int, int, int)), peersList, SLOT(saveSettings()));
|
|
|
|
connect(peersList->header(), SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)), peersList, SLOT(saveSettings()));
|
|
|
|
// Speed widget
|
|
|
|
speedWidget = new SpeedWidget(this);
|
|
|
|
speed_layout->addWidget(speedWidget);
|
|
|
|
// Tab bar
|
|
|
|
m_tabBar = new PropTabBar();
|
|
|
|
m_tabBar->setContentsMargins(0, 5, 0, 0);
|
|
|
|
verticalLayout->addLayout(m_tabBar);
|
|
|
|
connect(m_tabBar, SIGNAL(tabChanged(int)), stackedProperties, SLOT(setCurrentIndex(int)));
|
|
|
|
connect(m_tabBar, SIGNAL(tabChanged(int)), this, SLOT(saveSettings()));
|
|
|
|
connect(m_tabBar, SIGNAL(visibilityToggled(bool)), SLOT(setVisibility(bool)));
|
|
|
|
connect(m_tabBar, SIGNAL(visibilityToggled(bool)), this, SLOT(saveSettings()));
|
|
|
|
// Dynamic data refresher
|
|
|
|
refreshTimer = new QTimer(this);
|
|
|
|
connect(refreshTimer, SIGNAL(timeout()), this, SLOT(loadDynamicData()));
|
|
|
|
refreshTimer->start(3000); // 3sec
|
|
|
|
editHotkeyFile = new QShortcut(QKeySequence("F2"), filesList, 0, 0, Qt::WidgetShortcut);
|
|
|
|
connect(editHotkeyFile, SIGNAL(activated()), SLOT(renameSelectedFile()));
|
|
|
|
editHotkeyWeb = new QShortcut(QKeySequence("F2"), listWebSeeds, 0, 0, Qt::WidgetShortcut);
|
|
|
|
connect(editHotkeyWeb, SIGNAL(activated()), SLOT(editWebSeed()));
|
|
|
|
connect(listWebSeeds, SIGNAL(doubleClicked(QModelIndex)), SLOT(editWebSeed()));
|
|
|
|
deleteHotkeyWeb = new QShortcut(QKeySequence(QKeySequence::Delete), listWebSeeds, 0, 0, Qt::WidgetShortcut);
|
|
|
|
connect(deleteHotkeyWeb, SIGNAL(activated()), SLOT(deleteSelectedUrlSeeds()));
|
|
|
|
openHotkeyFile = new QShortcut(QKeySequence("Return"), filesList, 0, 0, Qt::WidgetShortcut);
|
|
|
|
connect(openHotkeyFile, SIGNAL(activated()), SLOT(openSelectedFile()));
|
|
|
|
}
|
|
|
|
|
|
|
|
PropertiesWidget::~PropertiesWidget() {
|
|
|
|
qDebug() << Q_FUNC_INFO << "ENTER";
|
|
|
|
delete refreshTimer;
|
|
|
|
delete trackerList;
|
|
|
|
delete peersList;
|
|
|
|
delete speedWidget;
|
|
|
|
delete downloaded_pieces;
|
|
|
|
delete pieces_availability;
|
|
|
|
delete PropListModel;
|
|
|
|
delete PropDelegate;
|
|
|
|
delete m_tabBar;
|
|
|
|
delete editHotkeyFile;
|
|
|
|
delete editHotkeyWeb;
|
|
|
|
delete deleteHotkeyWeb;
|
|
|
|
delete openHotkeyFile;
|
|
|
|
qDebug() << Q_FUNC_INFO << "EXIT";
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::showPiecesAvailability(bool show) {
|
|
|
|
avail_pieces_lbl->setVisible(show);
|
|
|
|
pieces_availability->setVisible(show);
|
|
|
|
avail_average_lbl->setVisible(show);
|
|
|
|
if (show || (!show && !downloaded_pieces->isVisible()))
|
|
|
|
line_2->setVisible(show);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::showPiecesDownloaded(bool show) {
|
|
|
|
downloaded_pieces_lbl->setVisible(show);
|
|
|
|
downloaded_pieces->setVisible(show);
|
|
|
|
progress_lbl->setVisible(show);
|
|
|
|
if (show || (!show && !pieces_availability->isVisible()))
|
|
|
|
line_2->setVisible(show);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::setVisibility(bool visible) {
|
|
|
|
if (!visible && state == VISIBLE) {
|
|
|
|
QSplitter *hSplitter = static_cast<QSplitter*>(parentWidget());
|
|
|
|
stackedProperties->setVisible(false);
|
|
|
|
slideSizes = hSplitter->sizes();
|
|
|
|
hSplitter->handle(1)->setVisible(false);
|
|
|
|
hSplitter->handle(1)->setDisabled(true);
|
|
|
|
QList<int> sizes = QList<int>() << hSplitter->geometry().height()-30 << 30;
|
|
|
|
hSplitter->setSizes(sizes);
|
|
|
|
state = REDUCED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (visible && state == REDUCED) {
|
|
|
|
stackedProperties->setVisible(true);
|
|
|
|
QSplitter *hSplitter = static_cast<QSplitter*>(parentWidget());
|
|
|
|
hSplitter->handle(1)->setDisabled(false);
|
|
|
|
hSplitter->handle(1)->setVisible(true);
|
|
|
|
hSplitter->setSizes(slideSizes);
|
|
|
|
state = VISIBLE;
|
|
|
|
// Force refresh
|
|
|
|
loadDynamicData();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::clear() {
|
|
|
|
qDebug("Clearing torrent properties");
|
|
|
|
save_path->clear();
|
|
|
|
lbl_creationDate->clear();
|
|
|
|
label_total_pieces_val->clear();
|
|
|
|
hash_lbl->clear();
|
|
|
|
comment_text->clear();
|
|
|
|
progress_lbl->clear();
|
|
|
|
trackerList->clear();
|
|
|
|
downloaded_pieces->clear();
|
|
|
|
pieces_availability->clear();
|
|
|
|
avail_average_lbl->clear();
|
|
|
|
wasted->clear();
|
|
|
|
upTotal->clear();
|
|
|
|
dlTotal->clear();
|
|
|
|
peersList->clear();
|
|
|
|
lbl_uplimit->clear();
|
|
|
|
lbl_dllimit->clear();
|
|
|
|
lbl_elapsed->clear();
|
|
|
|
lbl_connections->clear();
|
|
|
|
reannounce_lbl->clear();
|
|
|
|
shareRatio->clear();
|
|
|
|
listWebSeeds->clear();
|
|
|
|
m_contentFilterLine->clear();
|
|
|
|
PropListModel->model()->clear();
|
|
|
|
label_eta_val->clear();
|
|
|
|
label_seeds_val->clear();
|
|
|
|
label_peers_val->clear();
|
|
|
|
label_dl_speed_val->clear();
|
|
|
|
label_upload_speed_val->clear();
|
|
|
|
label_total_size_val->clear();
|
|
|
|
label_completed_on_val->clear();
|
|
|
|
label_last_complete_val->clear();
|
|
|
|
label_created_by_val->clear();
|
|
|
|
label_added_on_val->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
BitTorrent::TorrentHandle *PropertiesWidget::getCurrentTorrent() const
|
|
|
|
{
|
|
|
|
return m_torrent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::updateSavePath(BitTorrent::TorrentHandle *const torrent)
|
|
|
|
{
|
|
|
|
if (m_torrent == torrent) {
|
|
|
|
save_path->setText(Utils::Fs::toNativePath(m_torrent->savePath()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::loadTrackers(BitTorrent::TorrentHandle *const torrent)
|
|
|
|
{
|
|
|
|
if (torrent == m_torrent)
|
|
|
|
trackerList->loadTrackers();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::updateTorrentInfos(BitTorrent::TorrentHandle *const torrent)
|
|
|
|
{
|
|
|
|
if (m_torrent == torrent)
|
|
|
|
loadTorrentInfos(m_torrent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::loadTorrentInfos(BitTorrent::TorrentHandle *const torrent)
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
m_torrent = torrent;
|
|
|
|
if (!m_torrent) return;
|
|
|
|
|
|
|
|
// Save path
|
|
|
|
updateSavePath(m_torrent);
|
|
|
|
// Hash
|
|
|
|
hash_lbl->setText(m_torrent->hash());
|
|
|
|
PropListModel->model()->clear();
|
|
|
|
if (m_torrent->hasMetadata()) {
|
|
|
|
// Creation date
|
|
|
|
lbl_creationDate->setText(m_torrent->creationDate().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
|
|
|
|
label_total_size_val->setText(Utils::Misc::friendlyUnit(m_torrent->totalSize()));
|
|
|
|
|
|
|
|
// Comment
|
|
|
|
comment_text->setText(Utils::Misc::parseHtmlLinks(m_torrent->comment()));
|
|
|
|
|
|
|
|
// URL seeds
|
|
|
|
loadUrlSeeds();
|
|
|
|
|
|
|
|
label_created_by_val->setText(m_torrent->creator());
|
|
|
|
|
|
|
|
// List files in torrent
|
|
|
|
PropListModel->model()->setupModelData(m_torrent->info());
|
|
|
|
filesList->setExpanded(PropListModel->index(0, 0), true);
|
|
|
|
|
|
|
|
// Load file priorities
|
|
|
|
PropListModel->model()->updateFilesPriorities(m_torrent->filePriorities());
|
|
|
|
}
|
|
|
|
// Load dynamic data
|
|
|
|
loadDynamicData();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::readSettings() {
|
|
|
|
const Preferences* const pref = Preferences::instance();
|
|
|
|
// Restore splitter sizes
|
|
|
|
QStringList sizes_str = pref->getPropSplitterSizes().split(",");
|
|
|
|
if (sizes_str.size() == 2) {
|
|
|
|
slideSizes << sizes_str.first().toInt();
|
|
|
|
slideSizes << sizes_str.last().toInt();
|
|
|
|
QSplitter *hSplitter = static_cast<QSplitter*>(parentWidget());
|
|
|
|
hSplitter->setSizes(slideSizes);
|
|
|
|
}
|
|
|
|
const int current_tab = pref->getPropCurTab();
|
|
|
|
const bool visible = pref->getPropVisible();
|
|
|
|
// the following will call saveSettings but shouldn't change any state
|
|
|
|
if (!filesList->header()->restoreState(pref->getPropFileListState())) {
|
|
|
|
filesList->header()->resizeSection(0, 400); //Default
|
|
|
|
}
|
|
|
|
m_tabBar->setCurrentIndex(current_tab);
|
|
|
|
if (!visible) {
|
|
|
|
setVisibility(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::saveSettings() {
|
|
|
|
Preferences* const pref = Preferences::instance();
|
|
|
|
pref->setPropVisible(state==VISIBLE);
|
|
|
|
// Splitter sizes
|
|
|
|
QSplitter *hSplitter = static_cast<QSplitter*>(parentWidget());
|
|
|
|
QList<int> sizes;
|
|
|
|
if (state == VISIBLE)
|
|
|
|
sizes = hSplitter->sizes();
|
|
|
|
else
|
|
|
|
sizes = slideSizes;
|
|
|
|
qDebug("Sizes: %d", sizes.size());
|
|
|
|
if (sizes.size() == 2) {
|
|
|
|
pref->setPropSplitterSizes(QString::number(sizes.first()) + ',' + QString::number(sizes.last()));
|
|
|
|
}
|
|
|
|
pref->setPropFileListState(filesList->header()->saveState());
|
|
|
|
// Remember current tab
|
|
|
|
pref->setPropCurTab(m_tabBar->currentIndex());
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::reloadPreferences() {
|
|
|
|
// Take program preferences into consideration
|
|
|
|
peersList->updatePeerHostNameResolutionState();
|
|
|
|
peersList->updatePeerCountryResolutionState();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::loadDynamicData() {
|
|
|
|
// Refresh only if the torrent handle is valid and if visible
|
|
|
|
if (!m_torrent || (main_window->currentTabWidget() != transferList) || (state != VISIBLE)) return;
|
|
|
|
|
|
|
|
// Transfer infos
|
|
|
|
switch(stackedProperties->currentIndex()) {
|
|
|
|
case PropTabBar::MAIN_TAB: {
|
|
|
|
wasted->setText(Utils::Misc::friendlyUnit(m_torrent->wastedSize()));
|
|
|
|
|
|
|
|
upTotal->setText(tr("%1 (%2 this session)").arg(Utils::Misc::friendlyUnit(m_torrent->totalUpload()))
|
|
|
|
.arg(Utils::Misc::friendlyUnit(m_torrent->totalPayloadUpload())));
|
|
|
|
|
|
|
|
dlTotal->setText(tr("%1 (%2 this session)").arg(Utils::Misc::friendlyUnit(m_torrent->totalDownload()))
|
|
|
|
.arg(Utils::Misc::friendlyUnit(m_torrent->totalPayloadDownload())));
|
|
|
|
|
|
|
|
lbl_uplimit->setText(m_torrent->uploadLimit() <= 0 ? QString::fromUtf8(C_INFINITY) : Utils::Misc::friendlyUnit(m_torrent->uploadLimit(), true));
|
|
|
|
|
|
|
|
lbl_dllimit->setText(m_torrent->downloadLimit() <= 0 ? QString::fromUtf8(C_INFINITY) : Utils::Misc::friendlyUnit(m_torrent->downloadLimit(), true));
|
|
|
|
|
|
|
|
QString elapsed_txt;
|
|
|
|
if (m_torrent->isSeed())
|
|
|
|
elapsed_txt = tr("%1 (seeded for %2)", "e.g. 4m39s (seeded for 3m10s)")
|
|
|
|
.arg(Utils::Misc::userFriendlyDuration(m_torrent->activeTime()))
|
|
|
|
.arg(Utils::Misc::userFriendlyDuration(m_torrent->seedingTime()));
|
|
|
|
else
|
|
|
|
elapsed_txt = Utils::Misc::userFriendlyDuration(m_torrent->activeTime());
|
|
|
|
lbl_elapsed->setText(elapsed_txt);
|
|
|
|
|
|
|
|
lbl_connections->setText(tr("%1 (%2 max)", "%1 and %2 are numbers, e.g. 3 (10 max)")
|
|
|
|
.arg(m_torrent->connectionsCount())
|
|
|
|
.arg(m_torrent->connectionsLimit() < 0 ? QString::fromUtf8(C_INFINITY) : QString::number(m_torrent->connectionsLimit())));
|
|
|
|
|
|
|
|
label_eta_val->setText(Utils::Misc::userFriendlyDuration(m_torrent->eta()));
|
|
|
|
|
|
|
|
// Update next announce time
|
|
|
|
reannounce_lbl->setText(Utils::Misc::userFriendlyDuration(m_torrent->nextAnnounce()));
|
|
|
|
|
|
|
|
// Update ratio info
|
|
|
|
const qreal ratio = m_torrent->realRatio();
|
|
|
|
shareRatio->setText(ratio > BitTorrent::TorrentHandle::MAX_RATIO ? QString::fromUtf8(C_INFINITY) : Utils::String::fromDouble(ratio, 2));
|
|
|
|
|
|
|
|
label_seeds_val->setText(tr("%1 (%2 total)", "%1 and %2 are numbers, e.g. 3 (10 total)")
|
|
|
|
.arg(QString::number(m_torrent->seedsCount()))
|
|
|
|
.arg(QString::number(m_torrent->totalSeedsCount())));
|
|
|
|
|
|
|
|
label_peers_val->setText(tr("%1 (%2 total)", "%1 and %2 are numbers, e.g. 3 (10 total)")
|
|
|
|
.arg(QString::number(m_torrent->leechsCount()))
|
|
|
|
.arg(QString::number(m_torrent->totalLeechersCount())));
|
|
|
|
|
|
|
|
label_dl_speed_val->setText(tr("%1 (%2 avg.)", "%1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.)")
|
|
|
|
.arg(Utils::Misc::friendlyUnit(m_torrent->downloadPayloadRate(), true))
|
|
|
|
.arg(Utils::Misc::friendlyUnit(m_torrent->totalDownload() / (1 + m_torrent->activeTime() - m_torrent->finishedTime()), true)));
|
|
|
|
|
|
|
|
label_upload_speed_val->setText(tr("%1 (%2 avg.)", "%1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.)")
|
|
|
|
.arg(Utils::Misc::friendlyUnit(m_torrent->uploadPayloadRate(), true))
|
|
|
|
.arg(Utils::Misc::friendlyUnit(m_torrent->totalUpload() / (1 + m_torrent->activeTime()), true)));
|
|
|
|
|
|
|
|
label_last_complete_val->setText(m_torrent->lastSeenComplete().isValid() ? m_torrent->lastSeenComplete().toString(Qt::DefaultLocaleShortDate) : tr("Never"));
|
|
|
|
|
|
|
|
label_completed_on_val->setText(m_torrent->completedTime().isValid() ? m_torrent->completedTime().toString(Qt::DefaultLocaleShortDate) : "");
|
|
|
|
|
|
|
|
label_added_on_val->setText(m_torrent->addedTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
|
|
|
|
if (m_torrent->hasMetadata()) {
|
|
|
|
label_total_pieces_val->setText(tr("%1 x %2 (have %3)", "(torrent pieces) eg 152 x 4MB (have 25)").arg(m_torrent->piecesCount()).arg(Utils::Misc::friendlyUnit(m_torrent->pieceLength())).arg(m_torrent->piecesHave()));
|
|
|
|
|
|
|
|
if (!m_torrent->isSeed() && !m_torrent->isPaused() && !m_torrent->isQueued() && !m_torrent->isChecking()) {
|
|
|
|
// Pieces availability
|
|
|
|
showPiecesAvailability(true);
|
|
|
|
pieces_availability->setAvailability(m_torrent->pieceAvailability());
|
|
|
|
avail_average_lbl->setText(Utils::String::fromDouble(m_torrent->distributedCopies(), 3));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
showPiecesAvailability(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Progress
|
|
|
|
qreal progress = m_torrent->progress() * 100.;
|
|
|
|
progress_lbl->setText(Utils::String::fromDouble(progress, 1)+"%");
|
|
|
|
downloaded_pieces->setProgress(m_torrent->pieces(), m_torrent->downloadingPieces());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
showPiecesAvailability(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PropTabBar::TRACKERS_TAB: {
|
|
|
|
// Trackers
|
|
|
|
trackerList->loadTrackers();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PropTabBar::PEERS_TAB: {
|
|
|
|
// Load peers
|
|
|
|
peersList->loadPeers(m_torrent);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PropTabBar::FILES_TAB: {
|
|
|
|
// Files progress
|
|
|
|
if (m_torrent->hasMetadata()) {
|
|
|
|
qDebug("Updating priorities in files tab");
|
|
|
|
filesList->setUpdatesEnabled(false);
|
|
|
|
PropListModel->model()->updateFilesProgress(m_torrent->filesProgress());
|
|
|
|
// XXX: We don't update file priorities regularly for performance
|
|
|
|
// reasons. This means that priorities will not be updated if
|
|
|
|
// set from the Web UI.
|
|
|
|
// PropListModel->model()->updateFilesPriorities(h.file_priorities());
|
|
|
|
filesList->setUpdatesEnabled(true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::loadUrlSeeds() {
|
|
|
|
listWebSeeds->clear();
|
|
|
|
qDebug("Loading URL seeds");
|
|
|
|
const QList<QUrl> hc_seeds = m_torrent->urlSeeds();
|
|
|
|
// Add url seeds
|
|
|
|
foreach (const QUrl &hc_seed, hc_seeds) {
|
|
|
|
qDebug("Loading URL seed: %s", qPrintable(hc_seed.toString()));
|
|
|
|
new QListWidgetItem(hc_seed.toString(), listWebSeeds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::openDoubleClickedFile(const QModelIndex &index) {
|
|
|
|
if (!index.isValid()) return;
|
|
|
|
if (!m_torrent || !m_torrent->hasMetadata()) return;
|
|
|
|
if (PropListModel->itemType(index) == TorrentContentModelItem::FileType)
|
|
|
|
openFile(index);
|
|
|
|
else
|
|
|
|
openFolder(index, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::openFile(const QModelIndex &index) {
|
|
|
|
int i = PropListModel->getFileIndex(index);
|
|
|
|
const QDir saveDir(m_torrent->savePath(true));
|
|
|
|
const QString filename = m_torrent->filePath(i);
|
|
|
|
const QString file_path = Utils::Fs::expandPath(saveDir.absoluteFilePath(filename));
|
|
|
|
qDebug("Trying to open file at %s", qPrintable(file_path));
|
|
|
|
// Flush data
|
|
|
|
m_torrent->flushCache();
|
|
|
|
Utils::Misc::openPath(file_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::openFolder(const QModelIndex &index, bool containing_folder) {
|
|
|
|
QString absolute_path;
|
|
|
|
// FOLDER
|
|
|
|
if (PropListModel->itemType(index) == TorrentContentModelItem::FolderType) {
|
|
|
|
// Generate relative path to selected folder
|
|
|
|
QStringList path_items;
|
|
|
|
path_items << index.data().toString();
|
|
|
|
QModelIndex parent = PropListModel->parent(index);
|
|
|
|
while(parent.isValid()) {
|
|
|
|
path_items.prepend(parent.data().toString());
|
|
|
|
parent = PropListModel->parent(parent);
|
|
|
|
}
|
|
|
|
if (path_items.isEmpty())
|
|
|
|
return;
|
|
|
|
const QDir saveDir(m_torrent->savePath(true));
|
|
|
|
const QString relative_path = path_items.join("/");
|
|
|
|
absolute_path = Utils::Fs::expandPath(saveDir.absoluteFilePath(relative_path));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int i = PropListModel->getFileIndex(index);
|
|
|
|
const QDir saveDir(m_torrent->savePath(true));
|
|
|
|
const QString relative_path = m_torrent->filePath(i);
|
|
|
|
absolute_path = Utils::Fs::expandPath(saveDir.absoluteFilePath(relative_path));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flush data
|
|
|
|
m_torrent->flushCache();
|
|
|
|
if (containing_folder)
|
|
|
|
Utils::Misc::openFolderSelect(absolute_path);
|
|
|
|
else
|
|
|
|
Utils::Misc::openPath(absolute_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::displayFilesListMenu(const QPoint&) {
|
|
|
|
if (!m_torrent) return;
|
|
|
|
|
|
|
|
QModelIndexList selectedRows = filesList->selectionModel()->selectedRows(0);
|
|
|
|
if (selectedRows.empty())
|
|
|
|
return;
|
|
|
|
QMenu myFilesLlistMenu;
|
|
|
|
QAction *actOpen = 0;
|
|
|
|
QAction *actOpenContainingFolder = 0;
|
|
|
|
QAction *actRename = 0;
|
|
|
|
if (selectedRows.size() == 1) {
|
|
|
|
actOpen = myFilesLlistMenu.addAction(GuiIconProvider::instance()->getIcon("folder-documents"), tr("Open"));
|
|
|
|
actOpenContainingFolder = myFilesLlistMenu.addAction(GuiIconProvider::instance()->getIcon("inode-directory"), tr("Open Containing Folder"));
|
|
|
|
actRename = myFilesLlistMenu.addAction(GuiIconProvider::instance()->getIcon("edit-rename"), tr("Rename..."));
|
|
|
|
myFilesLlistMenu.addSeparator();
|
|
|
|
}
|
|
|
|
QMenu subMenu;
|
|
|
|
if (!m_torrent->isSeed()) {
|
|
|
|
subMenu.setTitle(tr("Priority"));
|
|
|
|
subMenu.addAction(actionNot_downloaded);
|
|
|
|
subMenu.addAction(actionNormal);
|
|
|
|
subMenu.addAction(actionHigh);
|
|
|
|
subMenu.addAction(actionMaximum);
|
|
|
|
myFilesLlistMenu.addMenu(&subMenu);
|
|
|
|
}
|
|
|
|
// Call menu
|
|
|
|
const QAction *act = myFilesLlistMenu.exec(QCursor::pos());
|
|
|
|
// The selected torrent might have disappeared during exec()
|
|
|
|
// from the current view thus leaving invalid indices.
|
|
|
|
const QModelIndex index = *(selectedRows.begin());
|
|
|
|
if (!index.isValid())
|
|
|
|
return;
|
|
|
|
if (act) {
|
|
|
|
if (act == actOpen)
|
|
|
|
openDoubleClickedFile(index);
|
|
|
|
else if (act == actOpenContainingFolder)
|
|
|
|
openFolder(index, true);
|
|
|
|
else if (act == actRename)
|
|
|
|
renameSelectedFile();
|
|
|
|
else {
|
|
|
|
int prio = prio::NORMAL;
|
|
|
|
if (act == actionHigh)
|
|
|
|
prio = prio::HIGH;
|
|
|
|
else if (act == actionMaximum)
|
|
|
|
prio = prio::MAXIMUM;
|
|
|
|
else if (act == actionNot_downloaded)
|
|
|
|
prio = prio::IGNORED;
|
|
|
|
|
|
|
|
qDebug("Setting files priority");
|
|
|
|
foreach (QModelIndex index, selectedRows) {
|
|
|
|
qDebug("Setting priority(%d) for file at row %d", prio, index.row());
|
|
|
|
PropListModel->setData(PropListModel->index(index.row(), PRIORITY, index.parent()), prio);
|
|
|
|
}
|
|
|
|
// Save changes
|
|
|
|
filteredFilesChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::displayWebSeedListMenu(const QPoint&) {
|
|
|
|
if (!m_torrent) return;
|
|
|
|
|
|
|
|
QMenu seedMenu;
|
|
|
|
QModelIndexList rows = listWebSeeds->selectionModel()->selectedRows();
|
|
|
|
QAction *actAdd = seedMenu.addAction(GuiIconProvider::instance()->getIcon("list-add"), tr("New Web seed"));
|
|
|
|
QAction *actDel = 0;
|
|
|
|
QAction *actCpy = 0;
|
|
|
|
QAction *actEdit = 0;
|
|
|
|
|
|
|
|
if (rows.size()) {
|
|
|
|
actDel = seedMenu.addAction(GuiIconProvider::instance()->getIcon("list-remove"), tr("Remove Web seed"));
|
|
|
|
seedMenu.addSeparator();
|
|
|
|
actCpy = seedMenu.addAction(GuiIconProvider::instance()->getIcon("edit-copy"), tr("Copy Web seed URL"));
|
|
|
|
actEdit = seedMenu.addAction(GuiIconProvider::instance()->getIcon("edit-rename"), tr("Edit Web seed URL"));
|
|
|
|
}
|
|
|
|
|
|
|
|
const QAction *act = seedMenu.exec(QCursor::pos());
|
|
|
|
if (act) {
|
|
|
|
if (act == actAdd)
|
|
|
|
askWebSeed();
|
|
|
|
else if (act == actDel)
|
|
|
|
deleteSelectedUrlSeeds();
|
|
|
|
else if (act == actCpy)
|
|
|
|
copySelectedWebSeedsToClipboard();
|
|
|
|
else if (act == actEdit)
|
|
|
|
editWebSeed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::renameSelectedFile() {
|
|
|
|
const QModelIndexList selectedIndexes = filesList->selectionModel()->selectedRows(0);
|
|
|
|
if (selectedIndexes.size() != 1)
|
|
|
|
return;
|
|
|
|
const QModelIndex index = selectedIndexes.first();
|
|
|
|
if (!index.isValid())
|
|
|
|
return;
|
|
|
|
// Ask for new name
|
|
|
|
bool ok;
|
|
|
|
QString new_name_last = AutoExpandableDialog::getText(this, tr("Rename the file"),
|
|
|
|
tr("New name:"), QLineEdit::Normal,
|
|
|
|
index.data().toString(), &ok).trimmed();
|
|
|
|
if (ok && !new_name_last.isEmpty()) {
|
|
|
|
if (!Utils::Fs::isValidFileSystemName(new_name_last)) {
|
|
|
|
MessageBoxRaised::warning(this, tr("The file could not be renamed"),
|
|
|
|
tr("This file name contains forbidden characters, please choose a different one."),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (PropListModel->itemType(index) == TorrentContentModelItem::FileType) {
|
|
|
|
// File renaming
|
|
|
|
const int file_index = PropListModel->getFileIndex(index);
|
|
|
|
if (!m_torrent || !m_torrent->hasMetadata()) return;
|
|
|
|
QString old_name = m_torrent->filePath(file_index);
|
|
|
|
if (old_name.endsWith(".!qB") && !new_name_last.endsWith(".!qB")) {
|
|
|
|
new_name_last += ".!qB";
|
|
|
|
}
|
|
|
|
QStringList path_items = old_name.split("/");
|
|
|
|
path_items.removeLast();
|
|
|
|
path_items << new_name_last;
|
|
|
|
QString new_name = path_items.join("/");
|
|
|
|
if (Utils::Fs::sameFileNames(old_name, new_name)) {
|
|
|
|
qDebug("Name did not change");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
new_name = Utils::Fs::expandPath(new_name);
|
|
|
|
qDebug("New name: %s", qPrintable(new_name));
|
|
|
|
// Check if that name is already used
|
|
|
|
for (int i = 0; i < m_torrent->filesCount(); ++i) {
|
|
|
|
if (i == file_index) continue;
|
|
|
|
if (Utils::Fs::sameFileNames(m_torrent->filePath(i), new_name)) {
|
|
|
|
// Display error message
|
|
|
|
MessageBoxRaised::warning(this, tr("The file could not be renamed"),
|
|
|
|
tr("This name is already in use in this folder. Please use a different name."),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const bool force_recheck = QFile::exists(m_torrent->savePath(true) + "/" + new_name);
|
|
|
|
qDebug("Renaming %s to %s", qPrintable(old_name), qPrintable(new_name));
|
|
|
|
m_torrent->renameFile(file_index, new_name);
|
|
|
|
// Force recheck
|
|
|
|
if (force_recheck) m_torrent->forceRecheck();
|
|
|
|
// Rename if torrent files model too
|
|
|
|
if (new_name_last.endsWith(".!qB"))
|
|
|
|
new_name_last.chop(4);
|
|
|
|
PropListModel->setData(index, new_name_last);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Folder renaming
|
|
|
|
QStringList path_items;
|
|
|
|
path_items << index.data().toString();
|
|
|
|
QModelIndex parent = PropListModel->parent(index);
|
|
|
|
while(parent.isValid()) {
|
|
|
|
path_items.prepend(parent.data().toString());
|
|
|
|
parent = PropListModel->parent(parent);
|
|
|
|
}
|
|
|
|
const QString old_path = path_items.join("/");
|
|
|
|
path_items.removeLast();
|
|
|
|
path_items << new_name_last;
|
|
|
|
QString new_path = path_items.join("/");
|
|
|
|
if (Utils::Fs::sameFileNames(old_path, new_path)) {
|
|
|
|
qDebug("Name did not change");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!new_path.endsWith("/")) new_path += "/";
|
|
|
|
// Check for overwriting
|
|
|
|
for (int i = 0; i < m_torrent->filesCount(); ++i) {
|
|
|
|
const QString ¤t_name = m_torrent->filePath(i);
|
|
|
|
#if defined(Q_OS_UNIX) || defined(Q_WS_QWS)
|
|
|
|
if (current_name.startsWith(new_path, Qt::CaseSensitive)) {
|
|
|
|
#else
|
|
|
|
if (current_name.startsWith(new_path, Qt::CaseInsensitive)) {
|
|
|
|
#endif
|
|
|
|
QMessageBox::warning(this, tr("The folder could not be renamed"),
|
|
|
|
tr("This name is already in use in this folder. Please use a different name."),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool force_recheck = false;
|
|
|
|
// Replace path in all files
|
|
|
|
for (int i = 0; i < m_torrent->filesCount(); ++i) {
|
|
|
|
const QString current_name = m_torrent->filePath(i);
|
|
|
|
if (current_name.startsWith(old_path)) {
|
|
|
|
QString new_name = current_name;
|
|
|
|
new_name.replace(0, old_path.length(), new_path);
|
|
|
|
if (!force_recheck && QDir(m_torrent->savePath(true)).exists(new_name))
|
|
|
|
force_recheck = true;
|
|
|
|
new_name = Utils::Fs::expandPath(new_name);
|
|
|
|
qDebug("Rename %s to %s", qPrintable(current_name), qPrintable(new_name));
|
|
|
|
m_torrent->renameFile(i, new_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Force recheck
|
|
|
|
if (force_recheck) m_torrent->forceRecheck();
|
|
|
|
// Rename folder in torrent files model too
|
|
|
|
PropListModel->setData(index, new_name_last);
|
|
|
|
// Remove old folder
|
|
|
|
const QDir old_folder(m_torrent->savePath(true) + "/" + old_path);
|
|
|
|
int timeout = 10;
|
|
|
|
while(!QDir().rmpath(old_folder.absolutePath()) && timeout > 0) {
|
|
|
|
// FIXME: We should not sleep here (freezes the UI for 1 second)
|
|
|
|
Utils::Misc::msleep(100);
|
|
|
|
--timeout;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::openSelectedFile() {
|
|
|
|
const QModelIndexList selectedIndexes = filesList->selectionModel()->selectedRows(0);
|
|
|
|
if (selectedIndexes.size() != 1)
|
|
|
|
return;
|
|
|
|
openDoubleClickedFile(selectedIndexes.first());
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::askWebSeed() {
|
|
|
|
bool ok;
|
|
|
|
// Ask user for a new url seed
|
|
|
|
const QString url_seed = AutoExpandableDialog::getText(this, tr("New URL seed", "New HTTP source"),
|
|
|
|
tr("New URL seed:"), QLineEdit::Normal,
|
|
|
|
QString::fromUtf8("http://www."), &ok);
|
|
|
|
if (!ok) return;
|
|
|
|
qDebug("Adding %s web seed", qPrintable(url_seed));
|
|
|
|
if (!listWebSeeds->findItems(url_seed, Qt::MatchFixedString).empty()) {
|
|
|
|
QMessageBox::warning(this, "qBittorrent",
|
|
|
|
tr("This URL seed is already in the list."),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (m_torrent)
|
|
|
|
m_torrent->addUrlSeeds(QList<QUrl>() << url_seed);
|
|
|
|
// Refresh the seeds list
|
|
|
|
loadUrlSeeds();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::deleteSelectedUrlSeeds() {
|
|
|
|
const QList<QListWidgetItem *> selectedItems = listWebSeeds->selectedItems();
|
|
|
|
if (selectedItems.isEmpty()) return;
|
|
|
|
|
|
|
|
QList<QUrl> urlSeeds;
|
|
|
|
foreach (const QListWidgetItem *item, selectedItems)
|
|
|
|
urlSeeds << item->text();
|
|
|
|
|
|
|
|
m_torrent->removeUrlSeeds(urlSeeds);
|
|
|
|
// Refresh list
|
|
|
|
loadUrlSeeds();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::copySelectedWebSeedsToClipboard() const {
|
|
|
|
const QList<QListWidgetItem *> selected_items = listWebSeeds->selectedItems();
|
|
|
|
if (selected_items.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QStringList urls_to_copy;
|
|
|
|
foreach (QListWidgetItem *item, selected_items)
|
|
|
|
urls_to_copy << item->text();
|
|
|
|
|
|
|
|
QApplication::clipboard()->setText(urls_to_copy.join("\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::editWebSeed() {
|
|
|
|
const QList<QListWidgetItem *> selected_items = listWebSeeds->selectedItems();
|
|
|
|
if (selected_items.size() != 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const QListWidgetItem *selected_item = selected_items.last();
|
|
|
|
const QString old_seed = selected_item->text();
|
|
|
|
bool result;
|
|
|
|
const QString new_seed = AutoExpandableDialog::getText(this, tr("Web seed editing"),
|
|
|
|
tr("Web seed URL:"), QLineEdit::Normal,
|
|
|
|
old_seed, &result);
|
|
|
|
if (!result)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!listWebSeeds->findItems(new_seed, Qt::MatchFixedString).empty()) {
|
|
|
|
QMessageBox::warning(this, tr("qBittorrent"),
|
|
|
|
tr("This URL seed is already in the list."),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_torrent->removeUrlSeeds(QList<QUrl>() << old_seed);
|
|
|
|
m_torrent->addUrlSeeds(QList<QUrl>() << new_seed);
|
|
|
|
loadUrlSeeds();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PropertiesWidget::applyPriorities() {
|
|
|
|
qDebug("Saving files priorities");
|
|
|
|
const QVector<int> priorities = PropListModel->model()->getFilePriorities();
|
|
|
|
// Prioritize the files
|
|
|
|
qDebug("prioritize files: %d", priorities[0]);
|
|
|
|
m_torrent->prioritizeFiles(priorities);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::filteredFilesChanged() {
|
|
|
|
if (m_torrent)
|
|
|
|
applyPriorities();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PropertiesWidget::filterText(const QString& filter) {
|
|
|
|
PropListModel->setFilterRegExp(QRegExp(filter, Qt::CaseInsensitive, QRegExp::WildcardUnix));
|
|
|
|
if (filter.isEmpty()) {
|
|
|
|
filesList->collapseAll();
|
|
|
|
filesList->expand(PropListModel->index(0, 0));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
filesList->expandAll();
|
|
|
|
}
|