mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-27 09:40:51 +01:00
-BEGIN VERIFY SCRIPT- sed --in-place --regexp-extended \ 's;( 20[0-2][0-9])(-20[0-2][0-9])? The Bitcoin Core developers;\1-present The Bitcoin Core developers;g' \ $( git grep -l 'The Bitcoin Core developers' -- ':(exclude)COPYING' ':(exclude)src/ipc/libmultiprocess' ':(exclude)src/minisketch' ) -END VERIFY SCRIPT-
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
// Copyright (c) 2011-present 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);
|
|
}
|