b41d1be128
- Remove onion address label from overview page (was cutting into transaction list area) - Add it to the left side of the main window status bar instead, opposite the sync/connection icons - Add "Show .onion address in status bar" checkbox under Options > Display (enabled by default) - Polls every 5 seconds; hidden until the address is available Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
286 lines
9.1 KiB
C++
286 lines
9.1 KiB
C++
#include "optionsmodel.h"
|
|
#include "trianglesunits.h"
|
|
#include <QSettings>
|
|
|
|
#include "init.h"
|
|
#include "walletdb.h"
|
|
#include "guiutil.h"
|
|
|
|
OptionsModel::OptionsModel(QObject *parent) :
|
|
QAbstractListModel(parent)
|
|
{
|
|
Init();
|
|
}
|
|
|
|
bool static ApplyProxySettings()
|
|
{
|
|
QSettings settings;
|
|
CService addrProxy(settings.value("addrProxy", "127.0.0.1:9050").toString().toStdString());
|
|
int nSocksVersion(settings.value("nSocksVersion", 5).toInt());
|
|
if (!settings.value("fUseProxy", false).toBool()) {
|
|
addrProxy = CService();
|
|
nSocksVersion = 0;
|
|
return false;
|
|
}
|
|
if (nSocksVersion && !addrProxy.IsValid())
|
|
return false;
|
|
if (!IsLimited(NET_IPV4))
|
|
SetProxy(NET_IPV4, addrProxy, nSocksVersion);
|
|
if (nSocksVersion > 4) {
|
|
#ifdef USE_IPV6
|
|
if (!IsLimited(NET_IPV6))
|
|
SetProxy(NET_IPV6, addrProxy, nSocksVersion);
|
|
#endif
|
|
SetNameProxy(addrProxy, nSocksVersion);
|
|
}
|
|
|
|
// Keep Tor transport aligned with proxy settings for one-click Tor mode.
|
|
SoftSetArg("-tor", addrProxy.ToStringIPPort());
|
|
SoftSetArg("-torproxy", addrProxy.ToStringIPPort());
|
|
|
|
return true;
|
|
}
|
|
|
|
void OptionsModel::Init()
|
|
{
|
|
QSettings settings;
|
|
|
|
// These are Qt-only settings:
|
|
nDisplayUnit = settings.value("nDisplayUnit", TrianglesUnits::TRI).toInt();
|
|
bDisplayAddresses = settings.value("bDisplayAddresses", false).toBool();
|
|
fMinimizeToTray = settings.value("fMinimizeToTray", false).toBool();
|
|
fMinimizeOnClose = settings.value("fMinimizeOnClose", false).toBool();
|
|
fCoinControlFeatures = settings.value("fCoinControlFeatures", false).toBool();
|
|
fShowOnionAddress = settings.value("fShowOnionAddress", true).toBool();
|
|
nTransactionFee = settings.value("nTransactionFee").toLongLong();
|
|
nReserveBalance = settings.value("nReserveBalance").toLongLong();
|
|
language = settings.value("language", "").toString();
|
|
|
|
// These are shared with core Triangles; we want
|
|
// command-line options to override the GUI settings:
|
|
if (settings.contains("fUseUPnP"))
|
|
SoftSetBoolArg("-upnp", settings.value("fUseUPnP").toBool());
|
|
if (settings.contains("addrProxy") && settings.value("fUseProxy").toBool())
|
|
SoftSetArg("-proxy", settings.value("addrProxy").toString().toStdString());
|
|
if (settings.contains("nSocksVersion") && settings.value("fUseProxy").toBool())
|
|
SoftSetArg("-socks", settings.value("nSocksVersion").toString().toStdString());
|
|
if (settings.value("fUseProxy", false).toBool()) {
|
|
const std::string proxyAddr = settings.value("addrProxy", "127.0.0.1:9050").toString().toStdString();
|
|
SoftSetArg("-tor", proxyAddr);
|
|
SoftSetArg("-torproxy", proxyAddr);
|
|
}
|
|
if (settings.contains("detachDB"))
|
|
SoftSetBoolArg("-detachdb", settings.value("detachDB").toBool());
|
|
if (!language.isEmpty())
|
|
SoftSetArg("-lang", language.toStdString());
|
|
}
|
|
|
|
int OptionsModel::rowCount(const QModelIndex & parent) const
|
|
{
|
|
return OptionIDRowCount;
|
|
}
|
|
|
|
QVariant OptionsModel::data(const QModelIndex & index, int role) const
|
|
{
|
|
if(role == Qt::EditRole)
|
|
{
|
|
QSettings settings;
|
|
switch(index.row())
|
|
{
|
|
case StartAtStartup:
|
|
return QVariant(GUIUtil::GetStartOnSystemStartup());
|
|
case MinimizeToTray:
|
|
return QVariant(fMinimizeToTray);
|
|
case MapPortUPnP:
|
|
return settings.value("fUseUPnP", GetBoolArg("-upnp", true));
|
|
case MinimizeOnClose:
|
|
return QVariant(fMinimizeOnClose);
|
|
case ProxyUse:
|
|
return settings.value("fUseProxy", false);
|
|
case ProxyIP: {
|
|
proxyType proxy;
|
|
if (GetProxy(NET_IPV4, proxy))
|
|
return QVariant(QString::fromStdString(proxy.first.ToStringIP()));
|
|
else
|
|
return QVariant(QString::fromStdString("127.0.0.1"));
|
|
}
|
|
case ProxyPort: {
|
|
proxyType proxy;
|
|
if (GetProxy(NET_IPV4, proxy))
|
|
return QVariant(proxy.first.GetPort());
|
|
else
|
|
return QVariant(9050);
|
|
}
|
|
case ProxySocksVersion:
|
|
return settings.value("nSocksVersion", 5);
|
|
case Fee:
|
|
return QVariant((qint64) nTransactionFee);
|
|
case ReserveBalance:
|
|
return QVariant((qint64) nReserveBalance);
|
|
case DisplayUnit:
|
|
return QVariant(nDisplayUnit);
|
|
case DisplayAddresses:
|
|
return QVariant(bDisplayAddresses);
|
|
case DetachDatabases:
|
|
return QVariant(bitdb.GetDetach());
|
|
case Language:
|
|
return settings.value("language", "");
|
|
case CoinControlFeatures:
|
|
return QVariant(fCoinControlFeatures);
|
|
case ShowOnionAddress:
|
|
return QVariant(fShowOnionAddress);
|
|
default:
|
|
return QVariant();
|
|
}
|
|
}
|
|
return QVariant();
|
|
}
|
|
|
|
bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, int role)
|
|
{
|
|
bool successful = true; /* set to false on parse error */
|
|
if(role == Qt::EditRole)
|
|
{
|
|
QSettings settings;
|
|
switch(index.row())
|
|
{
|
|
case StartAtStartup:
|
|
successful = GUIUtil::SetStartOnSystemStartup(value.toBool());
|
|
break;
|
|
case MinimizeToTray:
|
|
fMinimizeToTray = value.toBool();
|
|
settings.setValue("fMinimizeToTray", fMinimizeToTray);
|
|
break;
|
|
case MapPortUPnP:
|
|
fUseUPnP = value.toBool();
|
|
settings.setValue("fUseUPnP", fUseUPnP);
|
|
MapPort();
|
|
break;
|
|
case MinimizeOnClose:
|
|
fMinimizeOnClose = value.toBool();
|
|
settings.setValue("fMinimizeOnClose", fMinimizeOnClose);
|
|
break;
|
|
case ProxyUse:
|
|
settings.setValue("fUseProxy", value.toBool());
|
|
ApplyProxySettings();
|
|
break;
|
|
case ProxyIP: {
|
|
proxyType proxy;
|
|
proxy.first = CService("127.0.0.1", 9050);
|
|
GetProxy(NET_IPV4, proxy);
|
|
|
|
CNetAddr addr(value.toString().toStdString());
|
|
proxy.first.SetIP(addr);
|
|
settings.setValue("addrProxy", proxy.first.ToStringIPPort().c_str());
|
|
successful = ApplyProxySettings();
|
|
}
|
|
break;
|
|
case ProxyPort: {
|
|
proxyType proxy;
|
|
proxy.first = CService("127.0.0.1", 9050);
|
|
GetProxy(NET_IPV4, proxy);
|
|
|
|
proxy.first.SetPort(value.toInt());
|
|
settings.setValue("addrProxy", proxy.first.ToStringIPPort().c_str());
|
|
successful = ApplyProxySettings();
|
|
}
|
|
break;
|
|
case ProxySocksVersion: {
|
|
proxyType proxy;
|
|
proxy.second = 5;
|
|
GetProxy(NET_IPV4, proxy);
|
|
|
|
proxy.second = value.toInt();
|
|
settings.setValue("nSocksVersion", proxy.second);
|
|
successful = ApplyProxySettings();
|
|
}
|
|
break;
|
|
case Fee:
|
|
nTransactionFee = value.toLongLong();
|
|
settings.setValue("nTransactionFee", (qint64) nTransactionFee);
|
|
emit transactionFeeChanged(nTransactionFee);
|
|
break;
|
|
case ReserveBalance:
|
|
nReserveBalance = value.toLongLong();
|
|
settings.setValue("nReserveBalance", (qint64) nReserveBalance);
|
|
emit reserveBalanceChanged(nReserveBalance);
|
|
break;
|
|
case DisplayUnit:
|
|
nDisplayUnit = value.toInt();
|
|
settings.setValue("nDisplayUnit", nDisplayUnit);
|
|
emit displayUnitChanged(nDisplayUnit);
|
|
break;
|
|
case DisplayAddresses:
|
|
bDisplayAddresses = value.toBool();
|
|
settings.setValue("bDisplayAddresses", bDisplayAddresses);
|
|
break;
|
|
case DetachDatabases: {
|
|
bool fDetachDB = value.toBool();
|
|
bitdb.SetDetach(fDetachDB);
|
|
settings.setValue("detachDB", fDetachDB);
|
|
}
|
|
break;
|
|
case Language:
|
|
settings.setValue("language", value);
|
|
break;
|
|
case CoinControlFeatures: {
|
|
fCoinControlFeatures = value.toBool();
|
|
settings.setValue("fCoinControlFeatures", fCoinControlFeatures);
|
|
emit coinControlFeaturesChanged(fCoinControlFeatures);
|
|
}
|
|
break;
|
|
case ShowOnionAddress: {
|
|
fShowOnionAddress = value.toBool();
|
|
settings.setValue("fShowOnionAddress", fShowOnionAddress);
|
|
emit showOnionAddressChanged(fShowOnionAddress);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
emit dataChanged(index, index);
|
|
|
|
return successful;
|
|
}
|
|
|
|
qint64 OptionsModel::getTransactionFee()
|
|
{
|
|
return nTransactionFee;
|
|
}
|
|
|
|
qint64 OptionsModel::getReserveBalance()
|
|
{
|
|
return nReserveBalance;
|
|
}
|
|
|
|
bool OptionsModel::getCoinControlFeatures()
|
|
{
|
|
return fCoinControlFeatures;
|
|
}
|
|
|
|
bool OptionsModel::getMinimizeToTray()
|
|
{
|
|
return fMinimizeToTray;
|
|
}
|
|
|
|
bool OptionsModel::getMinimizeOnClose()
|
|
{
|
|
return fMinimizeOnClose;
|
|
}
|
|
|
|
int OptionsModel::getDisplayUnit()
|
|
{
|
|
return nDisplayUnit;
|
|
}
|
|
|
|
bool OptionsModel::getDisplayAddresses()
|
|
{
|
|
return bDisplayAddresses;
|
|
}
|
|
|
|
bool OptionsModel::getShowOnionAddress()
|
|
{
|
|
return fShowOnionAddress;
|
|
}
|