mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-29 20:47:31 -03:00
f47dda2c58
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- Commits of previous years: * 2020:fa0074e2d8
* 2019:aaaaad6ac9
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
// Copyright (c) 2011-2021 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <qt/openuridialog.h>
|
|
#include <qt/forms/ui_openuridialog.h>
|
|
|
|
#include <qt/guiutil.h>
|
|
#include <qt/platformstyle.h>
|
|
#include <qt/sendcoinsrecipient.h>
|
|
|
|
#include <QAbstractButton>
|
|
#include <QLineEdit>
|
|
#include <QUrl>
|
|
|
|
OpenURIDialog::OpenURIDialog(const PlatformStyle* platformStyle, QWidget* parent) : QDialog(parent, GUIUtil::dialog_flags),
|
|
ui(new Ui::OpenURIDialog),
|
|
m_platform_style(platformStyle)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->pasteButton->setIcon(m_platform_style->SingleColorIcon(":/icons/editpaste"));
|
|
QObject::connect(ui->pasteButton, &QAbstractButton::clicked, ui->uriEdit, &QLineEdit::paste);
|
|
|
|
GUIUtil::handleCloseWindowShortcut(this);
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
void OpenURIDialog::changeEvent(QEvent* e)
|
|
{
|
|
if (e->type() == QEvent::PaletteChange) {
|
|
ui->pasteButton->setIcon(m_platform_style->SingleColorIcon(":/icons/editpaste"));
|
|
}
|
|
|
|
QDialog::changeEvent(e);
|
|
}
|