2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2011-2016 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_WALLETVIEW_H
|
|
|
|
#define BITCOIN_QT_WALLETVIEW_H
|
2013-03-22 18:32:49 +01:00
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
#include "amount.h"
|
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
#include <QStackedWidget>
|
|
|
|
|
|
|
|
class BitcoinGUI;
|
|
|
|
class ClientModel;
|
|
|
|
class OverviewPage;
|
2015-07-28 15:20:14 +02:00
|
|
|
class PlatformStyle;
|
2013-10-16 15:14:26 +02:00
|
|
|
class ReceiveCoinsDialog;
|
2013-04-13 07:13:08 +02:00
|
|
|
class SendCoinsDialog;
|
2013-07-22 08:50:39 +02:00
|
|
|
class SendCoinsRecipient;
|
2013-04-13 07:13:08 +02:00
|
|
|
class TransactionView;
|
|
|
|
class WalletModel;
|
2015-08-27 21:53:16 +02:00
|
|
|
class AddressBookPage;
|
2013-03-22 18:32:49 +01:00
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QModelIndex;
|
2014-03-19 00:26:14 +01:00
|
|
|
class QProgressDialog;
|
2013-03-22 18:32:49 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
/*
|
|
|
|
WalletView class. This class represents the view to a single wallet.
|
|
|
|
It was added to support multiple wallet functionality. Each wallet gets its own WalletView instance.
|
|
|
|
It communicates with both the client and the wallet models to give the user an up-to-date view of the
|
|
|
|
current core state.
|
|
|
|
*/
|
|
|
|
class WalletView : public QStackedWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-04-03 17:29:02 +02:00
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
public:
|
2015-07-28 15:20:14 +02:00
|
|
|
explicit WalletView(const PlatformStyle *platformStyle, QWidget *parent);
|
2013-03-22 18:32:49 +01:00
|
|
|
~WalletView();
|
|
|
|
|
|
|
|
void setBitcoinGUI(BitcoinGUI *gui);
|
|
|
|
/** Set the client model.
|
|
|
|
The client model represents the part of the core that communicates with the P2P network, and is wallet-agnostic.
|
|
|
|
*/
|
|
|
|
void setClientModel(ClientModel *clientModel);
|
|
|
|
/** Set the wallet model.
|
|
|
|
The wallet model represents a bitcoin wallet, and offers access to the list of transactions, address book and sending
|
|
|
|
functionality.
|
|
|
|
*/
|
|
|
|
void setWalletModel(WalletModel *walletModel);
|
2013-04-01 14:43:50 +02:00
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
bool handlePaymentRequest(const SendCoinsRecipient& recipient);
|
2013-04-01 14:43:50 +02:00
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
void showOutOfSyncWarning(bool fShow);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ClientModel *clientModel;
|
|
|
|
WalletModel *walletModel;
|
|
|
|
|
|
|
|
OverviewPage *overviewPage;
|
|
|
|
QWidget *transactionsPage;
|
2013-10-16 15:14:26 +02:00
|
|
|
ReceiveCoinsDialog *receiveCoinsPage;
|
2013-03-22 18:32:49 +01:00
|
|
|
SendCoinsDialog *sendCoinsPage;
|
2015-08-27 21:53:16 +02:00
|
|
|
AddressBookPage *usedSendingAddressesPage;
|
|
|
|
AddressBookPage *usedReceivingAddressesPage;
|
2013-03-22 18:32:49 +01:00
|
|
|
|
|
|
|
TransactionView *transactionView;
|
|
|
|
|
2014-03-19 00:26:14 +01:00
|
|
|
QProgressDialog *progressDialog;
|
2015-07-28 15:20:14 +02:00
|
|
|
const PlatformStyle *platformStyle;
|
2014-03-19 00:26:14 +01:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2013-03-22 18:32:49 +01:00
|
|
|
/** Switch to overview (home) page */
|
|
|
|
void gotoOverviewPage();
|
|
|
|
/** Switch to history (transactions) page */
|
|
|
|
void gotoHistoryPage();
|
|
|
|
/** Switch to receive coins page */
|
|
|
|
void gotoReceiveCoinsPage();
|
|
|
|
/** Switch to send coins page */
|
2013-04-01 14:43:50 +02:00
|
|
|
void gotoSendCoinsPage(QString addr = "");
|
2013-03-22 18:32:49 +01:00
|
|
|
|
|
|
|
/** Show Sign/Verify Message dialog and switch to sign message tab */
|
|
|
|
void gotoSignMessageTab(QString addr = "");
|
|
|
|
/** Show Sign/Verify Message dialog and switch to verify message tab */
|
|
|
|
void gotoVerifyMessageTab(QString addr = "");
|
|
|
|
|
|
|
|
/** Show incoming transaction notification for new transactions.
|
|
|
|
|
|
|
|
The new items are those between start and end inclusive, under the given parent item.
|
|
|
|
*/
|
2013-10-25 16:10:43 +02:00
|
|
|
void processNewTransaction(const QModelIndex& parent, int start, int /*end*/);
|
2013-03-22 18:32:49 +01:00
|
|
|
/** Encrypt the wallet */
|
|
|
|
void encryptWallet(bool status);
|
|
|
|
/** Backup the wallet */
|
|
|
|
void backupWallet();
|
|
|
|
/** Change encrypted wallet passphrase */
|
|
|
|
void changePassphrase();
|
|
|
|
/** Ask for passphrase to unlock wallet temporarily */
|
|
|
|
void unlockWallet();
|
2013-04-01 14:43:50 +02:00
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
/** Show used sending addresses */
|
|
|
|
void usedSendingAddresses();
|
|
|
|
/** Show used receiving addresses */
|
|
|
|
void usedReceivingAddresses();
|
|
|
|
|
2013-10-25 16:10:43 +02:00
|
|
|
/** Re-emit encryption status signal */
|
|
|
|
void updateEncryptionStatus();
|
2013-12-03 09:25:24 +01:00
|
|
|
|
2014-03-19 00:26:14 +01:00
|
|
|
/** Show progress dialog e.g. for rescan */
|
|
|
|
void showProgress(const QString &title, int nProgress);
|
|
|
|
|
2016-07-19 15:27:14 +02:00
|
|
|
/** User has requested more information about the out of sync state */
|
2016-09-21 10:29:57 +02:00
|
|
|
void requestedSyncWarningInfo();
|
2016-07-19 15:27:14 +02:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
Q_SIGNALS:
|
2013-08-02 13:53:03 +02:00
|
|
|
/** Signal that we want to show the main window */
|
|
|
|
void showNormalIfMinimized();
|
2013-10-24 15:49:13 +02:00
|
|
|
/** Fired when a message should be reported to the user */
|
|
|
|
void message(const QString &title, const QString &message, unsigned int style);
|
2013-10-25 16:10:43 +02:00
|
|
|
/** Encryption status of wallet changed */
|
|
|
|
void encryptionStatusChanged(int status);
|
2016-08-17 14:09:47 +02:00
|
|
|
/** HD-Enabled status of wallet changed (only possible during startup) */
|
|
|
|
void hdEnabledStatusChanged(int hdEnabled);
|
2013-10-25 16:10:43 +02:00
|
|
|
/** Notify that a new transaction appeared */
|
2015-02-26 21:57:08 +01:00
|
|
|
void incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address, const QString& label);
|
2016-07-19 15:27:14 +02:00
|
|
|
/** Notify that the out of sync warning icon has been pressed */
|
|
|
|
void outOfSyncWarningClicked();
|
2013-03-22 18:32:49 +01:00
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_WALLETVIEW_H
|