You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
61 lines
1.2 KiB
// Copyright (c) 2011-2013 The Bitcoin developers |
|
// Distributed under the MIT/X11 software license, see the accompanying |
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
|
#ifndef QRCODEDIALOG_H |
|
#define QRCODEDIALOG_H |
|
|
|
#include "walletmodel.h" |
|
|
|
#include <QDialog> |
|
#include <QImage> |
|
#include <QLabel> |
|
|
|
namespace Ui { |
|
class ReceiveRequestDialog; |
|
} |
|
class OptionsModel; |
|
|
|
/* Label widget for QR code. This image can be dragged, dropped, copied and saved |
|
* to disk. |
|
*/ |
|
class QRImageWidget : public QLabel |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit QRImageWidget(QWidget *parent = 0); |
|
QImage exportImage(); |
|
|
|
public slots: |
|
void saveImage(); |
|
void copyImage(); |
|
|
|
protected: |
|
virtual void mousePressEvent(QMouseEvent *event); |
|
}; |
|
|
|
class ReceiveRequestDialog : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit ReceiveRequestDialog(QWidget *parent = 0); |
|
~ReceiveRequestDialog(); |
|
|
|
void setModel(OptionsModel *model); |
|
void setInfo(const SendCoinsRecipient &info); |
|
|
|
private slots: |
|
void on_btnCopyURI_clicked(); |
|
void on_btnCopyAddress_clicked(); |
|
|
|
void update(); |
|
|
|
private: |
|
Ui::ReceiveRequestDialog *ui; |
|
OptionsModel *model; |
|
SendCoinsRecipient info; |
|
}; |
|
|
|
#endif // QRCODEDIALOG_H
|
|
|