From 868d3ee5acf0c0a481466c70eba3e8d142537d14 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 26 Oct 2013 19:12:29 +0200 Subject: [PATCH 1/2] transactionview: add message() signal - allow to use message() in transactionview by connecting to the message() signal in WalletView --- src/qt/transactionview.h | 3 +++ src/qt/walletview.cpp | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h index bb41a83e3..464ba3e8c 100644 --- a/src/qt/transactionview.h +++ b/src/qt/transactionview.h @@ -71,6 +71,9 @@ private slots: signals: void doubleClicked(const QModelIndex&); + /** Fired when a message should be reported to the user */ + void message(const QString &title, const QString &message, unsigned int style); + public slots: void chooseDate(int idx); void chooseType(int idx); diff --git a/src/qt/walletview.cpp b/src/qt/walletview.cpp index 5622fcfb1..d1e5e47bd 100644 --- a/src/qt/walletview.cpp +++ b/src/qt/walletview.cpp @@ -67,6 +67,8 @@ WalletView::WalletView(QWidget *parent): // Pass through messages from sendCoinsPage connect(sendCoinsPage, SIGNAL(message(QString,QString,unsigned int)), this, SIGNAL(message(QString,QString,unsigned int))); + // Pass through messages from transactionView + connect(transactionView, SIGNAL(message(QString,QString,unsigned int)), this, SIGNAL(message(QString,QString,unsigned int))); } WalletView::~WalletView() @@ -110,7 +112,7 @@ void WalletView::setWalletModel(WalletModel *walletModel) if (walletModel) { - // Receive and report messages from wallet thread + // Receive and pass through messages from wallet model connect(walletModel, SIGNAL(message(QString,QString,unsigned int)), this, SIGNAL(message(QString,QString,unsigned int))); // Handle changes in encryption status From 9eb4ab66bf581a75e82713640de669b93a84d9f7 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 26 Oct 2013 19:21:10 +0200 Subject: [PATCH 2/2] transactionview: make exportClicked() use message() - use message() for displaying success or failure of export - rework the strings to be more detailed / informative - additional small cleanups --- src/qt/transactionview.cpp | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index a43e29c47..89ecf9965 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -11,6 +11,7 @@ #include "editaddressdialog.h" #include "optionsmodel.h" #include "guiutil.h" +#include "ui_interface.h" #include #include @@ -20,7 +21,6 @@ #include #include #include -#include #include #include #include @@ -266,12 +266,12 @@ void TransactionView::changedAmount(const QString &amount) void TransactionView::exportClicked() { // CSV is currently the only supported format - QString filename = GUIUtil::getSaveFileName( - this, - tr("Export Transaction Data"), QString(), - tr("Comma separated file (*.csv)")); + QString filename = GUIUtil::getSaveFileName(this, + tr("Export Transaction History"), QString(), + tr("Comma separated file (*.csv)")); - if (filename.isNull()) return; + if (filename.isNull()) + return; CSVModelWriter writer(filename); @@ -285,10 +285,13 @@ void TransactionView::exportClicked() writer.addColumn(tr("Amount"), 0, TransactionTableModel::FormattedAmountRole); writer.addColumn(tr("ID"), 0, TransactionTableModel::TxIDRole); - if(!writer.write()) - { - QMessageBox::critical(this, tr("Error exporting"), tr("Could not write to file %1.").arg(filename), - QMessageBox::Abort, QMessageBox::Abort); + if(!writer.write()) { + emit message(tr("Exporting Failed"), tr("There was an error trying to save the transaction history to %1.").arg(filename), + CClientUIInterface::MSG_ERROR); + } + else { + emit message(tr("Exporting Successful"), tr("The transaction history was successfully saved to %1.").arg(filename), + CClientUIInterface::MSG_INFORMATION); } }