1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-04 05:56:02 +00:00
transmission/qt/PrefsDialog.h
Mike Gelfand 3e072f9bd4
Fix most of critical issues reported by Sonar (GTK client) (#2309)
* (C++) Macros should not be used to define constants

* (C++) Memory should not be managed manually

* (C++) "void*" should not be used in typedefs, member variables, function parameters or return type

* (C++) When the "Rule-of-Zero" is not applicable, the "Rule-of-Five" should be followed

* (C++) "switch" statements should have "default" clauses

* (C++) "explicit" should be used on single-parameter constructors and conversiosn operators

* (C++) Non-const global variables should not be used
2021-12-14 11:43:27 +03:00

93 lines
2.1 KiB
C++

/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#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_ = {};
};