Browse Source

Merge pull request #3159

9eb4ab6 transactionview: make exportClicked() use message() (Philip Kaufmann)
868d3ee transactionview: add message() signal (Philip Kaufmann)
0.10
Wladimir J. van der Laan 11 years ago
parent
commit
ede3ee3348
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 23
      src/qt/transactionview.cpp
  2. 3
      src/qt/transactionview.h
  3. 4
      src/qt/walletview.cpp

23
src/qt/transactionview.cpp

@ -11,6 +11,7 @@
#include "editaddressdialog.h" #include "editaddressdialog.h"
#include "optionsmodel.h" #include "optionsmodel.h"
#include "guiutil.h" #include "guiutil.h"
#include "ui_interface.h"
#include <QScrollBar> #include <QScrollBar>
#include <QComboBox> #include <QComboBox>
@ -20,7 +21,6 @@
#include <QLineEdit> #include <QLineEdit>
#include <QTableView> #include <QTableView>
#include <QHeaderView> #include <QHeaderView>
#include <QMessageBox>
#include <QPoint> #include <QPoint>
#include <QMenu> #include <QMenu>
#include <QLabel> #include <QLabel>
@ -266,12 +266,12 @@ void TransactionView::changedAmount(const QString &amount)
void TransactionView::exportClicked() void TransactionView::exportClicked()
{ {
// CSV is currently the only supported format // CSV is currently the only supported format
QString filename = GUIUtil::getSaveFileName( QString filename = GUIUtil::getSaveFileName(this,
this, tr("Export Transaction History"), QString(),
tr("Export Transaction Data"), QString(), tr("Comma separated file (*.csv)"));
tr("Comma separated file (*.csv)"));
if (filename.isNull()) return; if (filename.isNull())
return;
CSVModelWriter writer(filename); CSVModelWriter writer(filename);
@ -285,10 +285,13 @@ void TransactionView::exportClicked()
writer.addColumn(tr("Amount"), 0, TransactionTableModel::FormattedAmountRole); writer.addColumn(tr("Amount"), 0, TransactionTableModel::FormattedAmountRole);
writer.addColumn(tr("ID"), 0, TransactionTableModel::TxIDRole); writer.addColumn(tr("ID"), 0, TransactionTableModel::TxIDRole);
if(!writer.write()) if(!writer.write()) {
{ emit message(tr("Exporting Failed"), tr("There was an error trying to save the transaction history to %1.").arg(filename),
QMessageBox::critical(this, tr("Error exporting"), tr("Could not write to file %1.").arg(filename), CClientUIInterface::MSG_ERROR);
QMessageBox::Abort, QMessageBox::Abort); }
else {
emit message(tr("Exporting Successful"), tr("The transaction history was successfully saved to %1.").arg(filename),
CClientUIInterface::MSG_INFORMATION);
} }
} }

3
src/qt/transactionview.h

@ -71,6 +71,9 @@ private slots:
signals: signals:
void doubleClicked(const QModelIndex&); 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: public slots:
void chooseDate(int idx); void chooseDate(int idx);
void chooseType(int idx); void chooseType(int idx);

4
src/qt/walletview.cpp

@ -67,6 +67,8 @@ WalletView::WalletView(QWidget *parent):
// Pass through messages from sendCoinsPage // Pass through messages from sendCoinsPage
connect(sendCoinsPage, SIGNAL(message(QString,QString,unsigned int)), this, SIGNAL(message(QString,QString,unsigned int))); 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() WalletView::~WalletView()
@ -110,7 +112,7 @@ void WalletView::setWalletModel(WalletModel *walletModel)
if (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))); connect(walletModel, SIGNAL(message(QString,QString,unsigned int)), this, SIGNAL(message(QString,QString,unsigned int)));
// Handle changes in encryption status // Handle changes in encryption status

Loading…
Cancel
Save