8fdb7e108f
This adds a field labelled 'Immature' in the overview section under the 'unconfirmed' field, which shows mined income that has not yet matured (which is currently not displayed anywhere, even though the transactions exist in the transaction list). To do that I added a 'GetImmatureBalance' method to the wallet, and connected that through to the GUI as per the 'GetBalance' and 'GetUnconfirmedBalance' methods. I did a small 'no-op' change to make the code in adjacent functions a little more readable (imo); it was a change I had made in my repo earlier...but I thought it wouldn't hurt so left it in. Immature balance comes from mined income that is at least two blocks deep in the chain (same logic as displayed transactions). My reasoning is: - as a miner, it's a critical stat I want to see - as a miner, and taking into account the label 'immature', the uncertainty is pretty clearly implied - those numbers are already displayed in the transaction list - this makes the overview numbers add up to what's in the transaction list - it's not displayed if the immature balance is 0, so won't bother non-miners I also 'cleaned' the overview UI a little, moving code to the XML and removing HTML.
52 lines
1.0 KiB
C++
52 lines
1.0 KiB
C++
#ifndef OVERVIEWPAGE_H
|
|
#define OVERVIEWPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QModelIndex;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Ui {
|
|
class OverviewPage;
|
|
}
|
|
class WalletModel;
|
|
class TxViewDelegate;
|
|
class TransactionFilterProxy;
|
|
|
|
/** Overview ("home") page widget */
|
|
class OverviewPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OverviewPage(QWidget *parent = 0);
|
|
~OverviewPage();
|
|
|
|
void setModel(WalletModel *model);
|
|
void showOutOfSyncWarning(bool fShow);
|
|
|
|
public slots:
|
|
void setBalance(qint64 balance, qint64 unconfirmedBalance, qint64 immatureBalance);
|
|
void setNumTransactions(int count);
|
|
|
|
signals:
|
|
void transactionClicked(const QModelIndex &index);
|
|
|
|
private:
|
|
Ui::OverviewPage *ui;
|
|
WalletModel *model;
|
|
qint64 currentBalance;
|
|
qint64 currentUnconfirmedBalance;
|
|
qint64 currentImmatureBalance;
|
|
|
|
TxViewDelegate *txdelegate;
|
|
TransactionFilterProxy *filter;
|
|
|
|
private slots:
|
|
void displayUnitChanged();
|
|
void handleTransactionClicked(const QModelIndex &index);
|
|
};
|
|
|
|
#endif // OVERVIEWPAGE_H
|