Bitcoin
receiverequestdialog.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2018 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_QT_RECEIVEREQUESTDIALOG_H
6 #define BITCOIN_QT_RECEIVEREQUESTDIALOG_H
7 
8 #include <qt/walletmodel.h>
9 
10 #include <QDialog>
11 
12 namespace Ui {
14 }
15 
16 class ReceiveRequestDialog : public QDialog
17 {
18  Q_OBJECT
19 
20 public:
21  explicit ReceiveRequestDialog(QWidget *parent = nullptr);
23 
24  void setModel(WalletModel *model);
25  void setInfo(const SendCoinsRecipient &info);
26 
27 private Q_SLOTS:
28  void on_btnCopyURI_clicked();
30 
31  void update();
32 
33 private:
37 };
38 
39 #endif // BITCOIN_QT_RECEIVEREQUESTDIALOG_H
~ReceiveRequestDialog()
Definition: receiverequestdialog.cpp:34
Definition: walletmodel.h:125
Ui::ReceiveRequestDialog * ui
Definition: receiverequestdialog.h:34
void setInfo(const SendCoinsRecipient &info)
Definition: receiverequestdialog.cpp:50
Definition: addressbookpage.h:14
ReceiveRequestDialog(QWidget *parent=nullptr)
Definition: receiverequestdialog.cpp:19
SendCoinsRecipient info
Definition: receiverequestdialog.h:36
void setModel(WalletModel *model)
Definition: receiverequestdialog.cpp:39
WalletModel * model
Definition: receiverequestdialog.h:35
Definition: ui_receiverequestdialog.h:129
Definition: receiverequestdialog.h:16
void on_btnCopyAddress_clicked()
Definition: receiverequestdialog.cpp:94
void update()
Definition: receiverequestdialog.cpp:56
Definition: walletmodel.h:54
void on_btnCopyURI_clicked()
Definition: receiverequestdialog.cpp:89