8969828d06
- New status bar control shows the current Unit of Display. When clicked (left,or right button) it shows a context menu that allows the user to switch the current Unit of Display (BTC, mBTC, uBTC) - Recent Requests and Transaction Table headers are now updated when unit of display is changed, because their "Amount" column now displays the current unit of display. - Takes care of issue #3970 Units in transaction export csv file. - Small refactors for reusability. - Demo Video https://www.youtube.com/watch?v=wwcr0Yh68go&list=UUG3jF2hgofmLWP0tRPisQAQ - changes after Diapolo's feedback. Have not been able to build after last pool, issues with boost on MacOSX, will test on Ubuntu these changes. - removed return statement on switch - renamed onDisplayUnitsChanged(int) to updateDisplayUnit(int) - now getAmountColumnTitle(int unit) takes a simple unit parameter. moved to BitcoinUnits.
96 lines
3.1 KiB
C++
96 lines
3.1 KiB
C++
// 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.
|
|
|
|
#ifndef TRANSACTIONTABLEMODEL_H
|
|
#define TRANSACTIONTABLEMODEL_H
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QStringList>
|
|
|
|
class TransactionRecord;
|
|
class TransactionTablePriv;
|
|
class WalletModel;
|
|
|
|
class CWallet;
|
|
|
|
/** UI model for the transaction table of a wallet.
|
|
*/
|
|
class TransactionTableModel : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TransactionTableModel(CWallet* wallet, WalletModel *parent = 0);
|
|
~TransactionTableModel();
|
|
|
|
enum ColumnIndex {
|
|
Status = 0,
|
|
Date = 1,
|
|
Type = 2,
|
|
ToAddress = 3,
|
|
Amount = 4
|
|
};
|
|
|
|
/** Roles to get specific information from a transaction row.
|
|
These are independent of column.
|
|
*/
|
|
enum RoleIndex {
|
|
/** Type of transaction */
|
|
TypeRole = Qt::UserRole,
|
|
/** Date and time this transaction was created */
|
|
DateRole,
|
|
/** Long description (HTML format) */
|
|
LongDescriptionRole,
|
|
/** Address of transaction */
|
|
AddressRole,
|
|
/** Label of address related to transaction */
|
|
LabelRole,
|
|
/** Net amount of transaction */
|
|
AmountRole,
|
|
/** Unique identifier */
|
|
TxIDRole,
|
|
/** Transaction hash */
|
|
TxHashRole,
|
|
/** Is transaction confirmed? */
|
|
ConfirmedRole,
|
|
/** Formatted amount, without brackets when unconfirmed */
|
|
FormattedAmountRole,
|
|
/** Transaction status (TransactionRecord::Status) */
|
|
StatusRole
|
|
};
|
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
int columnCount(const QModelIndex &parent) const;
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const;
|
|
|
|
private:
|
|
CWallet* wallet;
|
|
WalletModel *walletModel;
|
|
QStringList columns;
|
|
TransactionTablePriv *priv;
|
|
|
|
QString lookupAddress(const std::string &address, bool tooltip) const;
|
|
QVariant addressColor(const TransactionRecord *wtx) const;
|
|
QString formatTxStatus(const TransactionRecord *wtx) const;
|
|
QString formatTxDate(const TransactionRecord *wtx) const;
|
|
QString formatTxType(const TransactionRecord *wtx) const;
|
|
QString formatTxToAddress(const TransactionRecord *wtx, bool tooltip) const;
|
|
QString formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed=true) const;
|
|
QString formatTooltip(const TransactionRecord *rec) const;
|
|
QVariant txStatusDecoration(const TransactionRecord *wtx) const;
|
|
QVariant txAddressDecoration(const TransactionRecord *wtx) const;
|
|
|
|
public slots:
|
|
void updateTransaction(const QString &hash, int status);
|
|
void updateConfirmations();
|
|
void updateDisplayUnit();
|
|
/** Updates the column title to "Amount (DisplayUnit)" and emits headerDataChanged() signal for table headers to react. */
|
|
void updateAmountColumnTitle();
|
|
|
|
friend class TransactionTablePriv;
|
|
};
|
|
|
|
#endif // TRANSACTIONTABLEMODEL_H
|