2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2023 Vladimir Golovnev <glassez@yandex.ru>
4 * Copyright (C) 2006 Christophe Dumez <chris@qbittorrent.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * In addition, as a special exception, the copyright holders give permission to
21 * link this program with the OpenSSL project's "OpenSSL" library (or with
22 * modified versions of it that use the same license as the "OpenSSL" library),
23 * and distribute the linked executables. You must obey the GNU General Public
24 * License in all respects for all of the code used other than "OpenSSL". If you
25 * modify file(s), you may extend this exception to your version of the file(s),
26 * but you are not obligated to do so. If you do not wish to do so, delete this
27 * exception statement from your version.
34 #include "base/pathfwd.h"
35 #include "base/settingvalue.h"
36 #include "guiapplicationcomponent.h"
38 class QListWidgetItem
;
40 class AdvancedSettings
;
42 // actions on double-click on torrents
43 enum DoubleClickAction
62 class OptionsDialog final
: public GUIApplicationComponent
<QDialog
>
65 Q_DISABLE_COPY_MOVE(OptionsDialog
)
67 using ThisType
= OptionsDialog
;
82 explicit OptionsDialog(IGUIApplication
*app
, QWidget
*parent
= nullptr);
83 ~OptionsDialog() override
;
86 void showConnectionTab();
89 void adjustProxyOptions();
90 void on_buttonBox_accepted();
91 void on_buttonBox_rejected();
92 void enableApplyButton();
93 void toggleComboRatioLimitAct();
94 void changePage(QListWidgetItem
*, QListWidgetItem
*);
95 void loadSplitterState();
96 void handleWatchedFolderViewSelectionChanged();
97 void editWatchedFolderOptions(const QModelIndex
&index
);
98 void on_IpFilterRefreshBtn_clicked();
99 void handleIPFilterParsed(bool error
, int ruleCount
);
100 void on_banListButton_clicked();
101 void on_IPSubnetWhitelistButton_clicked();
102 void on_randomButton_clicked();
103 void on_addWatchedFolderButton_clicked();
104 void on_editWatchedFolderButton_clicked();
105 void on_removeWatchedFolderButton_clicked();
106 void setLocale(const QString
&localeStr
);
108 #ifndef DISABLE_WEBUI
109 void webUIHttpsCertChanged(const Path
&path
);
110 void webUIHttpsKeyChanged(const Path
&path
);
111 void on_registerDNSBtn_clicked();
115 void showEvent(QShowEvent
*e
) override
;
118 bool applySettings();
119 void saveOptions() const;
121 void loadBehaviorTabOptions();
122 void saveBehaviorTabOptions() const;
124 void loadDownloadsTabOptions();
125 void saveDownloadsTabOptions() const;
127 void loadConnectionTabOptions();
128 void saveConnectionTabOptions() const;
130 void loadSpeedTabOptions();
131 void saveSpeedTabOptions() const;
133 void loadBittorrentTabOptions();
134 void saveBittorrentTabOptions() const;
136 void loadRSSTabOptions();
137 void saveRSSTabOptions() const;
139 #ifndef DISABLE_WEBUI
140 void loadWebUITabOptions();
141 void saveWebUITabOptions() const;
142 #endif // DISABLE_WEBUI
145 void initializeLanguageCombo();
146 QString
getLocale() const;
147 bool isSplashScreenDisabled() const;
149 bool WinStartup() const;
152 bool preAllocateAllFiles() const;
153 bool useAdditionDialog() const;
154 bool addTorrentsInPause() const;
155 Path
getTorrentExportDir() const;
156 Path
getFinishedTorrentExportDir() const;
157 // Connection options
159 bool isUPnPEnabled() const;
160 // Bittorrent options
161 int getMaxConnections() const;
162 int getMaxConnectionsPerTorrent() const;
163 int getMaxUploads() const;
164 int getMaxUploadsPerTorrent() const;
165 bool isDHTEnabled() const;
166 bool isLSDEnabled() const;
167 int getEncryptionSetting() const;
168 qreal
getMaxRatio() const;
169 int getMaxSeedingMinutes() const;
170 int getMaxInactiveSeedingMinutes() const;
172 bool isProxyEnabled() const;
173 QString
getProxyIp() const;
174 unsigned short getProxyPort() const;
175 QString
getProxyUsername() const;
176 QString
getProxyPassword() const;
177 Net::ProxyType
getProxyType() const;
179 bool isIPFilteringEnabled() const;
180 Path
getFilter() const;
182 bool isQueueingSystemEnabled() const;
183 int getMaxActiveDownloads() const;
184 int getMaxActiveUploads() const;
185 int getMaxActiveTorrents() const;
187 #ifndef DISABLE_WEBUI
188 bool isWebUIEnabled() const;
189 QString
webUIUsername() const;
190 QString
webUIPassword() const;
191 bool webUIAuthenticationOk();
192 bool isAlternativeWebUIPathValid();
197 Ui::OptionsDialog
*m_ui
= nullptr;
198 SettingValue
<QSize
> m_storeDialogSize
;
199 SettingValue
<QStringList
> m_storeHSplitterSize
;
200 SettingValue
<int> m_storeLastViewedPage
;
202 QPushButton
*m_applyButton
= nullptr;
204 AdvancedSettings
*m_advancedSettings
= nullptr;
206 bool m_refreshingIpFilter
= false;