2015-11-15 08:37:13 +03:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
|
|
* Copyright (C) 2015
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-12-10 20:56:37 +03:00
|
|
|
#pragma once
|
2010-01-31 18:11:15 +03:00
|
|
|
|
2017-08-11 10:50:56 +03:00
|
|
|
#include <QCheckBox>
|
|
|
|
#include <QComboBox>
|
2011-02-05 18:44:48 +03:00
|
|
|
#include <QLineEdit>
|
2017-08-11 10:50:56 +03:00
|
|
|
#include <QSpinBox>
|
2015-11-15 08:48:10 +03:00
|
|
|
#include <QTableWidget>
|
2010-01-31 18:11:15 +03:00
|
|
|
|
2018-06-06 16:48:17 +03:00
|
|
|
class AdvancedSettings : public QTableWidget
|
2015-08-05 07:09:02 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2010-01-31 18:11:15 +03:00
|
|
|
|
|
|
|
public:
|
2015-11-15 09:08:22 +03:00
|
|
|
AdvancedSettings(QWidget *parent);
|
2010-01-31 18:11:15 +03:00
|
|
|
|
2010-01-31 19:14:56 +03:00
|
|
|
public slots:
|
2015-11-15 08:48:10 +03:00
|
|
|
void saveAdvancedSettings();
|
2010-01-31 18:11:15 +03:00
|
|
|
|
2011-04-11 23:48:06 +04:00
|
|
|
signals:
|
2015-08-05 07:09:02 +03:00
|
|
|
void settingsChanged();
|
2011-04-11 23:48:06 +04:00
|
|
|
|
2015-11-15 08:48:10 +03:00
|
|
|
private slots:
|
2021-08-08 08:27:22 +03:00
|
|
|
#ifndef QBT_USES_LIBTORRENT2
|
2015-11-15 08:48:10 +03:00
|
|
|
void updateCacheSpinSuffix(int value);
|
2020-09-08 10:10:50 +03:00
|
|
|
#endif
|
2018-07-04 09:02:05 +03:00
|
|
|
void updateSaveResumeDataIntervalSuffix(int value);
|
2016-05-27 01:35:58 +03:00
|
|
|
void updateInterfaceAddressCombo();
|
|
|
|
|
2015-11-15 08:48:10 +03:00
|
|
|
private:
|
|
|
|
void loadAdvancedSettings();
|
2019-03-07 10:31:50 +03:00
|
|
|
template <typename T> void addRow(int row, const QString &text, T *widget);
|
2011-04-11 23:48:06 +04:00
|
|
|
|
2022-03-01 07:44:48 +03:00
|
|
|
QSpinBox m_spinBoxAsyncIOThreads, m_spinBoxFilePoolSize, m_spinBoxCheckingMemUsage, m_spinBoxDiskQueueSize,
|
2021-03-06 09:17:07 +03:00
|
|
|
m_spinBoxSaveResumeDataInterval, m_spinBoxOutgoingPortsMin, m_spinBoxOutgoingPortsMax, m_spinBoxUPnPLeaseDuration, m_spinBoxPeerToS,
|
2020-09-08 10:10:50 +03:00
|
|
|
m_spinBoxListRefresh, m_spinBoxTrackerPort, m_spinBoxSendBufferWatermark, m_spinBoxSendBufferLowWatermark,
|
2021-05-16 20:16:38 +03:00
|
|
|
m_spinBoxSendBufferWatermarkFactor, m_spinBoxConnectionSpeed, m_spinBoxSocketBacklogSize, m_spinBoxMaxConcurrentHTTPAnnounces, m_spinBoxStopTrackerTimeout,
|
2022-03-01 07:44:48 +03:00
|
|
|
m_spinBoxSavePathHistoryLength, m_spinBoxPeerTurnover, m_spinBoxPeerTurnoverCutoff, m_spinBoxPeerTurnoverInterval, m_spinBoxRequestQueueSize;
|
2020-04-05 12:12:50 +03:00
|
|
|
QCheckBox m_checkBoxOsCache, m_checkBoxRecheckCompleted, m_checkBoxResolveCountries, m_checkBoxResolveHosts,
|
2021-05-23 09:26:54 +03:00
|
|
|
m_checkBoxProgramNotifications, m_checkBoxTorrentAddedNotifications, m_checkBoxReannounceWhenAddressChanged, m_checkBoxTrackerFavicon, m_checkBoxTrackerStatus,
|
2019-12-06 03:24:49 +03:00
|
|
|
m_checkBoxConfirmTorrentRecheck, m_checkBoxConfirmRemoveAllTags, m_checkBoxAnnounceAllTrackers, m_checkBoxAnnounceAllTiers,
|
2021-08-04 06:28:36 +03:00
|
|
|
m_checkBoxMultiConnectionsPerIp, m_checkBoxValidateHTTPSTrackerCertificate, m_checkBoxSSRFMitigation, m_checkBoxBlockPeersOnPrivilegedPorts, m_checkBoxPieceExtentAffinity,
|
2020-12-01 05:53:48 +03:00
|
|
|
m_checkBoxSuggestMode, m_checkBoxSpeedWidgetEnabled, m_checkBoxIDNSupport;
|
2021-03-24 11:53:47 +03:00
|
|
|
QComboBox m_comboBoxInterface, m_comboBoxInterfaceAddress, m_comboBoxUtpMixedMode, m_comboBoxChokingAlgorithm,
|
|
|
|
m_comboBoxSeedChokingAlgorithm, m_comboBoxResumeDataStorage;
|
2019-07-23 09:34:57 +03:00
|
|
|
QLineEdit m_lineEditAnnounceIP;
|
2012-10-07 20:14:53 +04:00
|
|
|
|
2021-08-08 08:27:22 +03:00
|
|
|
#ifndef QBT_USES_LIBTORRENT2
|
2020-09-08 10:10:50 +03:00
|
|
|
QSpinBox m_spinBoxCache, m_spinBoxCacheTTL;
|
|
|
|
QCheckBox m_checkBoxCoalesceRW;
|
2020-10-10 08:07:04 +03:00
|
|
|
#else
|
|
|
|
QSpinBox m_spinBoxHashingThreads;
|
2020-09-08 10:10:50 +03:00
|
|
|
#endif
|
|
|
|
|
2015-11-15 08:48:10 +03:00
|
|
|
// OS dependent settings
|
2020-01-12 14:14:58 +03:00
|
|
|
#if defined(Q_OS_WIN)
|
2019-09-28 09:21:53 +03:00
|
|
|
QComboBox m_comboBoxOSMemoryPriority;
|
2022-03-01 16:42:25 +03:00
|
|
|
QSpinBox m_spinBoxMemoryWorkingSetLimit;
|
2010-12-21 20:41:11 +03:00
|
|
|
#endif
|
2021-02-19 18:11:52 +03:00
|
|
|
|
|
|
|
#ifndef Q_OS_MACOS
|
|
|
|
QCheckBox m_checkBoxIconsInMenusEnabled;
|
|
|
|
#endif
|
2021-04-13 17:22:48 +03:00
|
|
|
|
|
|
|
#if (defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)) && defined(QT_DBUS_LIB)
|
|
|
|
QSpinBox m_spinBoxNotificationTimeout;
|
|
|
|
#endif
|
2010-01-31 18:11:15 +03:00
|
|
|
};
|