Skip to content

Commit

Permalink
add a head file
Browse files Browse the repository at this point in the history
  • Loading branch information
cqtenq committed Dec 8, 2014
1 parent 61959ab commit fe4e5fc
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/qt/qrcodedialog.h
@@ -0,0 +1,41 @@
#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

0 comments on commit fe4e5fc

Please sign in to comment.