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.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/qt/qrcodedialog.h b/src/qt/qrcodedialog.h
deleted file mode 100644
index c55c34bce6..0000000000
--- a/src/qt/qrcodedialog.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef QRCODEDIALOG_H
-#define QRCODEDIALOG_H
-
-#include <QDialog>
-#include <QImage>
-
-namespace Ui {
- class QRCodeDialog;
-}
-class OptionsModel;
-
-class QRCodeDialog : public QDialog
-{
- Q_OBJECT
-
-public:
- explicit QRCodeDialog(const QString &addr, const QString &label, bool enableReq, QWidget *parent = 0);
- ~QRCodeDialog();
-
- void setModel(OptionsModel *model);
-
-private slots:
- void on_lnReqAmount_textChanged();
- void on_lnLabel_textChanged();
- void on_lnMessage_textChanged();
- void on_btnSaveAs_clicked();
- void on_chkReqPayment_toggled(bool fChecked);
-
- void updateDisplayUnit();
-
-private:
- Ui::QRCodeDialog *ui;
- OptionsModel *model;
- QString address;
- QImage myImage;
-
- void genCode();
- QString getURI();
-};
-
-#endif // QRCODEDIALOG_H