Settings: add Privacy tab

This commit is contained in:
tobtoht 2022-03-04 22:02:27 +01:00
parent db56f99493
commit 7f73decc41
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C
2 changed files with 64 additions and 8 deletions

View file

@ -5,6 +5,9 @@
#include "ui_SettingsDialog.h" #include "ui_SettingsDialog.h"
#include <QFileDialog> #include <QFileDialog>
#include <QMessageBox>
#include "Icons.h"
Settings::Settings(QSharedPointer<AppContext> ctx, QWidget *parent) Settings::Settings(QSharedPointer<AppContext> ctx, QWidget *parent)
: QDialog(parent) : QDialog(parent)
@ -15,13 +18,16 @@ Settings::Settings(QSharedPointer<AppContext> ctx, QWidget *parent)
this->setWindowIcon(QIcon("://assets/images/appicons/64x64.png")); this->setWindowIcon(QIcon("://assets/images/appicons/64x64.png"));
ui->tabWidget->setTabVisible(2, false); ui->tabWidget->setTabVisible(3, false);
ui->tabWidget->setTabVisible(5, false); ui->tabWidget->setTabVisible(6, false);
connect(ui->btnCopyToClipboard, &QPushButton::clicked, this, &Settings::copyToClipboard); connect(ui->btnCopyToClipboard, &QPushButton::clicked, this, &Settings::copyToClipboard);
connect(ui->checkBox_multiBroadcast, &QCheckBox::toggled, [](bool toggled){ connect(ui->checkBox_multiBroadcast, &QCheckBox::toggled, [](bool toggled){
config()->set(Config::multiBroadcast, toggled); config()->set(Config::multiBroadcast, toggled);
}); });
connect(ui->btn_multiBroadcast, &QPushButton::clicked, [this]{
QMessageBox::information(this, "Multibroadcasting", "Multibroadcasting relays outgoing transactions to all nodes in your selected node list. This may improve transaction relay speed and reduces the chance of your transaction failing.");
});
connect(ui->checkBox_externalLink, &QCheckBox::clicked, this, &Settings::checkboxExternalLinkWarn); connect(ui->checkBox_externalLink, &QCheckBox::clicked, this, &Settings::checkboxExternalLinkWarn);
connect(ui->checkBox_hideBalance, &QCheckBox::toggled, [this](bool toggled){ connect(ui->checkBox_hideBalance, &QCheckBox::toggled, [this](bool toggled){
config()->set(Config::hideBalance, toggled); config()->set(Config::hideBalance, toggled);

View file

@ -191,11 +191,61 @@
</layout> </layout>
</item> </item>
<item> <item>
<widget class="QCheckBox" name="checkBox_multiBroadcast"> <spacer name="verticalSpacer_3">
<property name="text"> <property name="orientation">
<string>Multibroadcast outgoing transactions</string> <enum>Qt::Vertical</enum>
</property> </property>
</widget> <property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QWidget" name="tab_privacy">
<attribute name="title">
<string>Privacy</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_4">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
<widget class="QCheckBox" name="checkBox_multiBroadcast">
<property name="text">
<string>Multibroadcast outgoing transactions</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="btn_multiBroadcast">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>?</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_4">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item> </item>
<item> <item>
<widget class="QCheckBox" name="checkBox_externalLink"> <widget class="QCheckBox" name="checkBox_externalLink">
@ -260,14 +310,14 @@
</layout> </layout>
</item> </item>
<item> <item>
<spacer name="verticalSpacer_3"> <spacer name="verticalSpacer_4">
<property name="orientation"> <property name="orientation">
<enum>Qt::Vertical</enum> <enum>Qt::Vertical</enum>
</property> </property>
<property name="sizeHint" stdset="0"> <property name="sizeHint" stdset="0">
<size> <size>
<width>20</width> <width>20</width>
<height>0</height> <height>40</height>
</size> </size>
</property> </property>
</spacer> </spacer>