2023-02-11 20:49:42 +00:00
|
|
|
// This file Copyright © 2009-2023 Mnemosyne LLC.
|
2022-02-07 16:25:02 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2009-04-09 18:55:47 +00:00
|
|
|
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
#include <algorithm>
|
2022-08-17 16:08:36 +00:00
|
|
|
#include <utility>
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
|
2009-10-06 00:27:26 +00:00
|
|
|
#include <QFileInfo>
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
#include <libtransmission/transmission.h>
|
2022-08-04 13:44:18 +00:00
|
|
|
|
2012-12-14 04:34:42 +00:00
|
|
|
#include <libtransmission/variant.h>
|
2021-12-25 23:48:40 +00:00
|
|
|
#include <libtransmission/torrent-metainfo.h>
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "AddData.h"
|
2021-11-12 16:42:51 +00:00
|
|
|
#include "FileTreeModel.h"
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "FreeSpaceLabel.h"
|
|
|
|
#include "OptionsDialog.h"
|
|
|
|
#include "Prefs.h"
|
|
|
|
#include "Session.h"
|
|
|
|
#include "Torrent.h"
|
|
|
|
#include "Utils.h"
|
2020-07-27 04:30:58 +00:00
|
|
|
#include "VariantHelpers.h"
|
|
|
|
|
|
|
|
using ::trqt::variant_helpers::dictAdd;
|
|
|
|
using ::trqt::variant_helpers::listAdd;
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
OptionsDialog::OptionsDialog(Session& session, Prefs const& prefs, AddData addme, QWidget* parent)
|
|
|
|
: BaseDialog(parent)
|
|
|
|
, add_(std::move(addme))
|
|
|
|
, session_(session)
|
|
|
|
, is_local_(session_.isLocal())
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.setupUi(this);
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2022-09-07 21:38:34 +00:00
|
|
|
setWindowTitle(add_.type == AddData::FILENAME ? tr("Open Torrent from File") : tr("Open Torrent from URL or Magnet Link"));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
edit_timer_.setInterval(2000);
|
|
|
|
edit_timer_.setSingleShot(true);
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(&edit_timer_, &QTimer::timeout, this, &OptionsDialog::onDestinationChanged);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (add_.type == AddData::FILENAME)
|
2013-02-09 23:11:17 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.sourceStack->setCurrentWidget(ui_.sourceButton);
|
|
|
|
ui_.sourceButton->setMode(PathButton::FileMode);
|
|
|
|
ui_.sourceButton->setTitle(tr("Open Torrent"));
|
|
|
|
ui_.sourceButton->setNameFilter(tr("Torrent Files (*.torrent);;All Files (*.*)"));
|
|
|
|
ui_.sourceButton->setPath(add_.filename);
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.sourceButton, &PathButton::pathChanged, this, &OptionsDialog::onSourceChanged);
|
2013-02-09 23:11:17 +00:00
|
|
|
}
|
2017-04-19 12:04:45 +00:00
|
|
|
else
|
2013-02-09 23:11:17 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.sourceStack->setCurrentWidget(ui_.sourceEdit);
|
|
|
|
ui_.sourceEdit->setText(add_.readableName());
|
|
|
|
ui_.sourceEdit->selectAll();
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.sourceEdit, &QLineEdit::editingFinished, this, &OptionsDialog::onSourceChanged);
|
2013-02-09 23:11:17 +00:00
|
|
|
}
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.sourceStack->setFixedHeight(ui_.sourceStack->currentWidget()->sizeHint().height());
|
|
|
|
ui_.sourceLabel->setBuddy(ui_.sourceStack->currentWidget());
|
2014-12-29 04:03:56 +00:00
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
QFontMetrics const font_metrics(font());
|
|
|
|
int const width = font_metrics.size(0, QStringLiteral("This is a pretty long torrent filename indeed.torrent")).width();
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.sourceStack->setMinimumWidth(width);
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
QString const download_dir(Utils::removeTrailingDirSeparator(prefs.getString(Prefs::DOWNLOAD_DIR)));
|
|
|
|
ui_.freeSpaceLabel->setSession(session_);
|
|
|
|
ui_.freeSpaceLabel->setPath(download_dir);
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.destinationButton->setMode(PathButton::DirectoryMode);
|
|
|
|
ui_.destinationButton->setTitle(tr("Select Destination"));
|
|
|
|
ui_.destinationButton->setPath(download_dir);
|
|
|
|
ui_.destinationEdit->setText(download_dir);
|
2010-01-05 23:47:50 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_local_)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
local_destination_.setPath(download_dir);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2016-10-03 18:26:28 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.destinationButton, &PathButton::pathChanged, this, &OptionsDialog::onDestinationChanged);
|
|
|
|
connect(ui_.destinationEdit, &QLineEdit::textEdited, &edit_timer_, qOverload<>(&QTimer::start));
|
|
|
|
connect(ui_.destinationEdit, &QLineEdit::editingFinished, this, &OptionsDialog::onDestinationChanged);
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.filesView->setEditable(false);
|
|
|
|
ui_.priorityCombo->addItem(tr("High"), TR_PRI_HIGH);
|
|
|
|
ui_.priorityCombo->addItem(tr("Normal"), TR_PRI_NORMAL);
|
|
|
|
ui_.priorityCombo->addItem(tr("Low"), TR_PRI_LOW);
|
|
|
|
ui_.priorityCombo->setCurrentIndex(1); // Normal
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.startCheck->setChecked(prefs.getBool(Prefs::START));
|
|
|
|
ui_.trashCheck->setChecked(prefs.getBool(Prefs::TRASH_ORIGINAL));
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.dialogButtons, &QDialogButtonBox::rejected, this, &QObject::deleteLater);
|
|
|
|
connect(ui_.dialogButtons, &QDialogButtonBox::accepted, this, &OptionsDialog::onAccepted);
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.filesView, &FileTreeView::priorityChanged, this, &OptionsDialog::onPriorityChanged);
|
|
|
|
connect(ui_.filesView, &FileTreeView::wantedChanged, this, &OptionsDialog::onWantedChanged);
|
2009-05-03 22:00:56 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(&session_, &Session::sessionUpdated, this, &OptionsDialog::onSessionUpdated);
|
2016-10-03 18:26:28 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
updateWidgetsLocality();
|
|
|
|
reload();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
2010-01-05 23:47:50 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
OptionsDialog::~OptionsDialog()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
clearInfo();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void OptionsDialog::clearInfo()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2021-12-25 23:48:40 +00:00
|
|
|
metainfo_.reset();
|
2020-05-27 21:53:12 +00:00
|
|
|
files_.clear();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void OptionsDialog::reload()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
clearInfo();
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2021-12-25 23:48:40 +00:00
|
|
|
auto metainfo = tr_torrent_metainfo{};
|
|
|
|
auto ok = bool{};
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
switch (add_.type)
|
2013-02-09 21:47:42 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
case AddData::MAGNET:
|
2021-12-28 07:14:52 +00:00
|
|
|
ok = metainfo.parseMagnet(add_.magnet.toStdString());
|
|
|
|
break;
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
case AddData::FILENAME:
|
2021-12-28 07:14:52 +00:00
|
|
|
ok = metainfo.parseTorrentFile(add_.filename.toStdString());
|
|
|
|
break;
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
case AddData::METAINFO:
|
2021-12-28 07:14:52 +00:00
|
|
|
ok = metainfo.parseBenc(add_.metainfo.toStdString());
|
2013-02-09 21:47:42 +00:00
|
|
|
break;
|
2010-08-01 18:55:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
default:
|
2013-02-09 21:47:42 +00:00
|
|
|
break;
|
2010-08-01 18:55:04 +00:00
|
|
|
}
|
2010-05-13 23:54:32 +00:00
|
|
|
|
2021-12-25 23:48:40 +00:00
|
|
|
metainfo_.reset();
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.filesView->clear();
|
|
|
|
files_.clear();
|
|
|
|
priorities_.clear();
|
|
|
|
wanted_.clear();
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2021-12-25 23:48:40 +00:00
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
metainfo_ = metainfo;
|
|
|
|
}
|
|
|
|
|
2022-01-08 18:53:35 +00:00
|
|
|
bool const have_files_to_show = metainfo_ && !std::empty(*metainfo_);
|
2014-12-29 04:03:56 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.filesView->setVisible(have_files_to_show);
|
|
|
|
layout()->setSizeConstraint(have_files_to_show ? QLayout::SetDefaultConstraint : QLayout::SetFixedSize);
|
2013-02-10 22:44:25 +00:00
|
|
|
|
2021-12-25 23:48:40 +00:00
|
|
|
if (metainfo_)
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2022-01-08 18:53:35 +00:00
|
|
|
auto const n_files = metainfo_->fileCount();
|
2021-12-25 23:48:40 +00:00
|
|
|
priorities_.assign(n_files, TR_PRI_NORMAL);
|
|
|
|
wanted_.assign(n_files, true);
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2022-01-08 18:53:35 +00:00
|
|
|
for (tr_file_index_t i = 0; i < n_files; ++i)
|
2013-02-09 21:47:42 +00:00
|
|
|
{
|
2021-12-25 23:48:40 +00:00
|
|
|
auto f = TorrentFile{};
|
|
|
|
f.index = i;
|
|
|
|
f.priority = priorities_[i];
|
|
|
|
f.wanted = wanted_[i];
|
2022-01-08 18:53:35 +00:00
|
|
|
f.size = metainfo_->fileSize(i);
|
2021-12-25 23:48:40 +00:00
|
|
|
f.have = 0;
|
2022-01-08 18:53:35 +00:00
|
|
|
f.filename = QString::fromStdString(metainfo_->fileSubpath(i));
|
2021-12-25 23:48:40 +00:00
|
|
|
files_.push_back(f);
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.filesView->update(files_);
|
2021-11-12 16:42:51 +00:00
|
|
|
ui_.filesView->hideColumn(FileTreeModel::COL_PROGRESS);
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void OptionsDialog::updateWidgetsLocality()
|
2016-10-03 18:26:28 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.destinationStack->setCurrentWidget(is_local_ ? static_cast<QWidget*>(ui_.destinationButton) : ui_.destinationEdit);
|
|
|
|
ui_.destinationStack->setFixedHeight(ui_.destinationStack->currentWidget()->sizeHint().height());
|
|
|
|
ui_.destinationLabel->setBuddy(ui_.destinationStack->currentWidget());
|
2016-10-03 18:26:28 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void OptionsDialog::onSessionUpdated()
|
2016-10-03 18:26:28 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
bool const is_local = session_.isLocal();
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_local_ != is_local)
|
2016-10-03 18:26:28 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
is_local_ = is_local;
|
2017-04-19 12:04:45 +00:00
|
|
|
updateWidgetsLocality();
|
2016-10-03 18:26:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
void OptionsDialog::onPriorityChanged(QSet<int> const& file_indices, int priority)
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
for (int const i : file_indices)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
priorities_[i] = priority;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
void OptionsDialog::onWantedChanged(QSet<int> const& file_indices, bool is_wanted)
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
for (int const i : file_indices)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
wanted_[i] = is_wanted;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void OptionsDialog::onAccepted()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
// rpc spec section 3.4 "adding a torrent"
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_variant args;
|
|
|
|
tr_variantInitDict(&args, 10);
|
2020-05-27 21:53:12 +00:00
|
|
|
QString download_dir;
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// "download-dir"
|
2020-05-27 21:53:12 +00:00
|
|
|
if (ui_.destinationStack->currentWidget() == ui_.destinationButton)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
download_dir = local_destination_.absolutePath();
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
download_dir = ui_.destinationEdit->text();
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2013-02-09 23:11:17 +00:00
|
|
|
|
2020-07-27 04:30:58 +00:00
|
|
|
dictAdd(&args, TR_KEY_download_dir, download_dir);
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// paused
|
2020-07-27 04:30:58 +00:00
|
|
|
dictAdd(&args, TR_KEY_paused, !ui_.startCheck->isChecked());
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// priority
|
2020-05-27 21:53:12 +00:00
|
|
|
int const index = ui_.priorityCombo->currentIndex();
|
|
|
|
int const priority = ui_.priorityCombo->itemData(index).toInt();
|
2020-07-27 04:30:58 +00:00
|
|
|
dictAdd(&args, TR_KEY_bandwidthPriority, priority);
|
2013-02-09 21:47:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// files-unwanted
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
auto count = std::count(wanted_.begin(), wanted_.end(), false);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (count > 0)
|
2013-02-09 21:47:42 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_variant* l = tr_variantDictAddList(&args, TR_KEY_files_unwanted, count);
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
for (int i = 0, n = wanted_.size(); i < n; ++i)
|
2014-12-29 04:03:56 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
if (!wanted_.at(i))
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-07-27 04:30:58 +00:00
|
|
|
listAdd(l, i);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2014-12-29 04:03:56 +00:00
|
|
|
}
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// priority-low
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
count = std::count(priorities_.begin(), priorities_.end(), TR_PRI_LOW);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (count > 0)
|
2013-02-09 21:47:42 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_variant* l = tr_variantDictAddList(&args, TR_KEY_priority_low, count);
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
for (int i = 0, n = priorities_.size(); i < n; ++i)
|
2014-12-29 04:03:56 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
if (priorities_.at(i) == TR_PRI_LOW)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-07-27 04:30:58 +00:00
|
|
|
listAdd(l, i);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2014-12-29 04:03:56 +00:00
|
|
|
}
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// priority-high
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
count = std::count(priorities_.begin(), priorities_.end(), TR_PRI_HIGH);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (count > 0)
|
2013-02-09 21:47:42 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_variant* l = tr_variantDictAddList(&args, TR_KEY_priority_high, count);
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
for (int i = 0, n = priorities_.size(); i < n; ++i)
|
2014-12-29 04:03:56 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
if (priorities_.at(i) == TR_PRI_HIGH)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-07-27 04:30:58 +00:00
|
|
|
listAdd(l, i);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2014-12-29 04:03:56 +00:00
|
|
|
}
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
session_.addTorrent(add_, &args, ui_.trashCheck->isChecked());
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
deleteLater();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void OptionsDialog::onSourceChanged()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
if (ui_.sourceStack->currentWidget() == ui_.sourceButton)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
add_.set(ui_.sourceButton->path());
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2022-09-07 21:38:34 +00:00
|
|
|
else if (auto const text = ui_.sourceEdit->text(); text != add_.readableName())
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2022-09-07 21:38:34 +00:00
|
|
|
add_.set(text);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2014-12-29 04:03:56 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
reload();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void OptionsDialog::onDestinationChanged()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
if (ui_.destinationStack->currentWidget() == ui_.destinationButton)
|
2014-12-31 21:00:34 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
local_destination_.setPath(ui_.destinationButton->path());
|
|
|
|
ui_.freeSpaceLabel->setPath(local_destination_.absolutePath());
|
2014-12-31 21:00:34 +00:00
|
|
|
}
|
2017-04-19 12:04:45 +00:00
|
|
|
else
|
2014-12-31 21:00:34 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.freeSpaceLabel->setPath(ui_.destinationEdit->text());
|
2014-12-31 21:00:34 +00:00
|
|
|
}
|
2013-02-09 04:42:07 +00:00
|
|
|
}
|