2019-12-30 06:39:22 -03:00
|
|
|
// Copyright (c) 2011-2019 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <qt/receiverequestdialog.h>
|
2017-08-15 12:31:26 -03:00
|
|
|
#include <qt/forms/ui_receiverequestdialog.h>
|
2012-06-24 12:28:05 -04:00
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <qt/bitcoinunits.h>
|
|
|
|
#include <qt/guiutil.h>
|
|
|
|
#include <qt/optionsmodel.h>
|
2019-11-19 08:45:32 -03:00
|
|
|
#include <qt/walletmodel.h>
|
2012-02-15 10:47:08 -03:00
|
|
|
|
2013-10-18 08:08:30 -03:00
|
|
|
#include <QClipboard>
|
2013-11-16 13:52:37 -03:00
|
|
|
#include <QPixmap>
|
2011-11-10 11:20:17 -03:00
|
|
|
|
2013-10-25 09:19:44 -03:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <config/bitcoin-config.h> /* for USE_QRCODE */
|
2013-10-25 09:19:44 -03:00
|
|
|
#endif
|
2013-10-16 10:14:26 -03:00
|
|
|
|
2013-10-18 09:25:35 -03:00
|
|
|
ReceiveRequestDialog::ReceiveRequestDialog(QWidget *parent) :
|
2012-06-24 12:28:05 -04:00
|
|
|
QDialog(parent),
|
2013-10-16 10:14:26 -03:00
|
|
|
ui(new Ui::ReceiveRequestDialog),
|
2018-07-30 06:37:09 -04:00
|
|
|
model(nullptr)
|
2011-11-10 11:20:17 -03:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2012-06-24 12:28:05 -04:00
|
|
|
|
2013-10-16 10:14:26 -03:00
|
|
|
#ifndef USE_QRCODE
|
|
|
|
ui->btnSaveAs->setVisible(false);
|
|
|
|
ui->lblQRCode->setVisible(false);
|
|
|
|
#endif
|
2012-06-24 12:28:05 -04:00
|
|
|
|
2018-06-24 11:18:22 -04:00
|
|
|
connect(ui->btnSaveAs, &QPushButton::clicked, ui->lblQRCode, &QRImageWidget::saveImage);
|
2011-11-10 11:20:17 -03:00
|
|
|
}
|
|
|
|
|
2013-10-16 10:14:26 -03:00
|
|
|
ReceiveRequestDialog::~ReceiveRequestDialog()
|
2011-11-10 11:20:17 -03:00
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2018-03-06 02:17:36 -03:00
|
|
|
void ReceiveRequestDialog::setModel(WalletModel *_model)
|
2012-06-24 12:28:05 -04:00
|
|
|
{
|
2016-09-09 08:43:29 -03:00
|
|
|
this->model = _model;
|
2012-06-24 12:28:05 -04:00
|
|
|
|
2016-09-09 08:43:29 -03:00
|
|
|
if (_model)
|
2018-06-24 11:18:22 -04:00
|
|
|
connect(_model->getOptionsModel(), &OptionsModel::displayUnitChanged, this, &ReceiveRequestDialog::update);
|
2012-06-24 12:28:05 -04:00
|
|
|
|
2013-10-18 09:25:35 -03:00
|
|
|
// update the display unit if necessary
|
|
|
|
update();
|
2012-06-24 12:28:05 -04:00
|
|
|
}
|
|
|
|
|
2016-09-09 08:43:29 -03:00
|
|
|
void ReceiveRequestDialog::setInfo(const SendCoinsRecipient &_info)
|
2012-02-15 09:14:16 -03:00
|
|
|
{
|
2016-09-09 08:43:29 -03:00
|
|
|
this->info = _info;
|
2013-10-18 09:25:35 -03:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReceiveRequestDialog::update()
|
|
|
|
{
|
|
|
|
if(!model)
|
|
|
|
return;
|
|
|
|
QString target = info.label;
|
|
|
|
if(target.isEmpty())
|
|
|
|
target = info.address;
|
|
|
|
setWindowTitle(tr("Request payment to %1").arg(target));
|
|
|
|
|
2013-10-18 09:03:17 -03:00
|
|
|
QString uri = GUIUtil::formatBitcoinURI(info);
|
2013-10-16 10:14:26 -03:00
|
|
|
ui->btnSaveAs->setEnabled(false);
|
2013-10-18 09:25:35 -03:00
|
|
|
QString html;
|
|
|
|
html += "<html><font face='verdana, arial, helvetica, sans-serif'>";
|
|
|
|
html += "<b>"+tr("Payment information")+"</b><br>";
|
2013-10-18 14:42:40 -03:00
|
|
|
html += "<b>"+tr("URI")+"</b>: ";
|
|
|
|
html += "<a href=\""+uri+"\">" + GUIUtil::HtmlEscape(uri) + "</a><br>";
|
2013-10-18 09:25:35 -03:00
|
|
|
html += "<b>"+tr("Address")+"</b>: " + GUIUtil::HtmlEscape(info.address) + "<br>";
|
|
|
|
if(info.amount)
|
2018-03-06 02:17:36 -03:00
|
|
|
html += "<b>"+tr("Amount")+"</b>: " + BitcoinUnits::formatHtmlWithUnit(model->getOptionsModel()->getDisplayUnit(), info.amount) + "<br>";
|
2013-10-18 09:25:35 -03:00
|
|
|
if(!info.label.isEmpty())
|
|
|
|
html += "<b>"+tr("Label")+"</b>: " + GUIUtil::HtmlEscape(info.label) + "<br>";
|
|
|
|
if(!info.message.isEmpty())
|
|
|
|
html += "<b>"+tr("Message")+"</b>: " + GUIUtil::HtmlEscape(info.message) + "<br>";
|
2018-03-06 02:17:36 -03:00
|
|
|
if(model->isMultiwallet()) {
|
|
|
|
html += "<b>"+tr("Wallet")+"</b>: " + GUIUtil::HtmlEscape(model->getWalletName()) + "<br>";
|
|
|
|
}
|
2013-10-18 09:25:35 -03:00
|
|
|
ui->outUri->setText(html);
|
2013-10-18 09:03:17 -03:00
|
|
|
|
2019-02-16 20:19:49 -03:00
|
|
|
if (ui->lblQRCode->setQR(uri, info.address)) {
|
|
|
|
ui->btnSaveAs->setEnabled(true);
|
2011-11-10 11:20:17 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-18 09:25:35 -03:00
|
|
|
void ReceiveRequestDialog::on_btnCopyURI_clicked()
|
2012-02-15 09:14:16 -03:00
|
|
|
{
|
2013-11-16 13:52:37 -03:00
|
|
|
GUIUtil::setClipboard(GUIUtil::formatBitcoinURI(info));
|
2011-11-10 11:20:17 -03:00
|
|
|
}
|
|
|
|
|
2013-10-18 14:42:40 -03:00
|
|
|
void ReceiveRequestDialog::on_btnCopyAddress_clicked()
|
|
|
|
{
|
2013-11-16 13:52:37 -03:00
|
|
|
GUIUtil::setClipboard(info.address);
|
2013-10-18 14:42:40 -03:00
|
|
|
}
|