2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
#ifndef WALLETVIEW_H
|
|
|
|
#define WALLETVIEW_H
|
|
|
|
|
|
|
|
#include <QStackedWidget>
|
|
|
|
|
|
|
|
class BitcoinGUI;
|
|
|
|
class ClientModel;
|
|
|
|
class OverviewPage;
|
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;
|
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:
|
2013-10-18 18:05:26 +02:00
|
|
|
explicit WalletView(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;
|
|
|
|
|
|
|
|
TransactionView *transactionView;
|
|
|
|
|
2014-03-19 00:26:14 +01:00
|
|
|
QProgressDialog *progressDialog;
|
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
public slots:
|
|
|
|
/** 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);
|
|
|
|
|
2013-08-02 13:53:03 +02:00
|
|
|
signals:
|
|
|
|
/** 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);
|
|
|
|
/** Notify that a new transaction appeared */
|
|
|
|
void incomingTransaction(const QString& date, int unit, qint64 amount, const QString& type, const QString& address);
|
2013-03-22 18:32:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // WALLETVIEW_H
|