diff options
author | Sergey Starosek <sergey.starosek@gmail.com> | 2014-06-26 20:17:50 +0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-26 15:44:32 -0700 |
commit | 9fca5a51d976a9bb5127b0369f4cfe9cddfe17e2 (patch) | |
tree | 784f1b464cc6f8e59dd9cc1848306c227de1b828 /qt-ui/preferences.cpp | |
parent | 0052279fd0caee67a94500a1a373436efbd9b16b (diff) | |
download | subsurface-9fca5a51d976a9bb5127b0369f4cfe9cddfe17e2.tar.gz |
Implement proxy settings loading/saving
- proxy settings are stored under [Network] group
- default is "No proxy"
- duplicate #def GET_TXT replaced with GET_INT_DEF
Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/preferences.cpp')
-rw-r--r-- | qt-ui/preferences.cpp | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/qt-ui/preferences.cpp b/qt-ui/preferences.cpp index d0880d6fb..9a5550723 100644 --- a/qt-ui/preferences.cpp +++ b/qt-ui/preferences.cpp @@ -24,6 +24,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Qt::WindowFlags f) : QDial ui.proxyType->addItem(tr("System proxy"), QNetworkProxy::DefaultProxy); ui.proxyType->addItem(tr("HTTP proxy"), QNetworkProxy::HttpProxy); ui.proxyType->addItem(tr("SOCKS proxy"), QNetworkProxy::Socks5Proxy); + ui.proxyType->setCurrentIndex(-1); connect(ui.proxyType, SIGNAL(currentIndexChanged(int)), this, SLOT(on_proxyType_changed(int))); connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *))); connect(ui.gflow, SIGNAL(valueChanged(int)), this, SLOT(gflowChanged(int))); @@ -124,6 +125,13 @@ void PreferencesDialog::setUiFromPrefs() ui.languageView->setCurrentIndex(languages.first()); s.endGroup(); + + ui.proxyHost->setText(prefs.proxy_host); + ui.proxyPort->setValue(prefs.proxy_port); + ui.proxyAuthRequired->setChecked(prefs.proxy_auth); + ui.proxyUsername->setText(prefs.proxy_user); + ui.proxyPassword->setText(prefs.proxy_pass); + ui.proxyType->setCurrentIndex(ui.proxyType->findData(prefs.proxy_type)); } void PreferencesDialog::restorePrefs() @@ -168,12 +176,12 @@ void PreferencesDialog::rememberPrefs() else \ prefs.field = default_prefs.field -#define GET_TXT(name, field) \ +#define GET_INT_DEF(name, field, defval) \ v = s.value(QString(name)); \ if (v.isValid()) \ - prefs.field = strdup(v.toString().toUtf8().constData()); \ + prefs.field = v.toInt(); \ else \ - prefs.field = default_prefs.field + prefs.field = defval #define GET_TXT(name, field) \ v = s.value(QString(name)); \ @@ -246,6 +254,15 @@ void PreferencesDialog::syncSettings() s.setValue("animation_speed", ui.velocitySlider->value()); s.endGroup(); + s.beginGroup("Network"); + s.setValue("proxy_type", ui.proxyType->itemData(ui.proxyType->currentIndex()).toInt()); + s.setValue("proxy_host", ui.proxyHost->text()); + s.setValue("proxy_port", ui.proxyPort->value()); + SB("proxy_auth", ui.proxyAuthRequired); + s.setValue("proxy_user", ui.proxyUsername->text()); + s.setValue("proxy_pass", ui.proxyPassword->text()); + s.endGroup(); + loadSettings(); emit settingsChanged(); } @@ -325,6 +342,16 @@ void PreferencesDialog::loadSettings() s.beginGroup("Animations"); GET_INT("animation_speed", animation); + s.endGroup(); + + s.beginGroup("Network"); + GET_INT_DEF("proxy_type", proxy_type, QNetworkProxy::NoProxy); + GET_TXT("proxy_host", proxy_host); + GET_INT("proxy_port", proxy_port); + GET_BOOL("proxy_auth", proxy_auth); + GET_TXT("proxy_user", proxy_user); + GET_TXT("proxy_pass", proxy_pass); + s.endGroup(); } void PreferencesDialog::buttonClicked(QAbstractButton *button) |