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/guiconstants.h>
|
|
|
|
#include <qt/guiutil.h>
|
|
|
|
#include <qt/optionsmodel.h>
|
2012-02-15 14:47:08 +01:00
|
|
|
|
2013-10-18 13:08:30 +02:00
|
|
|
#include <QClipboard>
|
2013-10-18 14:25:35 +02:00
|
|
|
#include <QDrag>
|
2014-06-03 14:42:20 +02:00
|
|
|
#include <QMenu>
|
2013-10-18 14:25:35 +02:00
|
|
|
#include <QMimeData>
|
2013-11-16 17:52:37 +01:00
|
|
|
#include <QMouseEvent>
|
|
|
|
#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
|
|
|
|
|
|
|
#ifdef USE_QRCODE
|
2011-11-10 15:20:17 +01:00
|
|
|
#include <qrencode.h>
|
2013-10-16 15:14:26 +02:00
|
|
|
#endif
|
2011-11-10 15:20:17 +01:00
|
|
|
|
2013-10-18 13:08:30 +02:00
|
|
|
QRImageWidget::QRImageWidget(QWidget *parent):
|
2014-05-07 08:15:22 +02:00
|
|
|
QLabel(parent), contextMenu(0)
|
2013-10-18 13:08:30 +02:00
|
|
|
{
|
2016-11-18 15:47:20 +01:00
|
|
|
contextMenu = new QMenu(this);
|
2013-10-18 13:08:30 +02:00
|
|
|
QAction *saveImageAction = new QAction(tr("&Save Image..."), this);
|
2018-06-24 17:18:22 +02:00
|
|
|
connect(saveImageAction, &QAction::triggered, this, &QRImageWidget::saveImage);
|
2014-05-07 08:15:22 +02:00
|
|
|
contextMenu->addAction(saveImageAction);
|
2013-10-18 13:08:30 +02:00
|
|
|
QAction *copyImageAction = new QAction(tr("&Copy Image"), this);
|
2018-06-24 17:18:22 +02:00
|
|
|
connect(copyImageAction, &QAction::triggered, this, &QRImageWidget::copyImage);
|
2014-05-07 08:15:22 +02:00
|
|
|
contextMenu->addAction(copyImageAction);
|
2013-10-18 13:08:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QImage QRImageWidget::exportImage()
|
|
|
|
{
|
2014-05-07 08:15:22 +02:00
|
|
|
if(!pixmap())
|
|
|
|
return QImage();
|
2016-03-03 11:54:31 +01:00
|
|
|
return pixmap()->toImage();
|
2013-10-18 13:08:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void QRImageWidget::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
2014-05-07 08:15:22 +02:00
|
|
|
if(event->button() == Qt::LeftButton && pixmap())
|
2013-10-18 13:08:30 +02:00
|
|
|
{
|
2013-10-18 19:42:40 +02:00
|
|
|
event->accept();
|
2013-10-18 13:08:30 +02:00
|
|
|
QMimeData *mimeData = new QMimeData;
|
|
|
|
mimeData->setImageData(exportImage());
|
|
|
|
|
|
|
|
QDrag *drag = new QDrag(this);
|
|
|
|
drag->setMimeData(mimeData);
|
|
|
|
drag->exec();
|
2013-10-18 19:42:40 +02:00
|
|
|
} else {
|
|
|
|
QLabel::mousePressEvent(event);
|
2013-10-18 13:08:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QRImageWidget::saveImage()
|
|
|
|
{
|
2014-05-07 08:15:22 +02:00
|
|
|
if(!pixmap())
|
|
|
|
return;
|
2017-08-07 07:36:37 +02:00
|
|
|
QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Image (*.png)"), nullptr);
|
2013-10-18 13:08:30 +02:00
|
|
|
if (!fn.isEmpty())
|
|
|
|
{
|
|
|
|
exportImage().save(fn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QRImageWidget::copyImage()
|
|
|
|
{
|
2014-05-07 08:15:22 +02:00
|
|
|
if(!pixmap())
|
|
|
|
return;
|
2013-10-18 13:08:30 +02:00
|
|
|
QApplication::clipboard()->setImage(exportImage());
|
|
|
|
}
|
|
|
|
|
2014-05-07 08:15:22 +02:00
|
|
|
void QRImageWidget::contextMenuEvent(QContextMenuEvent *event)
|
|
|
|
{
|
|
|
|
if(!pixmap())
|
|
|
|
return;
|
|
|
|
contextMenu->exec(event->globalPos());
|
|
|
|
}
|
|
|
|
|
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),
|
2013-10-18 14:25:35 +02:00
|
|
|
model(0)
|
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
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
#ifdef USE_QRCODE
|
2013-10-18 14:03:17 +02:00
|
|
|
ui->lblQRCode->setText("");
|
|
|
|
if(!uri.isEmpty())
|
2012-04-11 14:21:15 +02:00
|
|
|
{
|
2013-10-18 14:03:17 +02:00
|
|
|
// limit URI length
|
|
|
|
if (uri.length() > MAX_URI_LENGTH)
|
2012-04-11 14:21:15 +02:00
|
|
|
{
|
2013-10-18 14:03:17 +02:00
|
|
|
ui->lblQRCode->setText(tr("Resulting URI too long, try to reduce the text for label / message."));
|
|
|
|
} else {
|
|
|
|
QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1);
|
|
|
|
if (!code)
|
2012-04-12 18:39:22 +02:00
|
|
|
{
|
2013-10-18 14:03:17 +02:00
|
|
|
ui->lblQRCode->setText(tr("Error encoding URI into QR Code."));
|
|
|
|
return;
|
2012-04-12 18:39:22 +02:00
|
|
|
}
|
2016-03-03 11:54:31 +01:00
|
|
|
QImage qrImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32);
|
|
|
|
qrImage.fill(0xffffff);
|
2013-10-18 14:03:17 +02:00
|
|
|
unsigned char *p = code->data;
|
|
|
|
for (int y = 0; y < code->width; y++)
|
|
|
|
{
|
|
|
|
for (int x = 0; x < code->width; x++)
|
|
|
|
{
|
2016-03-03 11:54:31 +01:00
|
|
|
qrImage.setPixel(x + 4, y + 4, ((*p & 1) ? 0x0 : 0xffffff));
|
2013-10-18 14:03:17 +02:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QRcode_free(code);
|
2012-06-24 18:28:05 +02:00
|
|
|
|
2016-03-03 11:54:31 +01:00
|
|
|
QImage qrAddrImage = QImage(QR_IMAGE_SIZE, QR_IMAGE_SIZE+20, QImage::Format_RGB32);
|
|
|
|
qrAddrImage.fill(0xffffff);
|
|
|
|
QPainter painter(&qrAddrImage);
|
|
|
|
painter.drawImage(0, 0, qrImage.scaled(QR_IMAGE_SIZE, QR_IMAGE_SIZE));
|
|
|
|
QFont font = GUIUtil::fixedPitchFont();
|
|
|
|
QRect paddedRect = qrAddrImage.rect();
|
2018-01-12 22:09:59 +01:00
|
|
|
|
|
|
|
// calculate ideal font size
|
|
|
|
qreal font_size = GUIUtil::calculateIdealFontSize(paddedRect.width() - 20, info.address, font);
|
|
|
|
font.setPointSizeF(font_size);
|
|
|
|
|
|
|
|
painter.setFont(font);
|
2016-03-03 11:54:31 +01:00
|
|
|
paddedRect.setHeight(QR_IMAGE_SIZE+12);
|
|
|
|
painter.drawText(paddedRect, Qt::AlignBottom|Qt::AlignCenter, info.address);
|
|
|
|
painter.end();
|
|
|
|
|
|
|
|
ui->lblQRCode->setPixmap(QPixmap::fromImage(qrAddrImage));
|
2013-10-18 14:03:17 +02:00
|
|
|
ui->btnSaveAs->setEnabled(true);
|
|
|
|
}
|
2011-11-10 15:20:17 +01:00
|
|
|
}
|
2013-10-16 15:14:26 +02:00
|
|
|
#endif
|
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
|
|
|
}
|