diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-01-25 18:46:53 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-03-18 07:44:22 +0100 |
commit | 311993ab106c250a1779bfdb649cf4f8c2416fb5 (patch) | |
tree | 5a103deacc3066bf1733b843dbfe60186995e0cc /src/qt/addressbookpage.h | |
parent | 74e4d80068f9c29d4891439332b4027328c8584b (diff) |
Bitcoin-Qt: add "send coins" to context menu in addressbook
- allows to directly select an address from the addressbook, chose "send
coins" from the context menu, which sends you to sendcoins tab and fills
in the selected address
Diffstat (limited to 'src/qt/addressbookpage.h')
-rw-r--r-- | src/qt/addressbookpage.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/addressbookpage.h b/src/qt/addressbookpage.h index c676d1e941..c6653a5e8a 100644 --- a/src/qt/addressbookpage.h +++ b/src/qt/addressbookpage.h @@ -68,6 +68,8 @@ private slots: void on_signMessage_clicked(); /** Open the verify message tab in the Sign/Verify Message dialog with currently selected address */ void on_verifyMessage_clicked(); + /** Open send coins dialog for currently selected address (no button) */ + void onSendCoins_clicked(); /** Generate a QR Code from the currently selected address */ void on_showQRCode_clicked(); /** Copy label of currently selected address entry to clipboard (no button) */ @@ -85,6 +87,7 @@ private slots: signals: void signMessage(QString addr); void verifyMessage(QString addr); + void sendCoins(QString addr); }; #endif // ADDRESSBOOKPAGE_H |