Accept "bitcoin:" URL drops from browsers

This commit is contained in:
Wladimir J. van der Laan
2011-08-07 16:04:48 +02:00
parent 330c190958
commit db7f023417
8 changed files with 130 additions and 15 deletions

View File

@@ -8,6 +8,11 @@ namespace Ui {
}
class WalletModel;
class SendCoinsEntry;
class SendCoinsRecipient;
QT_BEGIN_NAMESPACE
class QUrl;
QT_END_NAMESPACE
class SendCoinsDialog : public QDialog
{
@@ -23,11 +28,14 @@ public:
// Hence we have to set it up manually
QWidget *setupTabChain(QWidget *prev);
void pasteEntry(const SendCoinsRecipient &rv);
void handleURL(const QUrl *url);
public slots:
void clear();
void reject();
void accept();
void addEntry();
SendCoinsEntry *addEntry();
void updateRemoveEnabled();
private: