BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
walletview.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_WALLETVIEW_H
6 #define BITCOIN_QT_WALLETVIEW_H
7 
8 #include <amount.h>
9 
10 #include <QStackedWidget>
11 
12 class BitcoinGUI;
13 class ClientModel;
14 class OverviewPage;
15 class PlatformStyle;
16 class ReceiveCoinsDialog;
17 class SendCoinsDialog;
18 class SendCoinsRecipient;
19 class TransactionView;
20 class WalletModel;
21 class AddressBookPage;
22 
23 QT_BEGIN_NAMESPACE
24 class QModelIndex;
25 class QProgressDialog;
26 QT_END_NAMESPACE
27 
28 /*
29  WalletView class. This class represents the view to a single wallet.
30  It was added to support multiple wallet functionality. Each wallet gets its own WalletView instance.
31  It communicates with both the client and the wallet models to give the user an up-to-date view of the
32  current core state.
33 */
34 class WalletView : public QStackedWidget
35 {
36  Q_OBJECT
37 
38 public:
39  explicit WalletView(const PlatformStyle *platformStyle, QWidget *parent);
40  ~WalletView();
41 
42  void setBitcoinGUI(BitcoinGUI *gui);
53 
54  bool handlePaymentRequest(const SendCoinsRecipient& recipient);
55 
56  void showOutOfSyncWarning(bool fShow);
57 
58 private:
61 
63  QWidget *transactionsPage;
68 
70 
71  QProgressDialog *progressDialog;
73 
74 public Q_SLOTS:
76  void gotoOverviewPage();
78  void gotoHistoryPage();
80  void gotoReceiveCoinsPage();
82  void gotoSendCoinsPage(QString addr = "");
83 
85  void gotoSignMessageTab(QString addr = "");
87  void gotoVerifyMessageTab(QString addr = "");
88 
93  void processNewTransaction(const QModelIndex& parent, int start, int /*end*/);
95  void encryptWallet(bool status);
97  void backupWallet();
99  void changePassphrase();
101  void unlockWallet();
102 
104  void usedSendingAddresses();
106  void usedReceivingAddresses();
107 
109  void updateEncryptionStatus();
110 
112  void showProgress(const QString &title, int nProgress);
113 
116 
117 Q_SIGNALS:
119  void showNormalIfMinimized();
121  void message(const QString &title, const QString &message, unsigned int style);
125  void hdEnabledStatusChanged();
127  void incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address, const QString& label, const QString& walletName);
130 };
131 
132 #endif // BITCOIN_QT_WALLETVIEW_H
QWidget * transactionsPage
Definition: walletview.h:63
Dialog for requesting payment of bitcoins.
void gotoVerifyMessageTab(QString addr="")
Show Sign/Verify Message dialog and switch to verify message tab.
Definition: walletview.cpp:213
OverviewPage * overviewPage
Definition: walletview.h:62
TransactionView * transactionView
Definition: walletview.h:69
void usedSendingAddresses()
Show used sending addresses.
Definition: walletview.cpp:290
auto start
Definition: rpcwallet.cpp:1067
void changePassphrase()
Change encrypted wallet passphrase.
Definition: walletview.cpp:270
ClientModel * clientModel
Definition: walletview.h:59
void requestedSyncWarningInfo()
User has requested more information about the out of sync state.
Definition: walletview.cpp:338
WalletModel * walletModel
Definition: walletview.h:60
void outOfSyncWarningClicked()
Notify that the out of sync warning icon has been pressed.
Bitcoin GUI main class.
Definition: bitcoingui.h:59
const PlatformStyle * platformStyle
Definition: walletview.h:72
void gotoSendCoinsPage(QString addr="")
Switch to send coins page.
Definition: walletview.cpp:193
void updateEncryptionStatus()
Re-emit encryption status signal.
Definition: walletview.cpp:235
void processNewTransaction(const QModelIndex &parent, int start, int)
Show incoming transaction notification for new transactions.
Definition: walletview.cpp:158
SendCoinsDialog * sendCoinsPage
Definition: walletview.h:65
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
WalletModel * getWalletModel()
Definition: walletview.h:47
void gotoHistoryPage()
Switch to history (transactions) page.
Definition: walletview.cpp:183
void setBitcoinGUI(BitcoinGUI *gui)
Definition: walletview.cpp:89
void usedReceivingAddresses()
Show used receiving addresses.
Definition: walletview.cpp:300
void setWalletModel(WalletModel *walletModel)
Set the wallet model.
Definition: walletview.cpp:123
Widget showing the transaction list for a wallet, including a filter row.
void message(const QString &title, const QString &message, unsigned int style)
Fired when a message should be reported to the user.
void unlockWallet()
Ask for passphrase to unlock wallet temporarily.
Definition: walletview.cpp:277
Dialog for sending bitcoins.
Widget that shows a list of sending or receiving addresses.
Model for Bitcoin network client.
Definition: clientmodel.h:44
void showNormalIfMinimized()
Signal that we want to show the main window.
void backupWallet()
Backup the wallet.
Definition: walletview.cpp:251
bool handlePaymentRequest(const SendCoinsRecipient &recipient)
Definition: walletview.cpp:225
void gotoOverviewPage()
Switch to overview (home) page.
Definition: walletview.cpp:178
void encryptionStatusChanged()
Encryption status of wallet changed.
AddressBookPage * usedSendingAddressesPage
Definition: walletview.h:66
void gotoSignMessageTab(QString addr="")
Show Sign/Verify Message dialog and switch to sign message tab.
Definition: walletview.cpp:201
Interface to Bitcoin wallet from Qt view code.
Definition: walletmodel.h:125
void showProgress(const QString &title, int nProgress)
Show progress dialog e.g.
Definition: walletview.cpp:310
WalletView(const PlatformStyle *platformStyle, QWidget *parent)
Definition: walletview.cpp:33
void setClientModel(ClientModel *clientModel)
Set the client model.
Definition: walletview.cpp:115
void hdEnabledStatusChanged()
HD-Enabled status of wallet changed (only possible during startup)
void encryptWallet(bool status)
Encrypt the wallet.
Definition: walletview.cpp:240
ReceiveCoinsDialog * receiveCoinsPage
Definition: walletview.h:64
void gotoReceiveCoinsPage()
Switch to receive coins page.
Definition: walletview.cpp:188
Overview ("home") page widget.
Definition: overviewpage.h:28
void showOutOfSyncWarning(bool fShow)
Definition: walletview.cpp:230
void incomingTransaction(const QString &date, int unit, const CAmount &amount, const QString &type, const QString &address, const QString &label, const QString &walletName)
Notify that a new transaction appeared.
QProgressDialog * progressDialog
Definition: walletview.h:71
AddressBookPage * usedReceivingAddressesPage
Definition: walletview.h:67