2011-11-10 15:20:17 +01:00
|
|
|
#include "qrcodedialog.h"
|
|
|
|
#include "ui_qrcodedialog.h"
|
2012-02-15 14:47:08 +01:00
|
|
|
#include "guiutil.h"
|
|
|
|
|
2011-11-10 15:20:17 +01:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include <qrencode.h>
|
|
|
|
|
2012-04-11 14:21:15 +02:00
|
|
|
#define EXPORT_IMAGE_SIZE 256
|
2011-11-10 15:20:17 +01:00
|
|
|
|
2012-04-11 23:05:22 +02:00
|
|
|
QRCodeDialog::QRCodeDialog(const QString &addr, const QString &label, bool enableReq, QWidget *parent) :
|
|
|
|
QDialog(parent), ui(new Ui::QRCodeDialog), address(addr)
|
2011-11-10 15:20:17 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2012-04-11 23:05:22 +02:00
|
|
|
setWindowTitle(QString("%1").arg(address));
|
2011-11-10 15:20:17 +01:00
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
|
2012-04-11 23:05:22 +02:00
|
|
|
ui->chkReqPayment->setVisible(enableReq);
|
2011-11-10 15:20:17 +01:00
|
|
|
ui->lnReqAmount->setVisible(enableReq);
|
2012-04-11 23:05:22 +02:00
|
|
|
ui->lblAmount->setVisible(enableReq);
|
|
|
|
ui->lblBTC->setVisible(enableReq);
|
2011-11-10 15:20:17 +01:00
|
|
|
|
2012-04-11 23:05:22 +02:00
|
|
|
ui->lnLabel->setText(label);
|
2011-11-10 15:20:17 +01:00
|
|
|
|
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
QRCodeDialog::~QRCodeDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2012-02-15 13:14:16 +01:00
|
|
|
void QRCodeDialog::genCode()
|
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
QString uri = getURI();
|
|
|
|
QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1);
|
|
|
|
myImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32);
|
|
|
|
myImage.fill(0xffffff);
|
|
|
|
unsigned char *p = code->data;
|
2012-04-11 14:21:15 +02:00
|
|
|
for (int y = 0; y < code->width; y++)
|
|
|
|
{
|
|
|
|
for (int x = 0; x < code->width; x++)
|
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
myImage.setPixel(x + 4, y + 4, ((*p & 1) ? 0x0 : 0xffffff));
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QRcode_free(code);
|
|
|
|
ui->lblQRCode->setPixmap(QPixmap::fromImage(myImage).scaled(300, 300));
|
|
|
|
}
|
|
|
|
|
2012-02-15 13:14:16 +01:00
|
|
|
QString QRCodeDialog::getURI()
|
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
QString ret = QString("bitcoin:%1").arg(address);
|
|
|
|
|
|
|
|
int paramCount = 0;
|
2012-04-11 23:05:22 +02:00
|
|
|
if (ui->chkReqPayment->isChecked() && !ui->lnReqAmount->text().isEmpty())
|
2012-04-11 14:21:15 +02:00
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
ui->lnReqAmount->text().toDouble(&ok);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret += QString("?amount=%1").arg(ui->lnReqAmount->text());
|
2011-11-10 15:20:17 +01:00
|
|
|
paramCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-04-11 23:05:22 +02:00
|
|
|
void QRCodeDialog::on_lnReqAmount_textChanged(const QString &arg1)
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
2012-04-11 23:05:22 +02:00
|
|
|
void QRCodeDialog::on_lnLabel_textChanged(const QString &arg1)
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
2012-04-11 23:05:22 +02:00
|
|
|
void QRCodeDialog::on_lnMessage_textChanged(const QString &arg1)
|
2012-02-15 13:14:16 +01:00
|
|
|
{
|
2011-11-10 15:20:17 +01:00
|
|
|
genCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QRCodeDialog::on_btnSaveAs_clicked()
|
|
|
|
{
|
2012-02-15 14:47:08 +01:00
|
|
|
QString fn = GUIUtil::getSaveFileName(this, tr("Save Image..."), QString(), tr("PNG Images (*.png)"));
|
2012-04-11 14:21:15 +02:00
|
|
|
if (!fn.isEmpty())
|
2011-11-10 15:20:17 +01:00
|
|
|
myImage.scaled(EXPORT_IMAGE_SIZE, EXPORT_IMAGE_SIZE).save(fn);
|
|
|
|
}
|
|
|
|
|
2012-04-11 23:05:22 +02:00
|
|
|
void QRCodeDialog::on_chkReqPayment_toggled(bool)
|
2011-11-10 15:20:17 +01:00
|
|
|
{
|
|
|
|
genCode();
|
|
|
|
}
|