[qt] navigate to transaction history page after send
The transaction will be selected. When sending to multiple destinations, all will be selected (thanks @promag).
This commit is contained in:
parent
c997f88082
commit
e7d9fc5c53
6 changed files with 42 additions and 3 deletions
|
@ -29,6 +29,7 @@
|
|||
#include <init.h>
|
||||
#include <rpc/server.h>
|
||||
#include <ui_interface.h>
|
||||
#include <uint256.h>
|
||||
#include <util.h>
|
||||
#include <warnings.h>
|
||||
|
||||
|
@ -80,6 +81,7 @@ Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin);
|
|||
// Declare meta types used for QMetaObject::invokeMethod
|
||||
Q_DECLARE_METATYPE(bool*)
|
||||
Q_DECLARE_METATYPE(CAmount)
|
||||
Q_DECLARE_METATYPE(uint256)
|
||||
|
||||
static void InitMessage(const std::string &message)
|
||||
{
|
||||
|
|
|
@ -369,6 +369,7 @@ void SendCoinsDialog::on_sendButton_clicked()
|
|||
accept();
|
||||
CoinControlDialog::coinControl()->UnSelectAll();
|
||||
coinControlUpdateLabels();
|
||||
Q_EMIT coinsSent(currentTransaction.getTransaction()->GetHash());
|
||||
}
|
||||
fNewRecipientAllowed = true;
|
||||
}
|
||||
|
|
|
@ -54,6 +54,9 @@ public Q_SLOTS:
|
|||
void setBalance(const CAmount& balance, const CAmount& unconfirmedBalance, const CAmount& immatureBalance,
|
||||
const CAmount& watchOnlyBalance, const CAmount& watchUnconfBalance, const CAmount& watchImmatureBalance);
|
||||
|
||||
Q_SIGNALS:
|
||||
void coinsSent(const uint256& txid);
|
||||
|
||||
private:
|
||||
Ui::SendCoinsDialog *ui;
|
||||
ClientModel *clientModel;
|
||||
|
|
|
@ -263,8 +263,7 @@ void TransactionView::setModel(WalletModel *_model)
|
|||
|
||||
void TransactionView::chooseDate(int idx)
|
||||
{
|
||||
if(!transactionProxyModel)
|
||||
return;
|
||||
if (!transactionProxyModel) return;
|
||||
QDate current = QDate::currentDate();
|
||||
dateRangeWidget->setVisible(false);
|
||||
switch(dateWidget->itemData(idx).toInt())
|
||||
|
@ -592,6 +591,32 @@ void TransactionView::focusTransaction(const QModelIndex &idx)
|
|||
transactionView->setFocus();
|
||||
}
|
||||
|
||||
void TransactionView::focusTransaction(const uint256& txid)
|
||||
{
|
||||
if (!transactionProxyModel)
|
||||
return;
|
||||
|
||||
const QModelIndexList results = this->model->getTransactionTableModel()->match(
|
||||
this->model->getTransactionTableModel()->index(0,0),
|
||||
TransactionTableModel::TxHashRole,
|
||||
QString::fromStdString(txid.ToString()), -1);
|
||||
|
||||
transactionView->setFocus();
|
||||
transactionView->selectionModel()->clearSelection();
|
||||
for (const QModelIndex& index : results) {
|
||||
const QModelIndex targetIndex = transactionProxyModel->mapFromSource(index);
|
||||
transactionView->selectionModel()->select(
|
||||
targetIndex,
|
||||
QItemSelectionModel::Rows | QItemSelectionModel::Select);
|
||||
// Called once per destination to ensure all results are in view, unless
|
||||
// transactions are not ordered by (ascending or descending) date.
|
||||
transactionView->scrollTo(targetIndex);
|
||||
// scrollTo() does not scroll far enough the first time when transactions
|
||||
// are ordered by ascending date.
|
||||
if (index == results[0]) transactionView->scrollTo(targetIndex);
|
||||
}
|
||||
}
|
||||
|
||||
// We override the virtual resizeEvent of the QWidget to adjust tables column
|
||||
// sizes as the tables width is proportional to the dialogs width.
|
||||
void TransactionView::resizeEvent(QResizeEvent* event)
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
|
||||
#include <qt/guiutil.h>
|
||||
|
||||
#include <uint256.h>
|
||||
|
||||
#include <QWidget>
|
||||
#include <QKeyEvent>
|
||||
|
||||
|
@ -116,7 +118,7 @@ public Q_SLOTS:
|
|||
void changedSearch();
|
||||
void exportClicked();
|
||||
void focusTransaction(const QModelIndex&);
|
||||
|
||||
void focusTransaction(const uint256& txid);
|
||||
};
|
||||
|
||||
#endif // BITCOIN_QT_TRANSACTIONVIEW_H
|
||||
|
|
|
@ -68,6 +68,9 @@ WalletView::WalletView(const PlatformStyle *_platformStyle, QWidget *parent):
|
|||
connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));
|
||||
connect(overviewPage, SIGNAL(outOfSyncWarningClicked()), this, SLOT(requestedSyncWarningInfo()));
|
||||
|
||||
// Highlight transaction after send
|
||||
connect(sendCoinsPage, SIGNAL(coinsSent(uint256)), transactionView, SLOT(focusTransaction(uint256)));
|
||||
|
||||
// Double-clicking on a transaction on the transaction history page shows details
|
||||
connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));
|
||||
|
||||
|
@ -91,6 +94,9 @@ void WalletView::setBitcoinGUI(BitcoinGUI *gui)
|
|||
// Clicking on a transaction on the overview page simply sends you to transaction history page
|
||||
connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), gui, SLOT(gotoHistoryPage()));
|
||||
|
||||
// Navigate to transaction history page after send
|
||||
connect(sendCoinsPage, SIGNAL(coinsSent(uint256)), gui, SLOT(gotoHistoryPage()));
|
||||
|
||||
// Receive and report messages
|
||||
connect(this, SIGNAL(message(QString,QString,unsigned int)), gui, SLOT(message(QString,QString,unsigned int)));
|
||||
|
||||
|
|
Loading…
Reference in a new issue