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