|
|
|
@ -1,6 +1,7 @@
@@ -1,6 +1,7 @@
|
|
|
|
|
#include "overviewpage.h" |
|
|
|
|
#include "ui_overviewpage.h" |
|
|
|
|
|
|
|
|
|
#include "walletmodel.h" |
|
|
|
|
#include "guiutil.h" |
|
|
|
|
|
|
|
|
|
OverviewPage::OverviewPage(QWidget *parent) : |
|
|
|
@ -14,9 +15,14 @@ OverviewPage::OverviewPage(QWidget *parent) :
@@ -14,9 +15,14 @@ OverviewPage::OverviewPage(QWidget *parent) :
|
|
|
|
|
ui->labelBalance->setToolTip(tr("Your current balance")); |
|
|
|
|
ui->labelBalance->setTextInteractionFlags(Qt::TextSelectableByMouse|Qt::TextSelectableByKeyboard); |
|
|
|
|
|
|
|
|
|
// Balance: <balance>
|
|
|
|
|
ui->labelUnconfirmed->setFont(QFont("Monospace", -1, QFont::Bold)); |
|
|
|
|
ui->labelUnconfirmed->setToolTip(tr("Balance of transactions that have yet to be confirmed")); |
|
|
|
|
ui->labelUnconfirmed->setTextInteractionFlags(Qt::TextSelectableByMouse|Qt::TextSelectableByKeyboard); |
|
|
|
|
|
|
|
|
|
ui->labelNumTransactions->setToolTip(tr("Total number of transactions in wallet")); |
|
|
|
|
|
|
|
|
|
// Overview page should show:
|
|
|
|
|
// Balance
|
|
|
|
|
// Unconfirmed balance
|
|
|
|
|
// Last received transaction(s)
|
|
|
|
|
// Last sent transaction(s)
|
|
|
|
|
} |
|
|
|
@ -26,12 +32,26 @@ OverviewPage::~OverviewPage()
@@ -26,12 +32,26 @@ OverviewPage::~OverviewPage()
|
|
|
|
|
delete ui; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void OverviewPage::setBalance(qint64 balance) |
|
|
|
|
void OverviewPage::setBalance(qint64 balance, qint64 unconfirmedBalance) |
|
|
|
|
{ |
|
|
|
|
ui->labelBalance->setText(GUIUtil::formatMoney(balance) + QString(" BTC")); |
|
|
|
|
ui->labelUnconfirmed->setText(GUIUtil::formatMoney(unconfirmedBalance) + QString(" BTC")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void OverviewPage::setNumTransactions(int count) |
|
|
|
|
{ |
|
|
|
|
ui->labelNumTransactions->setText(QLocale::system().toString(count)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void OverviewPage::setModel(WalletModel *model) |
|
|
|
|
{ |
|
|
|
|
this->model = model; |
|
|
|
|
|
|
|
|
|
// Keep up to date with wallet
|
|
|
|
|
setBalance(model->getBalance(), model->getUnconfirmedBalance()); |
|
|
|
|
connect(model, SIGNAL(balanceChanged(qint64)), this, SLOT(setBalance(qint64))); |
|
|
|
|
|
|
|
|
|
setNumTransactions(model->getNumTransactions()); |
|
|
|
|
connect(model, SIGNAL(numTransactionsChanged(int)), this, SLOT(setNumTransactions(int))); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|