feather/src/SendWidget.cpp

348 lines
12 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
2021-06-28 17:48:23 +00:00
#include "SendWidget.h"
#include "ui_SendWidget.h"
#include <QMessageBox>
2021-06-28 17:48:23 +00:00
#include "ColorScheme.h"
2021-05-18 15:59:18 +00:00
#include "constants.h"
2021-05-02 18:22:38 +00:00
#include "utils/AppData.h"
2021-06-25 14:14:49 +00:00
#include "Icons.h"
#ifdef WITH_SCANNER
#include "qrcode_scanner/QrCodeScanDialog.h"
#include <QtMultimedia/QCameraInfo>
2021-06-25 14:14:49 +00:00
#endif
2021-05-18 15:59:18 +00:00
SendWidget::SendWidget(QSharedPointer<AppContext> ctx, QWidget *parent)
2021-05-02 18:22:38 +00:00
: QWidget(parent)
, ui(new Ui::SendWidget)
2021-05-18 15:59:18 +00:00
, m_ctx(std::move(ctx))
{
ui->setupUi(this);
QString amount_rx = R"(^\d{0,8}[\.,]\d{0,12}|(all)$)";
QRegExp rx;
rx.setPattern(amount_rx);
2021-10-01 17:10:46 +00:00
QValidator *validator = new QRegExpValidator(rx, this);
ui->lineAmount->setValidator(validator);
2021-05-18 15:59:18 +00:00
connect(m_ctx.get(), &AppContext::initiateTransaction, this, &SendWidget::onInitiateTransaction);
connect(m_ctx.get(), &AppContext::endTransaction, this, &SendWidget::onEndTransaction);
2021-10-22 22:14:34 +00:00
connect(WalletManager::instance(), &WalletManager::openAliasResolved, this, &SendWidget::onOpenAliasResolved);
2021-05-02 18:22:38 +00:00
2021-06-25 14:14:49 +00:00
connect(ui->btnScan, &QPushButton::clicked, this, &SendWidget::scanClicked);
connect(ui->btnSend, &QPushButton::clicked, this, &SendWidget::sendClicked);
connect(ui->btnClear, &QPushButton::clicked, this, &SendWidget::clearClicked);
connect(ui->btnMax, &QPushButton::clicked, this, &SendWidget::btnMaxClicked);
connect(ui->comboCurrencySelection, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &SendWidget::currencyComboChanged);
2021-01-26 23:55:27 +00:00
connect(ui->lineAmount, &QLineEdit::textChanged, this, &SendWidget::amountEdited);
connect(ui->lineAddress, &QPlainTextEdit::textChanged, this, &SendWidget::addressEdited);
connect(ui->btn_openAlias, &QPushButton::clicked, this, &SendWidget::aliasClicked);
connect(ui->lineAddress, &PayToEdit::dataPasted, this, &SendWidget::onDataPasted);
ui->label_conversionAmount->setText("");
ui->label_conversionAmount->hide();
ui->btn_openAlias->hide();
2020-12-16 15:28:13 +00:00
ui->label_PayTo->setHelpText("Recipient of the funds.\n\n"
"You may enter a Monero address, or an alias (email-like address that forwards to a Monero address)");
ui->label_Description->setHelpText("Description of the transaction (optional).\n\n"
"The description is not sent to the recipient of the funds. It is stored in your wallet cache, "
"and displayed in the 'History' tab.");
ui->label_Amount->setHelpText("Amount to be sent.\n\nThis is the exact amount the recipient will receive. "
"In addition to this amount a transaction fee will be subtracted from your balance. "
"You will be able to review the transaction fee before the transaction is broadcast.\n\n"
"To send all your balance, click the Max button to the right.");
2021-05-18 15:59:18 +00:00
ui->lineAddress->setNetType(constants::networkType);
this->setupComboBox();
}
void SendWidget::currencyComboChanged(int index) {
QString amount = ui->lineAmount->text();
if(amount.isEmpty()) return;
this->amountEdited(amount);
}
2021-01-26 23:55:27 +00:00
void SendWidget::addressEdited() {
QVector<PartialTxOutput> outputs = ui->lineAddress->getOutputs();
bool freezeAmounts = !outputs.empty();
2021-01-26 23:55:27 +00:00
ui->lineAmount->setReadOnly(freezeAmounts);
ui->lineAmount->setFrame(!freezeAmounts);
ui->btnMax->setDisabled(freezeAmounts);
ui->comboCurrencySelection->setDisabled(freezeAmounts);
2021-01-26 23:55:27 +00:00
if (!outputs.empty()) {
ui->lineAmount->setText(WalletManager::displayAmount(ui->lineAddress->getTotal(), false));
ui->comboCurrencySelection->setCurrentIndex(0);
2021-01-26 23:55:27 +00:00
}
ui->btn_openAlias->setVisible(ui->lineAddress->isOpenAlias());
}
void SendWidget::amountEdited(const QString &text) {
this->updateConversionLabel();
}
void SendWidget::fill(double amount) {
ui->lineAmount->setText(QString::number(amount));
}
void SendWidget::fill(const QString &address, const QString &description, double amount) {
ui->lineAddress->setText(address);
2021-01-26 23:55:27 +00:00
ui->lineAddress->moveCursor(QTextCursor::Start);
2021-07-02 16:01:11 +00:00
ui->lineDescription->setText(description);
2020-12-14 00:59:32 +00:00
if (amount > 0)
ui->lineAmount->setText(QString::number(amount));
2021-07-02 16:01:11 +00:00
ui->lineAmount->setFocus();
2020-12-14 00:59:32 +00:00
this->updateConversionLabel();
}
void SendWidget::fillAddress(const QString &address) {
ui->lineAddress->setText(address);
2021-01-26 23:55:27 +00:00
ui->lineAddress->moveCursor(QTextCursor::Start);
}
2021-06-25 14:14:49 +00:00
void SendWidget::scanClicked() {
#ifdef WITH_SCANNER
auto cameras = QCameraInfo::availableCameras();
if (cameras.count() < 1) {
QMessageBox::warning(this, "QR code scanner", "No available cameras found.");
return;
}
2021-06-25 14:14:49 +00:00
auto *dialog = new QrCodeScanDialog(this);
dialog->exec();
ui->lineAddress->setText(dialog->decodedString);
dialog->deleteLater();
#else
QMessageBox::warning(this, "QR scanner", "Feather was built without webcam QR scanner support.");
#endif
}
void SendWidget::sendClicked() {
2021-05-18 15:59:18 +00:00
if (!m_ctx->wallet->isConnected()) {
QMessageBox::warning(this, "Error", "Unable to create transaction:\n\n"
"Wallet is not connected to a node.\n"
"Go to File -> Settings -> Node to manually connect to a node.");
return;
}
QString currency = ui->comboCurrencySelection->currentText();
QString recipient = ui->lineAddress->text().simplified().remove(' ');
QString description = ui->lineDescription->text();
2021-10-22 22:14:34 +00:00
if (recipient.isEmpty()) {
QMessageBox::warning(this, "Malformed recipient", "No destination address was entered.");
return;
}
2021-01-26 23:55:27 +00:00
QVector<PartialTxOutput> outputs = ui->lineAddress->getOutputs();
QVector<PayToLineError> errors = ui->lineAddress->getErrors();
if (errors.size() > 0 && ui->lineAddress->isMultiline()) {
QString errorText;
for (auto &error: errors) {
errorText += QString("Line #%1:\n%2\n").arg(QString::number(error.idx + 1), error.error);
}
QMessageBox::warning(this, "Warning", QString("Invalid lines found:\n\n%1").arg(errorText));
return;
}
if (outputs.size() > 0) { // multi destination transaction
if (outputs.size() > 16) {
QMessageBox::warning(this, "Warning", "Maximum number of outputs (16) exceeded.");
return;
}
QVector<QString> addresses;
QVector<quint64> amounts;
for (auto &output : outputs) {
addresses.push_back(output.address);
amounts.push_back(output.amount);
}
2021-05-02 18:22:38 +00:00
m_ctx->onCreateTransactionMultiDest(addresses, amounts, description);
2021-01-26 23:55:27 +00:00
return;
}
2020-12-31 03:26:03 +00:00
quint64 amount;
if (currency == "XMR") {
amount = this->amount();
bool sendAll = (ui->lineAmount->text() == "all");
if (amount == 0 && !sendAll) {
2021-10-22 22:14:34 +00:00
QMessageBox::warning(this, "Amount error", "No amount was entered.");
2020-12-31 03:26:03 +00:00
return;
}
2021-05-02 18:22:38 +00:00
m_ctx->onCreateTransaction(recipient, amount, description, sendAll);
2020-12-31 03:26:03 +00:00
} else {
amount = WalletManager::amountFromDouble(this->conversionAmount());
if (amount == 0) {
QMessageBox::warning(this, "Fiat conversion error", "Could not create transaction.");
return;
}
2021-05-02 18:22:38 +00:00
m_ctx->onCreateTransaction(recipient, amount, description, false);
}
}
void SendWidget::aliasClicked() {
ui->btn_openAlias->setEnabled(false);
2021-10-22 22:14:34 +00:00
auto alias = ui->lineAddress->text();
WalletManager::instance()->resolveOpenAliasAsync(alias);
}
void SendWidget::clearClicked() {
ui->lineAddress->clear();
ui->lineAmount->clear();
ui->lineDescription->clear();
}
void SendWidget::btnMaxClicked() {
ui->lineAmount->setText("all");
2020-12-31 03:26:03 +00:00
this->updateConversionLabel();
}
void SendWidget::updateConversionLabel() {
2020-12-31 03:26:03 +00:00
auto amount = this->amountDouble();
ui->label_conversionAmount->setText("");
2020-12-31 03:26:03 +00:00
if (amount <= 0) {
ui->label_conversionAmount->hide();
return;
}
QString conversionAmountStr = [this]{
QString currency = ui->comboCurrencySelection->currentText();
if (currency != "XMR") {
return QString("~%1 XMR").arg(QString::number(this->conversionAmount(), 'f'));
} else {
auto preferredFiatCurrency = config()->get(Config::preferredFiatCurrency).toString();
2021-05-02 18:22:38 +00:00
double conversionAmount = appData()->prices.convert("XMR", preferredFiatCurrency, this->amountDouble());
return QString("~%1 %2").arg(QString::number(conversionAmount, 'f', 2), preferredFiatCurrency);
2020-12-28 04:39:20 +00:00
}
}();
ui->label_conversionAmount->setText(conversionAmountStr);
ui->label_conversionAmount->show();
}
double SendWidget::conversionAmount() {
QString currency = ui->comboCurrencySelection->currentText();
2021-05-02 18:22:38 +00:00
return appData()->prices.convert(currency, "XMR", this->amountDouble());
}
2020-12-31 03:26:03 +00:00
quint64 SendWidget::amount() {
// grab amount from "amount" text box
QString amount = ui->lineAmount->text();
2020-12-31 03:26:03 +00:00
if (amount == "all") return 0;
amount.replace(',', '.');
2020-12-31 03:26:03 +00:00
if (amount.isEmpty()) return 0;
return WalletManager::amountFromString(amount);
}
double SendWidget::amountDouble() {
quint64 amount = this->amount();
2021-05-18 15:59:18 +00:00
return amount / constants::cdiv;
}
2021-10-22 22:14:34 +00:00
void SendWidget::onOpenAliasResolved(const QString &openAlias, const QString &address, bool dnssecValid) {
ui->btn_openAlias->setEnabled(true);
2021-10-22 22:14:34 +00:00
if (address.isEmpty()) {
this->onOpenAliasResolveError("Could not resolve OpenAlias.");
return;
}
if (!dnssecValid) {
this->onOpenAliasResolveError("Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed.");
return;
}
bool valid = WalletManager::addressValid(address, constants::networkType);
if (!valid) {
this->onOpenAliasResolveError(QString("Address validation error. Perhaps it is of the wrong network type.\n\n"
"OpenAlias: %1\nAddress: %2").arg(openAlias, address));
return;
}
this->fill(address, openAlias);
ui->btn_openAlias->hide();
}
void SendWidget::onOpenAliasResolveError(const QString &msg) {
QMessageBox::warning(this, "OpenAlias error", msg);
}
void SendWidget::clearFields() {
ui->lineAddress->clear();
ui->lineAmount->clear();
ui->lineDescription->clear();
ui->label_conversionAmount->clear();
}
2021-01-26 23:55:27 +00:00
void SendWidget::payToMany() {
ui->lineAddress->payToMany();
}
void SendWidget::onInitiateTransaction() {
ui->btnSend->setEnabled(false);
}
void SendWidget::onEndTransaction() {
ui->btnSend->setEnabled(true);
}
void SendWidget::onDataPasted(const QString &data) {
if (!data.isEmpty()) {
QVariantMap uriData = m_ctx->wallet->parse_uri_to_object(data);
if (!uriData.contains("error")) {
2021-07-09 21:43:59 +00:00
ui->lineAddress->setText(uriData.value("address").toString());
ui->lineDescription->setText(uriData.value("tx_description").toString());
ui->lineAmount->setText(uriData.value("amount").toString());
} else {
ui->lineAddress->setText(data);
}
}
else {
QMessageBox::warning(this, "Error", "No Qr Code found.");
}
}
void SendWidget::setupComboBox() {
ui->comboCurrencySelection->clear();
QStringList defaultCurrencies = {"XMR", "USD", "EUR", "CNY", "JPY", "GBP"};
QString preferredCurrency = config()->get(Config::preferredFiatCurrency).toString();
if (defaultCurrencies.contains(preferredCurrency)) {
defaultCurrencies.removeOne(preferredCurrency);
}
ui->comboCurrencySelection->insertItems(0, defaultCurrencies);
ui->comboCurrencySelection->insertItem(1, preferredCurrency);
}
void SendWidget::onPreferredFiatCurrencyChanged() {
this->updateConversionLabel();
this->setupComboBox();
}
2021-06-25 14:14:49 +00:00
void SendWidget::skinChanged() {
if (ColorScheme::hasDarkBackground(this)) {
ui->btnScan->setIcon(icons()->icon("camera_white.png"));
} else {
ui->btnScan->setIcon(icons()->icon("camera_dark.png"));
}
}
2021-06-27 12:13:05 +00:00
SendWidget::~SendWidget() = default;