mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-14 05:42:36 -03:00
f5a3a5b9ab
CMD+W/CTRL+W is the standard shortcut to close a window without exiting the program.
42 lines
874 B
C++
42 lines
874 B
C++
// Copyright (c) 2011-2019 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/sendcoinsrecipient.h>
|
|
|
|
#include <QUrl>
|
|
|
|
OpenURIDialog::OpenURIDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::OpenURIDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
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);
|
|
}
|
|
}
|