2021-12-30 19:36:57 +02:00
|
|
|
// Copyright (c) 2011-2021 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>
|
2021-05-05 14:39:38 +03:00
|
|
|
#include <qt/platformstyle.h>
|
2019-11-19 11:10:40 +02:00
|
|
|
#include <qt/sendcoinsrecipient.h>
|
2013-11-06 15:08:56 +01:00
|
|
|
|
2021-05-05 14:39:38 +03:00
|
|
|
#include <QAbstractButton>
|
|
|
|
#include <QLineEdit>
|
2013-11-06 15:08:56 +01:00
|
|
|
#include <QUrl>
|
|
|
|
|
2021-05-05 14:39:38 +03:00
|
|
|
OpenURIDialog::OpenURIDialog(const PlatformStyle* platformStyle, QWidget* parent) : QDialog(parent, GUIUtil::dialog_flags),
|
|
|
|
ui(new Ui::OpenURIDialog),
|
|
|
|
m_platform_style(platformStyle)
|
2013-11-06 15:08:56 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2021-05-05 14:39:38 +03:00
|
|
|
ui->pasteButton->setIcon(m_platform_style->SingleColorIcon(":/icons/editpaste"));
|
|
|
|
QObject::connect(ui->pasteButton, &QAbstractButton::clicked, ui->uriEdit, &QLineEdit::paste);
|
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;
|
2021-05-05 14:39:38 +03:00
|
|
|
if (GUIUtil::parseBitcoinURI(getURI(), &rcp)) {
|
2013-11-06 15:08:56 +01:00
|
|
|
/* Only accept value URIs */
|
|
|
|
QDialog::accept();
|
|
|
|
} else {
|
|
|
|
ui->uriEdit->setValid(false);
|
|
|
|
}
|
|
|
|
}
|
2021-05-05 14:39:38 +03:00
|
|
|
|
|
|
|
void OpenURIDialog::changeEvent(QEvent* e)
|
|
|
|
{
|
|
|
|
if (e->type() == QEvent::PaletteChange) {
|
|
|
|
ui->pasteButton->setIcon(m_platform_style->SingleColorIcon(":/icons/editpaste"));
|
|
|
|
}
|
|
|
|
|
|
|
|
QDialog::changeEvent(e);
|
|
|
|
}
|