mirror of
https://github.com/dashpay/dash.git
synced 2024-12-30 22:35:51 +01:00
ae506bae66
* qt|wallet|privatesend: Rename PrivateSend to CoinJoin in GUI strings * qt: Move CoinJoin next to Transactions * qt: Adjust status tip of privateSendCoinsMenuAction Co-authored-by: thephez <thephez@users.noreply.github.com> * rename: privateSend -> coinJoin * rename: privatesend -> coinjoin * rename: PrivateSend -> CoinJoin * rename: use_ps -> use_cj * rename: PRIVATESEND -> COINJOIN * rename: privatesend -> coinjoin for files and folders * refactor: Re-order coinjoin files in cmake/make files * refactor: Re-order coinjoin includes where it makes sense * test: Update lint-circular-dependencies.sh * Few cleanups * test: test/coinjoin_tests.cpp -> wallet/test/coinjoin_test.cpp * s/AdvancedPSUI/AdvancedCJUI/g * s/privateSentAmountChanged/coinJoinAmountChanged/g * wallet: Rename "ps_salt" backwards compatible * Minimal PrivateSend -> CoinJoin migration for settings and cmd-line * wallet: Fix privatesendrounds -> coinjoinrounds migration * qt: Migrate nPrivateSendAmount -> nCoinJoinAmount * `-coinjoindenoms` never existed * Migrate all PS options/settings * rpc: Formatting only * qt: Make Send/CoinJoin tabs a bit more distinguishable Co-authored-by: thephez <thephez@users.noreply.github.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
145 lines
4.8 KiB
C++
145 lines
4.8 KiB
C++
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_WALLETVIEW_H
|
|
#define BITCOIN_QT_WALLETVIEW_H
|
|
|
|
#include <amount.h>
|
|
#include <qt/masternodelist.h>
|
|
|
|
#include <QStackedWidget>
|
|
|
|
class BitcoinGUI;
|
|
class ClientModel;
|
|
class OverviewPage;
|
|
class ReceiveCoinsDialog;
|
|
class SendCoinsDialog;
|
|
class SendCoinsRecipient;
|
|
class TransactionView;
|
|
class WalletModel;
|
|
class AddressBookPage;
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QLabel;
|
|
class QModelIndex;
|
|
class QProgressDialog;
|
|
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
|
|
|
|
public:
|
|
explicit WalletView(QWidget* parent);
|
|
~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);
|
|
WalletModel *getWalletModel() { return walletModel; }
|
|
/** 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);
|
|
|
|
bool handlePaymentRequest(const SendCoinsRecipient& recipient);
|
|
|
|
void showOutOfSyncWarning(bool fShow);
|
|
|
|
private:
|
|
ClientModel *clientModel;
|
|
WalletModel *walletModel;
|
|
|
|
OverviewPage *overviewPage;
|
|
QWidget *transactionsPage;
|
|
ReceiveCoinsDialog *receiveCoinsPage;
|
|
SendCoinsDialog *sendCoinsPage;
|
|
SendCoinsDialog* coinJoinCoinsPage;
|
|
AddressBookPage *usedSendingAddressesPage;
|
|
AddressBookPage *usedReceivingAddressesPage;
|
|
MasternodeList *masternodeListPage;
|
|
|
|
TransactionView *transactionView;
|
|
|
|
QProgressDialog *progressDialog;
|
|
QLabel *transactionSum;
|
|
|
|
public Q_SLOTS:
|
|
/** Switch to overview (home) page */
|
|
void gotoOverviewPage();
|
|
/** Switch to history (transactions) page */
|
|
void gotoHistoryPage();
|
|
/** Switch to masternode page */
|
|
void gotoMasternodePage();
|
|
/** Switch to receive coins page */
|
|
void gotoReceiveCoinsPage();
|
|
/** Switch to send coins page */
|
|
void gotoSendCoinsPage(QString addr = "");
|
|
/** Switch to CoinJoin coins page */
|
|
void gotoCoinJoinCoinsPage(QString addr = "");
|
|
|
|
/** 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.
|
|
*/
|
|
void processNewTransaction(const QModelIndex& parent, int start, int /*end*/);
|
|
/** Encrypt the wallet */
|
|
void encryptWallet();
|
|
/** Backup the wallet */
|
|
void backupWallet();
|
|
/** Change encrypted wallet passphrase */
|
|
void changePassphrase();
|
|
/** Ask for passphrase to unlock wallet temporarily */
|
|
void unlockWallet(bool fAnonymizeOnly=false);
|
|
/** Lock wallet */
|
|
void lockWallet();
|
|
|
|
/** Show used sending addresses */
|
|
void usedSendingAddresses();
|
|
/** Show used receiving addresses */
|
|
void usedReceivingAddresses();
|
|
|
|
/** Re-emit encryption status signal */
|
|
void updateEncryptionStatus();
|
|
|
|
/** Show progress dialog e.g. for rescan */
|
|
void showProgress(const QString &title, int nProgress);
|
|
|
|
/** User has requested more information about the out of sync state */
|
|
void requestedSyncWarningInfo();
|
|
|
|
|
|
/** Update selected DASH amount from transactionview */
|
|
void trxAmount(QString amount);
|
|
Q_SIGNALS:
|
|
/** Signal that we want to show the main window */
|
|
void showNormalIfMinimized();
|
|
/** Fired when a message should be reported to the user */
|
|
void message(const QString &title, const QString &message, unsigned int style);
|
|
/** Encryption status of wallet changed */
|
|
void encryptionStatusChanged();
|
|
/** HD-Enabled status of wallet changed (only possible during startup) */
|
|
void hdEnabledStatusChanged();
|
|
/** Notify that a new transaction appeared */
|
|
void incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address, const QString& label, const QString& walletName);
|
|
/** Notify that the out of sync warning icon has been pressed */
|
|
void outOfSyncWarningClicked();
|
|
};
|
|
|
|
#endif // BITCOIN_QT_WALLETVIEW_H
|