aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-06-05 17:36:52 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-06-05 17:36:52 +0200
commitb7726d924ef7082b1f1d532ba6f840bc7b267b47 (patch)
tree8d6cdc2428b37ed16a5ec565f07b2594a6ce706b
parent00b8acdf49894546c2875ad77cf748ec4c920403 (diff)
downloadbitcoin-b7726d924ef7082b1f1d532ba6f840bc7b267b47.tar.xz
ask fee
-rw-r--r--README.rst6
-rw-r--r--gui/include/bitcoingui.h1
-rw-r--r--gui/src/bitcoin.cpp30
-rw-r--r--gui/src/bitcoingui.cpp12
4 files changed, 40 insertions, 9 deletions
diff --git a/README.rst b/README.rst
index bb14be60ed..9856370bc9 100644
--- a/README.rst
+++ b/README.rst
@@ -22,7 +22,9 @@ This has been implemented:
- Options dialog
-- Sending coins
+- Sending coins (including ask for fee when needed)
+
+- Show messages from core
This has to be done:
@@ -34,6 +36,4 @@ This has to be done:
- Show details dialog for transactions (on double click)
-- Display error messages/alerts from core
-
- More thorough testing of the view with all the kinds of transactions (sendmany, generation)
diff --git a/gui/include/bitcoingui.h b/gui/include/bitcoingui.h
index c2c786b28f..ab7b4bbdb6 100644
--- a/gui/include/bitcoingui.h
+++ b/gui/include/bitcoingui.h
@@ -66,6 +66,7 @@ public slots:
void setNumBlocks(int count);
void setNumTransactions(int count);
void error(const QString &title, const QString &message);
+ void askFee(qint64 nFeeRequired, bool *payFee);
private slots:
void sendcoinsClicked();
diff --git a/gui/src/bitcoin.cpp b/gui/src/bitcoin.cpp
index a1b74d8798..6dbcb6c299 100644
--- a/gui/src/bitcoin.cpp
+++ b/gui/src/bitcoin.cpp
@@ -5,10 +5,12 @@
#include "clientmodel.h"
#include "util.h"
#include "init.h"
+#include "main.h"
#include "externui.h"
#include <QApplication>
#include <QMessageBox>
+#include <QThread>
// Need a global reference for the notifications to find the GUI
BitcoinGUI *guiref;
@@ -16,7 +18,6 @@ BitcoinGUI *guiref;
int MyMessageBox(const std::string& message, const std::string& caption, int style, wxWindow* parent, int x, int y)
{
// Message from main thread
- printf("MyMessageBox\n");
if(guiref)
{
guiref->error(QString::fromStdString(caption),
@@ -50,9 +51,26 @@ int ThreadSafeMessageBox(const std::string& message, const std::string& caption,
bool ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption, wxWindow* parent)
{
- // Query from network thread
- // TODO
- return true;
+ if(!guiref)
+ return false;
+ if(nFeeRequired < MIN_TX_FEE || nFeeRequired <= nTransactionFee || fDaemon)
+ return true;
+ bool payFee = false;
+
+ /* Call slot on GUI thread.
+ If called from another thread, use a blocking QueuedConnection.
+ */
+ Qt::ConnectionType connectionType = Qt::DirectConnection;
+ if(QThread::currentThread() != QCoreApplication::instance()->thread())
+ {
+ connectionType = Qt::BlockingQueuedConnection;
+ }
+
+ QMetaObject::invokeMethod(guiref, "askFee", connectionType,
+ Q_ARG(qint64, nFeeRequired),
+ Q_ARG(bool*, &payFee));
+
+ return payFee;
}
void CalledSetStatusBar(const std::string& strText, int nField)
@@ -73,13 +91,13 @@ int main(int argc, char *argv[])
{
QApplication app(argc, argv);
app.setQuitOnLastWindowClosed(false);
- BitcoinGUI window;
- guiref = &window;
try {
if(AppInit2(argc, argv))
{
+ BitcoinGUI window;
ClientModel model;
+ guiref = &window;
window.setModel(&model);
window.show();
diff --git a/gui/src/bitcoingui.cpp b/gui/src/bitcoingui.cpp
index b687204629..70da0b2393 100644
--- a/gui/src/bitcoingui.cpp
+++ b/gui/src/bitcoingui.cpp
@@ -380,3 +380,15 @@ void BitcoinGUI::closeEvent(QCloseEvent *event)
}
QMainWindow::closeEvent(event);
}
+
+void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
+{
+ QString strMessage =
+ tr("This transaction is over the size limit. You can still send it for a fee of %1, "
+ "which goes to the nodes that process your transaction and helps to support the network. "
+ "Do you want to pay the fee?").arg(QString::fromStdString(FormatMoney(nFeeRequired)));
+ QMessageBox::StandardButton retval = QMessageBox::question(
+ this, tr("Sending..."), strMessage,
+ QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
+ *payFee = (retval == QMessageBox::Yes);
+}