Add support for opening bitcoin: URIs directly.

This commit is contained in:
Matt Corallo
2011-12-23 20:27:12 -08:00
parent 9a93c4c024
commit 7d145a0f59
15 changed files with 202 additions and 5 deletions

View File

@@ -671,6 +671,13 @@ void BitcoinGUI::dropEvent(QDropEvent *event)
event->acceptProposedAction();
}
void BitcoinGUI::handleURL(QString strURL)
{
gotoSendCoinsPage();
QUrl url = QUrl(strURL);
sendCoinsPage->handleURL(&url);
}
void BitcoinGUI::setEncryptionStatus(int status)
{
switch(status)