BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
walletframe.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2017 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_WALLETFRAME_H
6 #define BITCOIN_QT_WALLETFRAME_H
7 
8 #include <QFrame>
9 #include <QMap>
10 
11 class BitcoinGUI;
12 class ClientModel;
13 class PlatformStyle;
14 class SendCoinsRecipient;
15 class WalletModel;
16 class WalletView;
17 
18 QT_BEGIN_NAMESPACE
19 class QStackedWidget;
20 QT_END_NAMESPACE
21 
29 class WalletFrame : public QFrame
30 {
31  Q_OBJECT
32 
33 public:
34  explicit WalletFrame(const PlatformStyle *platformStyle, BitcoinGUI *_gui = 0);
35  ~WalletFrame();
36 
38 
39  bool addWallet(WalletModel *walletModel);
40  bool setCurrentWallet(const QString& name);
41  bool removeWallet(const QString &name);
42  void removeAllWallets();
43 
44  bool handlePaymentRequest(const SendCoinsRecipient& recipient);
45 
46  void showOutOfSyncWarning(bool fShow);
47 
48 Q_SIGNALS:
51 
52 private:
53  QStackedWidget *walletStack;
56  QMap<QString, WalletView*> mapWalletViews;
57 
58  bool bOutOfSync;
59 
61 
62 public:
64 
65 public Q_SLOTS:
67  void gotoOverviewPage();
69  void gotoHistoryPage();
71  void gotoReceiveCoinsPage();
73  void gotoSendCoinsPage(QString addr = "");
74 
76  void gotoSignMessageTab(QString addr = "");
78  void gotoVerifyMessageTab(QString addr = "");
79 
81  void encryptWallet(bool status);
83  void backupWallet();
85  void changePassphrase();
87  void unlockWallet();
88 
90  void usedSendingAddresses();
95 };
96 
97 #endif // BITCOIN_QT_WALLETFRAME_H
bool handlePaymentRequest(const SendCoinsRecipient &recipient)
bool setCurrentWallet(const QString &name)
Definition: walletframe.cpp:80
bool bOutOfSync
Definition: walletframe.h:58
WalletView * currentWalletView()
ClientModel * clientModel
Definition: walletframe.h:55
void usedReceivingAddresses()
Show used receiving addresses.
QStackedWidget * walletStack
Definition: walletframe.h:53
WalletFrame(const PlatformStyle *platformStyle, BitcoinGUI *_gui=0)
Definition: walletframe.cpp:17
void encryptWallet(bool status)
Encrypt the wallet.
Bitcoin GUI main class.
Definition: bitcoingui.h:59
void outOfSyncWarningClicked()
Pass on signal over requested out-of-sync-warning information.
QMap< QString, WalletView * > mapWalletViews
Definition: walletframe.h:56
void removeAllWallets()
void showOutOfSyncWarning(bool fShow)
void gotoHistoryPage()
Switch to history (transactions) page.
void gotoOverviewPage()
Switch to overview (home) page.
void setClientModel(ClientModel *clientModel)
Definition: walletframe.cpp:38
void gotoVerifyMessageTab(QString addr="")
Show Sign/Verify Message dialog and switch to verify message tab.
BitcoinGUI * gui
Definition: walletframe.h:54
const char * name
Definition: rest.cpp:37
void changePassphrase()
Change encrypted wallet passphrase.
Model for Bitcoin network client.
Definition: clientmodel.h:44
void unlockWallet()
Ask for passphrase to unlock wallet temporarily.
void gotoSignMessageTab(QString addr="")
Show Sign/Verify Message dialog and switch to sign message tab.
void requestedSyncWarningInfo()
Notify that the user has requested more information about the out-of-sync warning.
const PlatformStyle * platformStyle
Definition: walletframe.h:60
void gotoSendCoinsPage(QString addr="")
Switch to send coins page.
void gotoReceiveCoinsPage()
Switch to receive coins page.
Interface to Bitcoin wallet from Qt view code.
Definition: walletmodel.h:125
bool removeWallet(const QString &name)
Definition: walletframe.cpp:92
bool addWallet(WalletModel *walletModel)
Definition: walletframe.cpp:43
void backupWallet()
Backup the wallet.
A container for embedding all wallet-related controls into BitcoinGUI.
Definition: walletframe.h:29
void usedSendingAddresses()
Show used sending addresses.