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