2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-07-05 22:09:39 +02:00
|
|
|
#include "overviewpage.h"
|
|
|
|
#include "ui_overviewpage.h"
|
|
|
|
|
2011-07-25 21:35:45 +02:00
|
|
|
#include "bitcoinunits.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "clientmodel.h"
|
|
|
|
#include "guiconstants.h"
|
|
|
|
#include "guiutil.h"
|
2011-07-29 14:36:35 +02:00
|
|
|
#include "optionsmodel.h"
|
2011-08-03 20:52:18 +02:00
|
|
|
#include "transactionfilterproxy.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "transactiontablemodel.h"
|
|
|
|
#include "walletmodel.h"
|
2011-07-29 14:36:35 +02:00
|
|
|
|
2011-08-03 21:28:11 +02:00
|
|
|
#include <QAbstractItemDelegate>
|
2011-08-03 20:52:18 +02:00
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
#define DECORATION_SIZE 64
|
2011-08-03 21:04:15 +02:00
|
|
|
#define NUM_ITEMS 3
|
|
|
|
|
2011-08-03 21:28:11 +02:00
|
|
|
class TxViewDelegate : public QAbstractItemDelegate
|
2011-08-03 20:52:18 +02:00
|
|
|
{
|
2011-09-19 12:40:23 +02:00
|
|
|
Q_OBJECT
|
2011-08-03 20:52:18 +02:00
|
|
|
public:
|
2011-08-03 21:28:11 +02:00
|
|
|
TxViewDelegate(): QAbstractItemDelegate(), unit(BitcoinUnits::BTC)
|
2011-08-03 20:52:18 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void paint(QPainter *painter, const QStyleOptionViewItem &option,
|
|
|
|
const QModelIndex &index ) const
|
|
|
|
{
|
|
|
|
painter->save();
|
|
|
|
|
|
|
|
QIcon icon = qvariant_cast<QIcon>(index.data(Qt::DecorationRole));
|
|
|
|
QRect mainRect = option.rect;
|
|
|
|
QRect decorationRect(mainRect.topLeft(), QSize(DECORATION_SIZE, DECORATION_SIZE));
|
|
|
|
int xspace = DECORATION_SIZE + 8;
|
|
|
|
int ypad = 6;
|
|
|
|
int halfheight = (mainRect.height() - 2*ypad)/2;
|
|
|
|
QRect amountRect(mainRect.left() + xspace, mainRect.top()+ypad, mainRect.width() - xspace, halfheight);
|
|
|
|
QRect addressRect(mainRect.left() + xspace, mainRect.top()+ypad+halfheight, mainRect.width() - xspace, halfheight);
|
|
|
|
icon.paint(painter, decorationRect);
|
|
|
|
|
|
|
|
QDateTime date = index.data(TransactionTableModel::DateRole).toDateTime();
|
|
|
|
QString address = index.data(Qt::DisplayRole).toString();
|
|
|
|
qint64 amount = index.data(TransactionTableModel::AmountRole).toLongLong();
|
|
|
|
bool confirmed = index.data(TransactionTableModel::ConfirmedRole).toBool();
|
|
|
|
QVariant value = index.data(Qt::ForegroundRole);
|
|
|
|
QColor foreground = option.palette.color(QPalette::Text);
|
2013-04-14 19:50:15 +02:00
|
|
|
if(value.canConvert<QBrush>())
|
2011-08-03 20:52:18 +02:00
|
|
|
{
|
2013-04-14 19:50:15 +02:00
|
|
|
QBrush brush = qvariant_cast<QBrush>(value);
|
|
|
|
foreground = brush.color();
|
2011-08-03 20:52:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
painter->setPen(foreground);
|
2014-08-10 02:26:04 +02:00
|
|
|
QRect boundingRect;
|
|
|
|
painter->drawText(addressRect, Qt::AlignLeft|Qt::AlignVCenter, address, &boundingRect);
|
|
|
|
|
|
|
|
if (index.data(TransactionTableModel::WatchonlyRole).toBool())
|
|
|
|
{
|
|
|
|
QIcon iconWatchonly = qvariant_cast<QIcon>(index.data(TransactionTableModel::WatchonlyDecorationRole));
|
|
|
|
QRect watchonlyRect(boundingRect.right() + 5, mainRect.top()+ypad+halfheight, 16, halfheight);
|
|
|
|
iconWatchonly.paint(painter, watchonlyRect);
|
|
|
|
}
|
2011-08-03 20:52:18 +02:00
|
|
|
|
|
|
|
if(amount < 0)
|
|
|
|
{
|
|
|
|
foreground = COLOR_NEGATIVE;
|
|
|
|
}
|
2011-08-03 21:04:15 +02:00
|
|
|
else if(!confirmed)
|
|
|
|
{
|
|
|
|
foreground = COLOR_UNCONFIRMED;
|
|
|
|
}
|
2011-08-03 20:52:18 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
foreground = option.palette.color(QPalette::Text);
|
|
|
|
}
|
|
|
|
painter->setPen(foreground);
|
2014-07-07 23:27:09 +02:00
|
|
|
QString amountText = BitcoinUnits::formatWithUnit(unit, amount, true, BitcoinUnits::separatorAlways);
|
2011-08-03 20:52:18 +02:00
|
|
|
if(!confirmed)
|
|
|
|
{
|
|
|
|
amountText = QString("[") + amountText + QString("]");
|
|
|
|
}
|
|
|
|
painter->drawText(amountRect, Qt::AlignRight|Qt::AlignVCenter, amountText);
|
|
|
|
|
|
|
|
painter->setPen(option.palette.color(QPalette::Text));
|
2011-08-08 17:38:17 +02:00
|
|
|
painter->drawText(amountRect, Qt::AlignLeft|Qt::AlignVCenter, GUIUtil::dateTimeStr(date));
|
2011-08-03 20:52:18 +02:00
|
|
|
|
|
|
|
painter->restore();
|
|
|
|
}
|
|
|
|
|
2011-08-03 21:28:11 +02:00
|
|
|
inline QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
return QSize(DECORATION_SIZE, DECORATION_SIZE);
|
|
|
|
}
|
|
|
|
|
2011-08-03 20:52:18 +02:00
|
|
|
int unit;
|
|
|
|
|
|
|
|
};
|
2011-09-19 12:40:23 +02:00
|
|
|
#include "overviewpage.moc"
|
2011-07-05 22:09:39 +02:00
|
|
|
|
|
|
|
OverviewPage::OverviewPage(QWidget *parent) :
|
|
|
|
QWidget(parent),
|
2011-07-29 14:36:35 +02:00
|
|
|
ui(new Ui::OverviewPage),
|
2012-10-24 21:47:07 +02:00
|
|
|
clientModel(0),
|
|
|
|
walletModel(0),
|
2011-07-29 14:36:35 +02:00
|
|
|
currentBalance(-1),
|
2011-08-03 20:52:18 +02:00
|
|
|
currentUnconfirmedBalance(-1),
|
2012-02-14 12:08:00 +01:00
|
|
|
currentImmatureBalance(-1),
|
2014-03-29 05:15:28 +01:00
|
|
|
currentWatchOnlyBalance(-1),
|
|
|
|
currentWatchUnconfBalance(-1),
|
|
|
|
currentWatchImmatureBalance(-1),
|
2012-02-14 12:08:00 +01:00
|
|
|
txdelegate(new TxViewDelegate()),
|
|
|
|
filter(0)
|
2011-07-05 22:09:39 +02:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2011-08-03 20:52:18 +02:00
|
|
|
// Recent transactions
|
|
|
|
ui->listTransactions->setItemDelegate(txdelegate);
|
|
|
|
ui->listTransactions->setIconSize(QSize(DECORATION_SIZE, DECORATION_SIZE));
|
2011-08-03 21:04:15 +02:00
|
|
|
ui->listTransactions->setMinimumHeight(NUM_ITEMS * (DECORATION_SIZE + 2));
|
2011-10-07 13:21:45 +02:00
|
|
|
ui->listTransactions->setAttribute(Qt::WA_MacShowFocusRect, false);
|
2011-08-04 04:41:01 +02:00
|
|
|
|
2012-05-12 13:19:44 +02:00
|
|
|
connect(ui->listTransactions, SIGNAL(clicked(QModelIndex)), this, SLOT(handleTransactionClicked(QModelIndex)));
|
2012-05-15 16:57:59 +02:00
|
|
|
|
|
|
|
// init "out of sync" warning labels
|
|
|
|
ui->labelWalletStatus->setText("(" + tr("out of sync") + ")");
|
|
|
|
ui->labelTransactionsStatus->setText("(" + tr("out of sync") + ")");
|
|
|
|
|
|
|
|
// start with displaying the "out of sync" warnings
|
|
|
|
showOutOfSyncWarning(true);
|
2012-05-12 13:19:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void OverviewPage::handleTransactionClicked(const QModelIndex &index)
|
|
|
|
{
|
|
|
|
if(filter)
|
|
|
|
emit transactionClicked(filter->mapToSource(index));
|
2011-07-05 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
OverviewPage::~OverviewPage()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
void OverviewPage::setBalance(const CAmount& balance, const CAmount& unconfirmedBalance, const CAmount& immatureBalance, const CAmount& watchOnlyBalance, const CAmount& watchUnconfBalance, const CAmount& watchImmatureBalance)
|
2011-07-05 22:09:39 +02:00
|
|
|
{
|
2012-10-24 21:47:07 +02:00
|
|
|
int unit = walletModel->getOptionsModel()->getDisplayUnit();
|
2011-07-29 14:36:35 +02:00
|
|
|
currentBalance = balance;
|
|
|
|
currentUnconfirmedBalance = unconfirmedBalance;
|
2012-02-14 12:08:00 +01:00
|
|
|
currentImmatureBalance = immatureBalance;
|
2014-03-29 05:15:28 +01:00
|
|
|
currentWatchOnlyBalance = watchOnlyBalance;
|
|
|
|
currentWatchUnconfBalance = watchUnconfBalance;
|
|
|
|
currentWatchImmatureBalance = watchImmatureBalance;
|
2014-07-07 23:27:09 +02:00
|
|
|
ui->labelBalance->setText(BitcoinUnits::formatWithUnit(unit, balance, false, BitcoinUnits::separatorAlways));
|
|
|
|
ui->labelUnconfirmed->setText(BitcoinUnits::formatWithUnit(unit, unconfirmedBalance, false, BitcoinUnits::separatorAlways));
|
|
|
|
ui->labelImmature->setText(BitcoinUnits::formatWithUnit(unit, immatureBalance, false, BitcoinUnits::separatorAlways));
|
|
|
|
ui->labelTotal->setText(BitcoinUnits::formatWithUnit(unit, balance + unconfirmedBalance + immatureBalance, false, BitcoinUnits::separatorAlways));
|
|
|
|
ui->labelWatchAvailable->setText(BitcoinUnits::formatWithUnit(unit, watchOnlyBalance, false, BitcoinUnits::separatorAlways));
|
|
|
|
ui->labelWatchPending->setText(BitcoinUnits::formatWithUnit(unit, watchUnconfBalance, false, BitcoinUnits::separatorAlways));
|
|
|
|
ui->labelWatchImmature->setText(BitcoinUnits::formatWithUnit(unit, watchImmatureBalance, false, BitcoinUnits::separatorAlways));
|
|
|
|
ui->labelWatchTotal->setText(BitcoinUnits::formatWithUnit(unit, watchOnlyBalance + watchUnconfBalance + watchImmatureBalance, false, BitcoinUnits::separatorAlways));
|
2012-02-14 12:08:00 +01:00
|
|
|
|
|
|
|
// only show immature (newly mined) balance if it's non-zero, so as not to complicate things
|
|
|
|
// for the non-mining users
|
|
|
|
bool showImmature = immatureBalance != 0;
|
2014-03-29 05:15:28 +01:00
|
|
|
bool showWatchOnlyImmature = watchImmatureBalance != 0;
|
|
|
|
|
2014-08-04 13:50:17 +02:00
|
|
|
// for symmetry reasons also show immature label when the watch-only one is shown
|
2014-03-29 05:15:28 +01:00
|
|
|
ui->labelImmature->setVisible(showImmature || showWatchOnlyImmature);
|
|
|
|
ui->labelImmatureText->setVisible(showImmature || showWatchOnlyImmature);
|
2014-08-28 23:20:46 +02:00
|
|
|
ui->labelWatchImmature->setVisible(showWatchOnlyImmature); // show watch-only immature balance
|
2014-07-26 21:05:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// show/hide watch-only labels
|
|
|
|
void OverviewPage::updateWatchOnlyLabels(bool showWatchOnly)
|
|
|
|
{
|
|
|
|
ui->labelSpendable->setVisible(showWatchOnly); // show spendable label (only when watch-only is active)
|
|
|
|
ui->labelWatchonly->setVisible(showWatchOnly); // show watch-only label
|
|
|
|
ui->lineWatchBalance->setVisible(showWatchOnly); // show watch-only balance separator line
|
|
|
|
ui->labelWatchAvailable->setVisible(showWatchOnly); // show watch-only available balance
|
|
|
|
ui->labelWatchPending->setVisible(showWatchOnly); // show watch-only pending balance
|
|
|
|
ui->labelWatchTotal->setVisible(showWatchOnly); // show watch-only total balance
|
|
|
|
|
|
|
|
if (!showWatchOnly)
|
|
|
|
ui->labelWatchImmature->hide();
|
2011-07-05 22:09:39 +02:00
|
|
|
}
|
2011-07-07 10:59:00 +02:00
|
|
|
|
2012-10-24 21:47:07 +02:00
|
|
|
void OverviewPage::setClientModel(ClientModel *model)
|
2011-07-11 20:42:10 +02:00
|
|
|
{
|
2012-10-24 21:47:07 +02:00
|
|
|
this->clientModel = model;
|
|
|
|
if(model)
|
|
|
|
{
|
|
|
|
// Show warning if this is a prerelease version
|
|
|
|
connect(model, SIGNAL(alertsChanged(QString)), this, SLOT(updateAlerts(QString)));
|
|
|
|
updateAlerts(model->getStatusBarWarnings());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OverviewPage::setWalletModel(WalletModel *model)
|
|
|
|
{
|
|
|
|
this->walletModel = model;
|
2012-06-09 15:41:21 +02:00
|
|
|
if(model && model->getOptionsModel())
|
2011-11-08 21:18:36 +01:00
|
|
|
{
|
|
|
|
// Set up transaction list
|
2012-05-12 13:19:44 +02:00
|
|
|
filter = new TransactionFilterProxy();
|
2011-11-08 21:18:36 +01:00
|
|
|
filter->setSourceModel(model->getTransactionTableModel());
|
|
|
|
filter->setLimit(NUM_ITEMS);
|
|
|
|
filter->setDynamicSortFilter(true);
|
|
|
|
filter->setSortRole(Qt::EditRole);
|
2014-02-14 07:59:07 +01:00
|
|
|
filter->setShowInactive(false);
|
2011-11-08 21:18:36 +01:00
|
|
|
filter->sort(TransactionTableModel::Status, Qt::DescendingOrder);
|
2011-07-11 20:42:10 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
ui->listTransactions->setModel(filter);
|
|
|
|
ui->listTransactions->setModelColumn(TransactionTableModel::ToAddress);
|
2011-08-03 20:52:18 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
// Keep up to date with wallet
|
2014-03-29 05:15:28 +01:00
|
|
|
setBalance(model->getBalance(), model->getUnconfirmedBalance(), model->getImmatureBalance(),
|
|
|
|
model->getWatchBalance(), model->getWatchUnconfirmedBalance(), model->getWatchImmatureBalance());
|
2014-10-01 10:09:08 +02:00
|
|
|
connect(model, SIGNAL(balanceChanged(CAmount,CAmount,CAmount,CAmount,CAmount,CAmount)), this, SLOT(setBalance(CAmount,CAmount,CAmount,CAmount,CAmount,CAmount)));
|
2011-07-11 20:42:10 +02:00
|
|
|
|
2012-06-09 15:41:21 +02:00
|
|
|
connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit()));
|
2014-07-26 21:05:11 +02:00
|
|
|
|
|
|
|
updateWatchOnlyLabels(model->haveWatchOnly());
|
|
|
|
connect(model, SIGNAL(notifyWatchonlyChanged(bool)), this, SLOT(updateWatchOnlyLabels(bool)));
|
2011-11-08 21:18:36 +01:00
|
|
|
}
|
2012-06-09 15:41:21 +02:00
|
|
|
|
|
|
|
// update the display unit, to not use the default ("BTC")
|
|
|
|
updateDisplayUnit();
|
2011-07-29 14:36:35 +02:00
|
|
|
}
|
|
|
|
|
2012-06-09 15:41:21 +02:00
|
|
|
void OverviewPage::updateDisplayUnit()
|
2011-07-29 14:36:35 +02:00
|
|
|
{
|
2012-10-24 21:47:07 +02:00
|
|
|
if(walletModel && walletModel->getOptionsModel())
|
2012-06-09 15:41:21 +02:00
|
|
|
{
|
|
|
|
if(currentBalance != -1)
|
2014-03-29 05:15:28 +01:00
|
|
|
setBalance(currentBalance, currentUnconfirmedBalance, currentImmatureBalance,
|
|
|
|
currentWatchOnlyBalance, currentWatchUnconfBalance, currentWatchImmatureBalance);
|
2011-08-03 20:52:18 +02:00
|
|
|
|
2012-06-09 15:41:21 +02:00
|
|
|
// Update txdelegate->unit with the current unit
|
2012-10-24 21:47:07 +02:00
|
|
|
txdelegate->unit = walletModel->getOptionsModel()->getDisplayUnit();
|
2012-06-09 15:41:21 +02:00
|
|
|
|
|
|
|
ui->listTransactions->update();
|
|
|
|
}
|
2011-07-11 20:42:10 +02:00
|
|
|
}
|
2012-05-15 16:57:59 +02:00
|
|
|
|
2012-10-24 21:47:07 +02:00
|
|
|
void OverviewPage::updateAlerts(const QString &warnings)
|
|
|
|
{
|
|
|
|
this->ui->labelAlerts->setVisible(!warnings.isEmpty());
|
|
|
|
this->ui->labelAlerts->setText(warnings);
|
|
|
|
}
|
|
|
|
|
2012-05-15 16:57:59 +02:00
|
|
|
void OverviewPage::showOutOfSyncWarning(bool fShow)
|
|
|
|
{
|
|
|
|
ui->labelWalletStatus->setVisible(fShow);
|
|
|
|
ui->labelTransactionsStatus->setVisible(fShow);
|
|
|
|
}
|