91 lines
2.2 KiB
C++
91 lines
2.2 KiB
C++
// This file Copyright © 2009-2022 Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#include <QMap>
|
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
#include "BaseDialog.h"
|
|
#include "Prefs.h"
|
|
#include "ui_PrefsDialog.h"
|
|
|
|
class QHttp;
|
|
class QMessageBox;
|
|
class QString;
|
|
|
|
class Prefs;
|
|
class Session;
|
|
|
|
class PrefsDialog : public BaseDialog
|
|
{
|
|
Q_OBJECT
|
|
TR_DISABLE_COPY_MOVE(PrefsDialog)
|
|
|
|
public:
|
|
PrefsDialog(Session&, Prefs&, QWidget* parent = nullptr);
|
|
|
|
private slots:
|
|
void checkBoxToggled(bool checked);
|
|
void spinBoxEditingFinished();
|
|
void timeEditingFinished();
|
|
void lineEditingFinished();
|
|
void pathChanged(QString const& path);
|
|
void refreshPref(int key);
|
|
void encryptionEdited(int);
|
|
void altSpeedDaysEdited(int);
|
|
void sessionUpdated();
|
|
void onPortTested(bool);
|
|
void onPortTest();
|
|
void onIdleLimitChanged();
|
|
void onQueueStalledMinutesChanged();
|
|
|
|
void onUpdateBlocklistClicked();
|
|
void onUpdateBlocklistCancelled();
|
|
void onBlocklistDialogDestroyed(QObject*);
|
|
void onBlocklistUpdated(int n);
|
|
|
|
private:
|
|
using key2widget_t = QMap<int, QWidget*>;
|
|
|
|
bool updateWidgetValue(QWidget* widget, int pref_key) const;
|
|
void linkWidgetToPref(QWidget* widget, int pref_key);
|
|
void updateBlocklistLabel();
|
|
void updateDownloadingWidgetsLocality();
|
|
|
|
void setPref(int key, QVariant const& v);
|
|
|
|
void initDownloadingTab();
|
|
void initSeedingTab();
|
|
void initSpeedTab();
|
|
void initPrivacyTab();
|
|
void initNetworkTab();
|
|
void initDesktopTab();
|
|
void initRemoteTab();
|
|
|
|
Session& session_;
|
|
Prefs& prefs_;
|
|
|
|
Ui::PrefsDialog ui_ = {};
|
|
|
|
bool const is_server_;
|
|
bool is_local_ = {};
|
|
|
|
key2widget_t widgets_;
|
|
QWidgetList web_widgets_;
|
|
QWidgetList web_auth_widgets_;
|
|
QWidgetList web_whitelist_widgets_;
|
|
QWidgetList proxy_widgets_;
|
|
QWidgetList proxy_auth_widgets_;
|
|
QWidgetList sched_widgets_;
|
|
QWidgetList block_widgets_;
|
|
QWidgetList unsupported_when_remote_;
|
|
|
|
int blocklist_http_tag_ = {};
|
|
QHttp* blocklist_http_ = {};
|
|
QMessageBox* blocklist_dialog_ = {};
|
|
};
|