2019-12-30 22:39:22 +13:00
|
|
|
// Copyright (c) 2011-2019 The Bitcoin Core developers
|
2014-12-13 12:09:33 +08:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-06 15:08:56 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <qt/openuridialog.h>
|
2017-08-15 17:31:26 +02:00
|
|
|
#include <qt/forms/ui_openuridialog.h>
|
2013-11-06 15:08:56 +01:00
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <qt/guiutil.h>
|
2019-11-19 11:10:40 +02:00
|
|
|
#include <qt/sendcoinsrecipient.h>
|
2013-11-06 15:08:56 +01:00
|
|
|
|
|
|
|
#include <QUrl>
|
|
|
|
|
|
|
|
OpenURIDialog::OpenURIDialog(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::OpenURIDialog)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2019-04-07 21:33:35 +02:00
|
|
|
|
|
|
|
GUIUtil::handleCloseWindowShortcut(this);
|
2013-11-06 15:08:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
OpenURIDialog::~OpenURIDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString OpenURIDialog::getURI()
|
|
|
|
{
|
|
|
|
return ui->uriEdit->text();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenURIDialog::accept()
|
|
|
|
{
|
|
|
|
SendCoinsRecipient rcp;
|
|
|
|
if(GUIUtil::parseBitcoinURI(getURI(), &rcp))
|
|
|
|
{
|
|
|
|
/* Only accept value URIs */
|
|
|
|
QDialog::accept();
|
|
|
|
} else {
|
|
|
|
ui->uriEdit->setValid(false);
|
|
|
|
}
|
|
|
|
}
|