2017-11-09 19:34:51 +01:00
|
|
|
/*
|
|
|
|
|
* This file is part of the Flowee project
|
|
|
|
|
* Copyright (C) 2011-2015 The Bitcoin Core developers
|
|
|
|
|
*
|
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2013-11-04 16:20:43 +01:00
|
|
|
|
2013-05-27 19:55:01 -04:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
2018-01-16 10:47:52 +00:00
|
|
|
#include "config/flowee-config.h"
|
2013-05-27 19:55:01 -04:00
|
|
|
#endif
|
|
|
|
|
|
2011-05-12 14:49:42 +02:00
|
|
|
#include "optionsdialog.h"
|
2012-06-08 15:21:55 +02:00
|
|
|
#include "ui_optionsdialog.h"
|
|
|
|
|
|
2011-07-29 14:36:35 +02:00
|
|
|
#include "bitcoinunits.h"
|
2013-12-03 09:10:10 +01:00
|
|
|
#include "guiutil.h"
|
2012-06-08 15:21:55 +02:00
|
|
|
#include "optionsmodel.h"
|
2011-05-12 14:44:52 +02:00
|
|
|
|
2015-07-05 14:30:07 +02:00
|
|
|
#include "main.h" // for DEFAULT_SCRIPTCHECK_THREADS and MAX_SCRIPTCHECK_THREADS
|
2014-07-25 17:43:41 +02:00
|
|
|
#include "netbase.h"
|
2018-02-12 14:15:24 +01:00
|
|
|
#include <SettingsDefaults.h>
|
2014-09-05 13:18:35 +02:00
|
|
|
|
2014-07-03 14:25:32 -04:00
|
|
|
#ifdef ENABLE_WALLET
|
2015-10-25 02:47:04 +02:00
|
|
|
#include "wallet/wallet.h" // for CWallet::GetRequiredFee()
|
2014-07-03 14:25:32 -04:00
|
|
|
#endif
|
2013-04-13 00:13:08 -05:00
|
|
|
|
2014-08-21 16:11:09 +02:00
|
|
|
#include <boost/thread.hpp>
|
2014-09-05 13:18:35 +02:00
|
|
|
|
2014-10-23 19:08:10 +02:00
|
|
|
#include <QDataWidgetMapper>
|
2012-06-08 15:21:55 +02:00
|
|
|
#include <QDir>
|
|
|
|
|
#include <QIntValidator>
|
2012-06-25 22:36:16 +02:00
|
|
|
#include <QLocale>
|
2012-05-08 23:03:41 +02:00
|
|
|
#include <QMessageBox>
|
2013-12-03 09:10:10 +01:00
|
|
|
#include <QTimer>
|
2011-06-01 14:40:06 +02:00
|
|
|
|
2014-11-08 13:48:35 -05:00
|
|
|
OptionsDialog::OptionsDialog(QWidget *parent, bool enableWallet) :
|
2012-06-08 15:21:55 +02:00
|
|
|
QDialog(parent),
|
|
|
|
|
ui(new Ui::OptionsDialog),
|
|
|
|
|
model(0),
|
2015-11-16 10:43:36 +01:00
|
|
|
mapper(0)
|
2012-05-07 21:49:22 +02:00
|
|
|
{
|
2012-06-08 15:21:55 +02:00
|
|
|
ui->setupUi(this);
|
2013-12-03 09:10:10 +01:00
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
/* Network elements init */
|
|
|
|
|
#ifndef USE_UPNP
|
|
|
|
|
ui->mapPortUpnp->setEnabled(false);
|
2011-10-07 13:21:45 +02:00
|
|
|
#endif
|
2011-05-12 14:44:52 +02:00
|
|
|
|
2012-07-09 11:14:38 +02:00
|
|
|
ui->proxyIp->setEnabled(false);
|
|
|
|
|
ui->proxyPort->setEnabled(false);
|
|
|
|
|
ui->proxyPort->setValidator(new QIntValidator(1, 65535, this));
|
|
|
|
|
|
2014-07-25 18:20:40 +02:00
|
|
|
ui->proxyIpTor->setEnabled(false);
|
|
|
|
|
ui->proxyPortTor->setEnabled(false);
|
|
|
|
|
ui->proxyPortTor->setValidator(new QIntValidator(1, 65535, this));
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
connect(ui->connectSocks, SIGNAL(toggled(bool)), ui->proxyIp, SLOT(setEnabled(bool)));
|
|
|
|
|
connect(ui->connectSocks, SIGNAL(toggled(bool)), ui->proxyPort, SLOT(setEnabled(bool)));
|
2015-11-18 14:02:14 +01:00
|
|
|
connect(ui->connectSocks, SIGNAL(toggled(bool)), this, SLOT(updateProxyValidationState()));
|
2012-05-07 21:49:22 +02:00
|
|
|
|
2014-07-25 18:20:40 +02:00
|
|
|
connect(ui->connectSocksTor, SIGNAL(toggled(bool)), ui->proxyIpTor, SLOT(setEnabled(bool)));
|
|
|
|
|
connect(ui->connectSocksTor, SIGNAL(toggled(bool)), ui->proxyPortTor, SLOT(setEnabled(bool)));
|
2015-11-18 14:02:14 +01:00
|
|
|
connect(ui->connectSocksTor, SIGNAL(toggled(bool)), this, SLOT(updateProxyValidationState()));
|
2014-07-25 18:20:40 +02:00
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
/* Window elements init */
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifdef Q_OS_MAC
|
2013-05-03 15:18:28 +02:00
|
|
|
/* remove Window tab on Mac */
|
|
|
|
|
ui->tabWidget->removeTab(ui->tabWidget->indexOf(ui->tabWindow));
|
2012-05-10 15:33:01 +02:00
|
|
|
#endif
|
2011-07-25 21:35:45 +02:00
|
|
|
|
2014-11-08 13:48:35 -05:00
|
|
|
/* remove Wallet tab in case of -disablewallet */
|
|
|
|
|
if (!enableWallet) {
|
|
|
|
|
ui->tabWidget->removeTab(ui->tabWidget->indexOf(ui->tabWallet));
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
/* Display elements init */
|
|
|
|
|
QDir translations(":translations");
|
|
|
|
|
ui->lang->addItem(QString("(") + tr("default") + QString(")"), QVariant(""));
|
2019-04-22 20:33:35 +02:00
|
|
|
foreach (const QString &langStr, translations.entryList()) {
|
2012-06-25 22:36:16 +02:00
|
|
|
QLocale locale(langStr);
|
|
|
|
|
|
|
|
|
|
/** check if the locale name consists of 2 parts (language_country) */
|
|
|
|
|
if(langStr.contains("_"))
|
|
|
|
|
{
|
2012-07-13 07:43:41 +02:00
|
|
|
/** display language strings as "native language - native country (locale name)", e.g. "Deutsch - Deutschland (de)" */
|
|
|
|
|
ui->lang->addItem(locale.nativeLanguageName() + QString(" - ") + locale.nativeCountryName() + QString(" (") + langStr + QString(")"), QVariant(langStr));
|
2012-06-25 22:36:16 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-07-13 07:43:41 +02:00
|
|
|
/** display language strings as "native language (locale name)", e.g. "Deutsch (de)" */
|
|
|
|
|
ui->lang->addItem(locale.nativeLanguageName() + QString(" (") + langStr + QString(")"), QVariant(langStr));
|
2012-06-25 22:36:16 +02:00
|
|
|
}
|
2012-05-07 21:49:22 +02:00
|
|
|
}
|
2014-04-24 22:21:45 +02:00
|
|
|
ui->thirdPartyTxUrls->setPlaceholderText("https://example.com/tx/%s");
|
2011-05-12 14:44:52 +02:00
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
ui->unit->setModel(new BitcoinUnits(this));
|
2011-05-12 14:44:52 +02:00
|
|
|
|
2011-06-01 09:33:48 +02:00
|
|
|
/* Widget-to-option mapper */
|
2014-10-23 19:08:10 +02:00
|
|
|
mapper = new QDataWidgetMapper(this);
|
2011-05-31 22:24:53 +02:00
|
|
|
mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit);
|
|
|
|
|
mapper->setOrientation(Qt::Vertical);
|
2011-06-01 09:33:48 +02:00
|
|
|
|
2014-07-25 18:20:40 +02:00
|
|
|
/* setup/change UI elements when proxy IPs are invalid/valid */
|
2015-11-16 10:43:36 +01:00
|
|
|
ui->proxyIp->setCheckValidator(new ProxyAddressValidator(parent));
|
|
|
|
|
ui->proxyIpTor->setCheckValidator(new ProxyAddressValidator(parent));
|
2015-11-18 14:02:14 +01:00
|
|
|
connect(ui->proxyIp, SIGNAL(validationDidChange(QValidatedLineEdit *)), this, SLOT(updateProxyValidationState()));
|
|
|
|
|
connect(ui->proxyIpTor, SIGNAL(validationDidChange(QValidatedLineEdit *)), this, SLOT(updateProxyValidationState()));
|
|
|
|
|
connect(ui->proxyPort, SIGNAL(textChanged(const QString&)), this, SLOT(updateProxyValidationState()));
|
|
|
|
|
connect(ui->proxyPortTor, SIGNAL(textChanged(const QString&)), this, SLOT(updateProxyValidationState()));
|
2012-06-08 15:21:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OptionsDialog::~OptionsDialog()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
2011-05-31 22:24:53 +02:00
|
|
|
}
|
2011-05-12 14:44:52 +02:00
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
void OptionsDialog::setModel(OptionsModel *model)
|
|
|
|
|
{
|
|
|
|
|
this->model = model;
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
if(model)
|
2012-05-07 21:49:22 +02:00
|
|
|
{
|
2013-12-03 09:10:10 +01:00
|
|
|
/* check if client restart is needed and show persistent message */
|
|
|
|
|
if (model->isRestartRequired())
|
|
|
|
|
showRestartWarning(true);
|
|
|
|
|
|
|
|
|
|
QString strLabel = model->getOverriddenByCommandLine();
|
|
|
|
|
if (strLabel.isEmpty())
|
|
|
|
|
strLabel = tr("none");
|
|
|
|
|
ui->overriddenByCommandLineLabel->setText(strLabel);
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
mapper->setModel(model);
|
|
|
|
|
setMapper();
|
|
|
|
|
mapper->toFirst();
|
2014-07-25 18:20:40 +02:00
|
|
|
|
|
|
|
|
updateDefaultProxyNets();
|
2012-05-07 21:49:22 +02:00
|
|
|
}
|
2011-05-31 22:24:53 +02:00
|
|
|
|
2013-12-03 09:10:10 +01:00
|
|
|
/* warn when one of the following settings changes by user action (placed here so init via mapper doesn't trigger them) */
|
2012-08-02 09:02:05 +02:00
|
|
|
|
2013-12-03 09:10:10 +01:00
|
|
|
/* Main */
|
2017-02-22 21:44:34 -08:00
|
|
|
connect(ui->blockSizeAcceptLimit, SIGNAL(valueChanged(double)), this, SLOT(showRestartWarning()));
|
2014-04-07 19:26:30 +02:00
|
|
|
/* Wallet */
|
|
|
|
|
connect(ui->spendZeroConfChange, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning()));
|
2013-12-03 09:10:10 +01:00
|
|
|
/* Network */
|
2014-05-29 13:02:22 +02:00
|
|
|
connect(ui->allowIncoming, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning()));
|
2013-12-03 09:10:10 +01:00
|
|
|
connect(ui->connectSocks, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning()));
|
2014-07-25 18:20:40 +02:00
|
|
|
connect(ui->connectSocksTor, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning()));
|
2013-12-03 09:10:10 +01:00
|
|
|
/* Display */
|
|
|
|
|
connect(ui->lang, SIGNAL(valueChanged()), this, SLOT(showRestartWarning()));
|
2014-04-24 22:21:45 +02:00
|
|
|
connect(ui->thirdPartyTxUrls, SIGNAL(textChanged(const QString &)), this, SLOT(showRestartWarning()));
|
2011-05-12 14:44:52 +02:00
|
|
|
}
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
void OptionsDialog::setMapper()
|
2011-05-12 14:44:52 +02:00
|
|
|
{
|
2012-06-08 15:21:55 +02:00
|
|
|
/* Main */
|
|
|
|
|
mapper->addMapping(ui->bitcoinAtStartup, OptionsModel::StartAtStartup);
|
2017-02-22 21:44:34 -08:00
|
|
|
mapper->addMapping(ui->blockSizeAcceptLimit, OptionsModel::BlockSizeAcceptLimit);
|
2012-06-08 15:21:55 +02:00
|
|
|
|
2014-02-15 10:38:06 +01:00
|
|
|
/* Wallet */
|
|
|
|
|
mapper->addMapping(ui->spendZeroConfChange, OptionsModel::SpendZeroConfChange);
|
2014-03-17 14:04:56 +01:00
|
|
|
mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures);
|
2014-02-15 10:38:06 +01:00
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
/* Network */
|
|
|
|
|
mapper->addMapping(ui->mapPortUpnp, OptionsModel::MapPortUPnP);
|
2014-05-29 13:02:22 +02:00
|
|
|
mapper->addMapping(ui->allowIncoming, OptionsModel::Listen);
|
2012-07-09 11:14:38 +02:00
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
mapper->addMapping(ui->connectSocks, OptionsModel::ProxyUse);
|
|
|
|
|
mapper->addMapping(ui->proxyIp, OptionsModel::ProxyIP);
|
|
|
|
|
mapper->addMapping(ui->proxyPort, OptionsModel::ProxyPort);
|
|
|
|
|
|
2014-07-25 18:20:40 +02:00
|
|
|
mapper->addMapping(ui->connectSocksTor, OptionsModel::ProxyUseTor);
|
|
|
|
|
mapper->addMapping(ui->proxyIpTor, OptionsModel::ProxyIPTor);
|
|
|
|
|
mapper->addMapping(ui->proxyPortTor, OptionsModel::ProxyPortTor);
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
/* Window */
|
2012-10-07 18:50:03 +02:00
|
|
|
#ifndef Q_OS_MAC
|
2012-06-08 15:21:55 +02:00
|
|
|
mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray);
|
|
|
|
|
mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Display */
|
|
|
|
|
mapper->addMapping(ui->lang, OptionsModel::Language);
|
|
|
|
|
mapper->addMapping(ui->unit, OptionsModel::DisplayUnit);
|
2014-04-24 22:21:45 +02:00
|
|
|
mapper->addMapping(ui->thirdPartyTxUrls, OptionsModel::ThirdPartyTxUrls);
|
2011-05-12 14:44:52 +02:00
|
|
|
}
|
2011-06-01 09:33:48 +02:00
|
|
|
|
2013-12-03 09:10:10 +01:00
|
|
|
void OptionsDialog::setOkButtonState(bool fState)
|
2012-06-08 15:21:55 +02:00
|
|
|
{
|
|
|
|
|
ui->okButton->setEnabled(fState);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-18 15:54:39 +02:00
|
|
|
void OptionsDialog::on_resetButton_clicked()
|
|
|
|
|
{
|
|
|
|
|
if(model)
|
|
|
|
|
{
|
|
|
|
|
// confirmation dialog
|
|
|
|
|
QMessageBox::StandardButton btnRetVal = QMessageBox::question(this, tr("Confirm options reset"),
|
2015-04-28 14:48:28 +00:00
|
|
|
tr("Client restart required to activate changes.") + "<br><br>" + tr("Client will be shut down. Do you want to proceed?"),
|
2012-08-18 15:54:39 +02:00
|
|
|
QMessageBox::Yes | QMessageBox::Cancel, QMessageBox::Cancel);
|
|
|
|
|
|
|
|
|
|
if(btnRetVal == QMessageBox::Cancel)
|
|
|
|
|
return;
|
|
|
|
|
|
2013-12-20 18:47:49 +01:00
|
|
|
/* reset all options and close GUI */
|
2012-08-18 15:54:39 +02:00
|
|
|
model->Reset();
|
2013-12-03 09:10:10 +01:00
|
|
|
QApplication::quit();
|
2012-08-18 15:54:39 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
void OptionsDialog::on_okButton_clicked()
|
2011-06-01 09:33:48 +02:00
|
|
|
{
|
|
|
|
|
mapper->submit();
|
|
|
|
|
accept();
|
2014-07-25 18:20:40 +02:00
|
|
|
updateDefaultProxyNets();
|
2011-06-01 09:33:48 +02:00
|
|
|
}
|
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
void OptionsDialog::on_cancelButton_clicked()
|
2011-06-01 09:33:48 +02:00
|
|
|
{
|
|
|
|
|
reject();
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-03 09:10:10 +01:00
|
|
|
void OptionsDialog::showRestartWarning(bool fPersistent)
|
2011-06-01 09:33:48 +02:00
|
|
|
{
|
2013-12-03 09:10:10 +01:00
|
|
|
ui->statusLabel->setStyleSheet("QLabel { color: red; }");
|
2011-06-01 09:33:48 +02:00
|
|
|
|
2013-12-03 09:10:10 +01:00
|
|
|
if(fPersistent)
|
2012-05-08 23:03:41 +02:00
|
|
|
{
|
2013-12-03 09:10:10 +01:00
|
|
|
ui->statusLabel->setText(tr("Client restart required to activate changes."));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->statusLabel->setText(tr("This change would require a client restart."));
|
|
|
|
|
// clear non-persistent status label after 10 seconds
|
|
|
|
|
// Todo: should perhaps be a class attribute, if we extend the use of statusLabel
|
|
|
|
|
QTimer::singleShot(10000, this, SLOT(clearStatusLabel()));
|
2012-05-08 23:03:41 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-03 09:10:10 +01:00
|
|
|
void OptionsDialog::clearStatusLabel()
|
2012-05-07 21:49:22 +02:00
|
|
|
{
|
2013-12-03 09:10:10 +01:00
|
|
|
ui->statusLabel->clear();
|
2012-05-07 21:49:22 +02:00
|
|
|
}
|
|
|
|
|
|
2015-11-18 14:02:14 +01:00
|
|
|
void OptionsDialog::updateProxyValidationState()
|
2012-07-09 11:14:38 +02:00
|
|
|
{
|
2015-11-18 14:02:14 +01:00
|
|
|
QValidatedLineEdit *pUiProxyIp = ui->proxyIp;
|
2015-11-16 10:43:36 +01:00
|
|
|
QValidatedLineEdit *otherProxyWidget = (pUiProxyIp == ui->proxyIpTor) ? ui->proxyIp : ui->proxyIpTor;
|
2015-11-18 14:02:14 +01:00
|
|
|
if (pUiProxyIp->isValid() && (!ui->proxyPort->isEnabled() || ui->proxyPort->text().toInt() > 0) && (!ui->proxyPortTor->isEnabled() || ui->proxyPortTor->text().toInt() > 0))
|
2012-07-09 11:14:38 +02:00
|
|
|
{
|
2015-11-16 10:43:36 +01:00
|
|
|
setOkButtonState(otherProxyWidget->isValid()); //only enable ok button if both proxys are valid
|
|
|
|
|
ui->statusLabel->clear();
|
2012-07-09 11:14:38 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-11-16 10:43:36 +01:00
|
|
|
setOkButtonState(false);
|
|
|
|
|
ui->statusLabel->setStyleSheet("QLabel { color: red; }");
|
|
|
|
|
ui->statusLabel->setText(tr("The supplied proxy address is invalid."));
|
2012-07-09 11:14:38 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-25 18:20:40 +02:00
|
|
|
void OptionsDialog::updateDefaultProxyNets()
|
|
|
|
|
{
|
|
|
|
|
proxyType proxy;
|
|
|
|
|
std::string strProxy;
|
|
|
|
|
QString strDefaultProxyGUI;
|
|
|
|
|
|
2016-11-22 12:54:44 +01:00
|
|
|
GetProxy(CNetAddr::NET_IPV4, proxy);
|
2014-07-25 18:20:40 +02:00
|
|
|
strProxy = proxy.proxy.ToStringIP() + ":" + proxy.proxy.ToStringPort();
|
|
|
|
|
strDefaultProxyGUI = ui->proxyIp->text() + ":" + ui->proxyPort->text();
|
|
|
|
|
(strProxy == strDefaultProxyGUI.toStdString()) ? ui->proxyReachIPv4->setChecked(true) : ui->proxyReachIPv4->setChecked(false);
|
|
|
|
|
|
2016-11-22 12:54:44 +01:00
|
|
|
GetProxy(CNetAddr::NET_IPV6, proxy);
|
2014-07-25 18:20:40 +02:00
|
|
|
strProxy = proxy.proxy.ToStringIP() + ":" + proxy.proxy.ToStringPort();
|
|
|
|
|
strDefaultProxyGUI = ui->proxyIp->text() + ":" + ui->proxyPort->text();
|
|
|
|
|
(strProxy == strDefaultProxyGUI.toStdString()) ? ui->proxyReachIPv6->setChecked(true) : ui->proxyReachIPv6->setChecked(false);
|
|
|
|
|
|
2016-11-22 12:54:44 +01:00
|
|
|
GetProxy(CNetAddr::NET_TOR, proxy);
|
2014-07-25 18:20:40 +02:00
|
|
|
strProxy = proxy.proxy.ToStringIP() + ":" + proxy.proxy.ToStringPort();
|
|
|
|
|
strDefaultProxyGUI = ui->proxyIp->text() + ":" + ui->proxyPort->text();
|
|
|
|
|
(strProxy == strDefaultProxyGUI.toStdString()) ? ui->proxyReachTor->setChecked(true) : ui->proxyReachTor->setChecked(false);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-16 10:43:36 +01:00
|
|
|
ProxyAddressValidator::ProxyAddressValidator(QObject *parent) :
|
|
|
|
|
QValidator(parent)
|
2012-05-07 21:49:22 +02:00
|
|
|
{
|
2015-11-16 10:43:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QValidator::State ProxyAddressValidator::validate(QString &input, int &pos) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(pos);
|
|
|
|
|
// Validate the proxy
|
|
|
|
|
proxyType addrProxy = proxyType(CService(input.toStdString(), 9050), true);
|
|
|
|
|
if (addrProxy.IsValid())
|
|
|
|
|
return QValidator::Acceptable;
|
|
|
|
|
|
|
|
|
|
return QValidator::Invalid;
|
2011-07-25 21:35:45 +02:00
|
|
|
}
|