2013-10-16 15:14:26 +02:00
|
|
|
#include "receiverequestdialog.h"
|
|
|
|
#include "ui_receiverequestdialog.h"
|
2012-06-24 18:28:05 +02:00
|
|
|
|
|
|
|
#include "bitcoinunits.h"
|
|
|
|
#include "guiconstants.h"
|
2012-02-15 14:47:08 +01:00
|
|
|
#include "guiutil.h"
|
2012-06-24 18:28:05 +02:00
|
|
|
#include "optionsmodel.h"
|
2013-10-18 13:45:11 +02:00
|
|
|
#include "walletmodel.h"
|
2012-02-15 14:47:08 +01:00
|
|
|
|
2011-11-10 15:20:17 +01:00
|
|
|
#include <QPixmap>
|
2013-10-18 13:08:30 +02:00
|
|
|
#include <QClipboard>
|
2013-05-31 14:02:24 +02:00
|
|
|
#if QT_VERSION < 0x050000
|
2011-11-10 15:20:17 +01:00
|
|
|
#include <QUrl>
|
2013-05-31 14:02:24 +02:00
|
|
|
#endif
|
2011-11-10 15:20:17 +01:00
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
#include "bitcoin-config.h" /* for USE_QRCODE */
|
|
|
|
|
|
|
|
#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):
|
|
|
|
QLabel(parent)
|
|
|
|
{
|
|
|
|
setContextMenuPolicy(Qt::ActionsContextMenu);
|
|
|
|
|
|
|
|
QAction *saveImageAction = new QAction(tr("&Save Image..."), this);
|
|
|
|
connect(saveImageAction, SIGNAL(triggered()), this, SLOT(saveImage()));
|
|
|
|
addAction(saveImageAction);
|
|
|
|
QAction *copyImageAction = new QAction(tr("&Copy Image"), this);
|
|
|
|
connect(copyImageAction, SIGNAL(triggered()), this, SLOT(copyImage()));
|
|
|
|
addAction(copyImageAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage QRImageWidget::exportImage()
|
|
|
|
{
|
|
|
|
return pixmap()->toImage().scaled(EXPORT_IMAGE_SIZE, EXPORT_IMAGE_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QRImageWidget::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if(event->button() == Qt::LeftButton)
|
|
|
|
{
|
|
|
|
QMimeData *mimeData = new QMimeData;
|
|
|
|
mimeData->setImageData(exportImage());
|
|
|
|
|
|
|
|
QDrag *drag = new QDrag(this);
|
|
|
|
drag->setMimeData(mimeData);
|
|
|
|
drag->exec();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QRImageWidget::saveImage()
|
|
|
|
{
|
|
|
|
QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Images (*.png)"));
|
|
|
|
if (!fn.isEmpty())
|
|
|
|
{
|
|
|
|
exportImage().save(fn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QRImageWidget::copyImage()
|
|
|
|
{
|
|
|
|
QApplication::clipboard()->setImage(exportImage());
|
|
|
|
}
|
|
|
|
|
2013-10-18 13:45:11 +02:00
|
|
|
ReceiveRequestDialog::ReceiveRequestDialog(const SendCoinsRecipient &info, QWidget *parent) :
|
2012-06-24 18:28:05 +02:00
|
|
|
QDialog(parent),
|
2013-10-16 15:14:26 +02:00
|
|
|
ui(new Ui::ReceiveRequestDialog),
|
2012-06-24 18:28:05 +02:00
|
|
|
model(0),
|
2013-10-18 13:45:11 +02:00
|
|
|
info(info)
|
2011-11-10 15:20:17 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2012-06-24 18:28:05 +02:00
|
|
|
|
2013-10-18 13:45:11 +02:00
|
|
|
QString target = info.label;
|
2013-10-16 15:14:26 +02:00
|
|
|
if(target.isEmpty())
|
2013-10-18 13:45:11 +02:00
|
|
|
target = info.address;
|
2013-10-16 15:14:26 +02:00
|
|
|
setWindowTitle(tr("Request payment to %1").arg(target));
|
2011-11-10 15:20:17 +01:00
|
|
|
|
2013-10-18 13:45:11 +02:00
|
|
|
ui->lnAddress->setText(info.address);
|
|
|
|
if(info.amount)
|
|
|
|
ui->lnReqAmount->setValue(info.amount);
|
2013-10-16 15:14:26 +02:00
|
|
|
ui->lnReqAmount->setReadOnly(true);
|
2013-10-18 13:45:11 +02:00
|
|
|
ui->lnLabel->setText(info.label);
|
|
|
|
ui->lnMessage->setText(info.message);
|
2011-11-10 15:20:17 +01: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
|
|
|
|
2013-10-18 13:08:30 +02:00
|
|
|
connect(ui->btnSaveAs, SIGNAL(clicked()), ui->lblQRCode, SLOT(saveImage()));
|
|
|
|
|
2011-11-10 15:20:17 +01:00
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
ReceiveRequestDialog::~ReceiveRequestDialog()
|
2011-11-10 15:20:17 +01:00
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
void ReceiveRequestDialog::setModel(OptionsModel *model)
|
2012-06-24 18:28:05 +02:00
|
|
|
{
|
|
|
|
this->model = model;
|
|
|
|
|
|
|
|
if (model)
|
|
|
|
connect(model, SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit()));
|
|
|
|
|
|
|
|
// update the display unit, to not use the default ("BTC")
|
|
|
|
updateDisplayUnit();
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
void ReceiveRequestDialog::genCode()
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
QString uri = getURI();
|
2013-10-16 15:14:26 +02:00
|
|
|
ui->btnSaveAs->setEnabled(false);
|
|
|
|
ui->outUri->setPlainText(uri);
|
|
|
|
#ifdef USE_QRCODE
|
2012-04-12 18:39:22 +02:00
|
|
|
if (uri != "")
|
2012-04-11 14:21:15 +02:00
|
|
|
{
|
2012-04-12 18:39:22 +02:00
|
|
|
ui->lblQRCode->setText("");
|
|
|
|
|
|
|
|
QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1);
|
2012-04-15 03:00:27 +02:00
|
|
|
if (!code)
|
|
|
|
{
|
|
|
|
ui->lblQRCode->setText(tr("Error encoding URI into QR Code."));
|
|
|
|
return;
|
|
|
|
}
|
2013-10-18 13:08:30 +02:00
|
|
|
QImage myImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32);
|
2012-04-12 18:39:22 +02:00
|
|
|
myImage.fill(0xffffff);
|
|
|
|
unsigned char *p = code->data;
|
|
|
|
for (int y = 0; y < code->width; y++)
|
2012-04-11 14:21:15 +02:00
|
|
|
{
|
2012-04-12 18:39:22 +02:00
|
|
|
for (int x = 0; x < code->width; x++)
|
|
|
|
{
|
|
|
|
myImage.setPixel(x + 4, y + 4, ((*p & 1) ? 0x0 : 0xffffff));
|
|
|
|
p++;
|
|
|
|
}
|
2011-11-10 15:20:17 +01:00
|
|
|
}
|
2012-04-12 18:39:22 +02:00
|
|
|
QRcode_free(code);
|
2012-06-24 18:28:05 +02:00
|
|
|
|
2012-04-12 18:39:22 +02:00
|
|
|
ui->lblQRCode->setPixmap(QPixmap::fromImage(myImage).scaled(300, 300));
|
2013-10-16 15:14:26 +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-16 15:14:26 +02:00
|
|
|
QString ReceiveRequestDialog::getURI()
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2013-10-18 13:45:11 +02:00
|
|
|
QString ret = QString("bitcoin:%1").arg(info.address);
|
2011-11-10 15:20:17 +01:00
|
|
|
int paramCount = 0;
|
2012-06-24 18:28:05 +02:00
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
if (ui->lnReqAmount->validate())
|
2012-04-11 14:21:15 +02:00
|
|
|
{
|
2013-10-16 15:14:26 +02:00
|
|
|
// even if we allow a non BTC unit input in lnReqAmount, we generate the URI with BTC as unit (as defined in BIP21)
|
|
|
|
ret += QString("?amount=%1").arg(BitcoinUnits::format(BitcoinUnits::BTC, ui->lnReqAmount->value()));
|
|
|
|
paramCount++;
|
2011-11-10 15:20:17 +01:00
|
|
|
}
|
|
|
|
|
2012-04-11 14:21:15 +02:00
|
|
|
if (!ui->lnLabel->text().isEmpty())
|
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
QString lbl(QUrl::toPercentEncoding(ui->lnLabel->text()));
|
|
|
|
ret += QString("%1label=%2").arg(paramCount == 0 ? "?" : "&").arg(lbl);
|
|
|
|
paramCount++;
|
|
|
|
}
|
|
|
|
|
2012-04-11 14:21:15 +02:00
|
|
|
if (!ui->lnMessage->text().isEmpty())
|
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
QString msg(QUrl::toPercentEncoding(ui->lnMessage->text()));
|
|
|
|
ret += QString("%1message=%2").arg(paramCount == 0 ? "?" : "&").arg(msg);
|
|
|
|
paramCount++;
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
// limit URI length
|
2012-06-24 18:28:05 +02:00
|
|
|
if (ret.length() > MAX_URI_LENGTH)
|
|
|
|
{
|
|
|
|
ui->lblQRCode->setText(tr("Resulting URI too long, try to reduce the text for label / message."));
|
2012-04-12 18:39:22 +02:00
|
|
|
return QString("");
|
2012-06-24 18:28:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2011-11-10 15:20:17 +01:00
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
void ReceiveRequestDialog::on_lnReqAmount_textChanged()
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
void ReceiveRequestDialog::on_lnLabel_textChanged()
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
void ReceiveRequestDialog::on_lnMessage_textChanged()
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
void ReceiveRequestDialog::updateDisplayUnit()
|
2012-06-24 18:28:05 +02:00
|
|
|
{
|
|
|
|
if (model)
|
|
|
|
{
|
|
|
|
// Update lnReqAmount with the current unit
|
|
|
|
ui->lnReqAmount->setDisplayUnit(model->getDisplayUnit());
|
|
|
|
}
|
|
|
|
}
|