Raven Core  3.0.0
P2P Digital Currency
walletmodeltransaction.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2014 The Bitcoin Core developers
2 // Copyright (c) 2017-2019 The Raven Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef RAVEN_QT_WALLETMODELTRANSACTION_H
7 #define RAVEN_QT_WALLETMODELTRANSACTION_H
8 
9 #include "walletmodel.h"
10 
11 #include <QObject>
12 
13 class SendCoinsRecipient;
15 
16 class CReserveKey;
17 class CWallet;
18 class CWalletTx;
19 
22 {
23 public:
24  explicit WalletModelTransaction(const QList<SendCoinsRecipient> &recipients);
26 
27  QList<SendCoinsRecipient> getRecipients() const;
28 
29  CWalletTx *getTransaction() const;
30  unsigned int getTransactionSize();
31 
32  void setTransactionFee(const CAmount& newFee);
33  CAmount getTransactionFee() const;
34 
36 
37  void newPossibleKeyChange(CWallet *wallet);
39 
40  void reassignAmounts(int nChangePosRet); // needed for the subtract-fee-from-amount feature
41 
42 private:
43  QList<SendCoinsRecipient> recipients;
47 };
48 
49 #endif // RAVEN_QT_WALLETMODELTRANSACTION_H
CWalletTx * getTransaction() const
QList< SendCoinsRecipient > getRecipients() const
void newPossibleKeyChange(CWallet *wallet)
void setTransactionFee(const CAmount &newFee)
int64_t CAmount
Amount in corbies (Can be negative)
Definition: amount.h:13
WalletModelTransaction(const QList< SendCoinsRecipient > &recipients)
void reassignAmounts(int nChangePosRet)
A transaction with a bunch of additional info that only the owner cares about.
Definition: wallet.h:285
A key allocated from the key pool.
Definition: wallet.h:1193
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:673
Data model for a walletmodel transaction.
CAmount getTotalTransactionAmount() const
QList< SendCoinsRecipient > recipients