Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
receiverequestdialog.h
Go to the documentation of this file.
1// Copyright (c) 2011-2016 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
9
10#include <QDialog>
11
12class WalletModel;
13
14namespace Ui {
16}
17
18class ReceiveRequestDialog : public QDialog {
20
21public:
22 explicit ReceiveRequestDialog(QWidget *parent = nullptr);
24
26 void setInfo(const SendCoinsRecipient &info);
27
28private Q_SLOTS:
31 void updateDisplayUnit();
32
33private:
34 Ui::ReceiveRequestDialog *ui;
37};
38
39#endif // BITCOIN_QT_RECEIVEREQUESTDIALOG_H
void setModel(WalletModel *model)
Ui::ReceiveRequestDialog * ui
void setInfo(const SendCoinsRecipient &info)
SendCoinsRecipient info
Interface to Bitcoin wallet from Qt view code.
Definition walletmodel.h:47
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85