lbrycrd/src/qt/receiverequestdialog.cpp

167 lines
4.1 KiB
C++
Raw Normal View History

2013-10-16 15:14:26 +02:00
#include "receiverequestdialog.h"
#include "ui_receiverequestdialog.h"
#include "bitcoinunits.h"
#include "guiconstants.h"
#include "guiutil.h"
#include "optionsmodel.h"
#include <QPixmap>
#if QT_VERSION < 0x050000
#include <QUrl>
#endif
2013-10-16 15:14:26 +02:00
#include "bitcoin-config.h" /* for USE_QRCODE */
#ifdef USE_QRCODE
#include <qrencode.h>
2013-10-16 15:14:26 +02:00
#endif
2013-10-16 15:14:26 +02:00
ReceiveRequestDialog::ReceiveRequestDialog(const QString &addr, const QString &label, quint64 amount, const QString &message, QWidget *parent) :
QDialog(parent),
2013-10-16 15:14:26 +02:00
ui(new Ui::ReceiveRequestDialog),
model(0),
address(addr)
{
ui->setupUi(this);
2013-10-16 15:14:26 +02:00
QString target = label;
if(target.isEmpty())
target = addr;
setWindowTitle(tr("Request payment to %1").arg(target));
2013-10-16 15:14:26 +02:00
ui->lnAddress->setText(addr);
if(amount)
ui->lnReqAmount->setValue(amount);
ui->lnReqAmount->setReadOnly(true);
ui->lnLabel->setText(label);
2013-10-16 15:14:26 +02:00
ui->lnMessage->setText(message);
2013-10-16 15:14:26 +02:00
#ifndef USE_QRCODE
ui->btnSaveAs->setVisible(false);
ui->lblQRCode->setVisible(false);
#endif
genCode();
}
2013-10-16 15:14:26 +02:00
ReceiveRequestDialog::~ReceiveRequestDialog()
{
delete ui;
}
2013-10-16 15:14:26 +02:00
void ReceiveRequestDialog::setModel(OptionsModel *model)
{
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
{
QString uri = getURI();
2013-10-16 15:14:26 +02:00
ui->btnSaveAs->setEnabled(false);
ui->outUri->setPlainText(uri);
#ifdef USE_QRCODE
if (uri != "")
{
ui->lblQRCode->setText("");
QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1);
if (!code)
{
ui->lblQRCode->setText(tr("Error encoding URI into QR Code."));
return;
}
myImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32);
myImage.fill(0xffffff);
unsigned char *p = code->data;
for (int y = 0; y < code->width; y++)
{
for (int x = 0; x < code->width; x++)
{
myImage.setPixel(x + 4, y + 4, ((*p & 1) ? 0x0 : 0xffffff));
p++;
}
}
QRcode_free(code);
ui->lblQRCode->setPixmap(QPixmap::fromImage(myImage).scaled(300, 300));
2013-10-16 15:14:26 +02:00
ui->btnSaveAs->setEnabled(true);
}
2013-10-16 15:14:26 +02:00
#endif
}
2013-10-16 15:14:26 +02:00
QString ReceiveRequestDialog::getURI()
2012-02-15 13:14:16 +01:00
{
QString ret = QString("bitcoin:%1").arg(address);
int paramCount = 0;
2013-10-16 15:14:26 +02:00
if (ui->lnReqAmount->validate())
{
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++;
}
if (!ui->lnLabel->text().isEmpty())
{
QString lbl(QUrl::toPercentEncoding(ui->lnLabel->text()));
ret += QString("%1label=%2").arg(paramCount == 0 ? "?" : "&").arg(lbl);
paramCount++;
}
if (!ui->lnMessage->text().isEmpty())
{
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
if (ret.length() > MAX_URI_LENGTH)
{
ui->lblQRCode->setText(tr("Resulting URI too long, try to reduce the text for label / message."));
return QString("");
}
return ret;
}
2013-10-16 15:14:26 +02:00
void ReceiveRequestDialog::on_lnReqAmount_textChanged()
2012-02-15 13:14:16 +01:00
{
genCode();
}
2013-10-16 15:14:26 +02:00
void ReceiveRequestDialog::on_lnLabel_textChanged()
2012-02-15 13:14:16 +01:00
{
genCode();
}
2013-10-16 15:14:26 +02:00
void ReceiveRequestDialog::on_lnMessage_textChanged()
2012-02-15 13:14:16 +01:00
{
genCode();
}
2013-10-16 15:14:26 +02:00
void ReceiveRequestDialog::on_btnSaveAs_clicked()
{
2013-10-16 15:14:26 +02:00
#ifdef USE_QRCODE
QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Images (*.png)"));
if (!fn.isEmpty())
myImage.scaled(EXPORT_IMAGE_SIZE, EXPORT_IMAGE_SIZE).save(fn);
2013-10-16 15:14:26 +02:00
#endif
}
2013-10-16 15:14:26 +02:00
void ReceiveRequestDialog::updateDisplayUnit()
{
if (model)
{
// Update lnReqAmount with the current unit
ui->lnReqAmount->setDisplayUnit(model->getDisplayUnit());
}
}