aboutsummaryrefslogtreecommitdiff
path: root/src/qt/qrcodedialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/qrcodedialog.h')
-rw-r--r--src/qt/qrcodedialog.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/qt/qrcodedialog.h b/src/qt/qrcodedialog.h
new file mode 100644
index 0000000000..7463a8810e
--- /dev/null
+++ b/src/qt/qrcodedialog.h
@@ -0,0 +1,37 @@
+#ifndef QRCODEDIALOG_H
+#define QRCODEDIALOG_H
+
+#include <QDialog>
+#include <QImage>
+
+namespace Ui {
+ class QRCodeDialog;
+}
+
+class QRCodeDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit QRCodeDialog(const QString &title, const QString &address, const QString &label, bool allowReq, QWidget *parent = 0);
+ ~QRCodeDialog();
+
+private slots:
+ void on_lnReqAmount_textChanged(const QString &arg1);
+ void on_lnLabel_textChanged(const QString &arg1);
+ void on_lnMessage_textChanged(const QString &arg1);
+ void on_btnSaveAs_clicked();
+
+ void on_chkReq_toggled(bool checked);
+
+private:
+ Ui::QRCodeDialog *ui;
+ QImage myImage;
+
+ QString getURI();
+ QString address;
+
+ void genCode();
+};
+
+#endif // QRCODEDIALOG_H