aboutsummaryrefslogtreecommitdiff
path: root/src/qt/sendcoinsdialog.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2013-10-24 15:49:13 +0200
committerPhilip Kaufmann <[email protected]>2013-10-25 14:24:30 +0200
commit2384a2864b6a0b29eec6410057aefe1fd8e7e585 (patch)
tree13442ace1c06ba82339e8daad62557abeb7ab7d3 /src/qt/sendcoinsdialog.h
parentMerge pull request #3099 from laanwj/2013_10_new_receive_flow (diff)
downloaddiscoin-2384a2864b6a0b29eec6410057aefe1fd8e7e585.tar.xz
discoin-2384a2864b6a0b29eec6410057aefe1fd8e7e585.zip
allow emit message() in sendcoinsdialog and walletview
- this allows us to use emit message() over MessageBox:: or gui->message() calls in sendcoinsdialog and walletview - move main handlePaymentRequest() functionality back to BitcoinGUI - move a showNormalIfMinimized() before gotoSendCoinsPage()
Diffstat (limited to 'src/qt/sendcoinsdialog.h')
-rw-r--r--src/qt/sendcoinsdialog.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h
index f4bffedc9..b295b7d83 100644
--- a/src/qt/sendcoinsdialog.h
+++ b/src/qt/sendcoinsdialog.h
@@ -52,6 +52,10 @@ private slots:
void on_sendButton_clicked();
void removeEntry(SendCoinsEntry* entry);
void updateDisplayUnit();
+
+signals:
+ // Fired when a message should be reported to the user
+ void message(const QString &title, const QString &message, unsigned int style);
};
#endif // SENDCOINSDIALOG_H