2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
#include "sendcoinsentry.h"
|
|
|
|
#include "ui_sendcoinsentry.h"
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
#include "addressbookpage.h"
|
|
|
|
#include "addresstablemodel.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "guiutil.h"
|
|
|
|
#include "optionsmodel.h"
|
2014-11-06 20:55:52 +01:00
|
|
|
#include "scicon.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "walletmodel.h"
|
2011-07-16 19:01:05 +02:00
|
|
|
|
2011-08-07 16:09:49 +02:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QClipboard>
|
2011-07-16 19:01:05 +02:00
|
|
|
|
|
|
|
SendCoinsEntry::SendCoinsEntry(QWidget *parent) :
|
2013-07-22 08:50:39 +02:00
|
|
|
QStackedWidget(parent),
|
2011-07-16 19:01:05 +02:00
|
|
|
ui(new Ui::SendCoinsEntry),
|
|
|
|
model(0)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2014-11-06 20:55:52 +01:00
|
|
|
ui->addressBookButton->setIcon(SingleColorIcon(":/icons/address-book"));
|
|
|
|
ui->pasteButton->setIcon(SingleColorIcon(":/icons/editpaste"));
|
|
|
|
ui->deleteButton->setIcon(SingleColorIcon(":/icons/remove"));
|
|
|
|
ui->deleteButton_is->setIcon(SingleColorIcon(":/icons/remove"));
|
|
|
|
ui->deleteButton_s->setIcon(SingleColorIcon(":/icons/remove"));
|
|
|
|
|
2013-10-24 16:02:39 +02:00
|
|
|
setCurrentWidget(ui->SendCoins);
|
2013-07-22 08:50:39 +02:00
|
|
|
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifdef Q_OS_MAC
|
2011-10-07 13:21:45 +02:00
|
|
|
ui->payToLayout->setSpacing(4);
|
|
|
|
#endif
|
2012-05-07 00:19:22 +02:00
|
|
|
#if QT_VERSION >= 0x040700
|
|
|
|
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
|
|
|
|
#endif
|
2011-07-16 19:01:05 +02:00
|
|
|
|
2013-10-24 16:02:39 +02:00
|
|
|
// normal bitcoin address field
|
2011-07-16 19:01:05 +02:00
|
|
|
GUIUtil::setupAddressWidget(ui->payTo, this);
|
2013-10-24 16:02:39 +02:00
|
|
|
// just a label for displaying bitcoin address(es)
|
|
|
|
ui->payTo_is->setFont(GUIUtil::bitcoinAddressFont());
|
2014-07-22 09:30:04 +02:00
|
|
|
|
|
|
|
// Connect signals
|
|
|
|
connect(ui->payAmount, SIGNAL(valueChanged()), this, SIGNAL(payAmountChanged()));
|
2014-07-23 14:34:36 +02:00
|
|
|
connect(ui->checkboxSubtractFeeFromAmount, SIGNAL(toggled(bool)), this, SIGNAL(subtractFeeFromAmountChanged()));
|
2014-07-22 09:30:04 +02:00
|
|
|
connect(ui->deleteButton, SIGNAL(clicked()), this, SLOT(deleteClicked()));
|
|
|
|
connect(ui->deleteButton_is, SIGNAL(clicked()), this, SLOT(deleteClicked()));
|
|
|
|
connect(ui->deleteButton_s, SIGNAL(clicked()), this, SLOT(deleteClicked()));
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SendCoinsEntry::~SendCoinsEntry()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SendCoinsEntry::on_pasteButton_clicked()
|
|
|
|
{
|
|
|
|
// Paste text from clipboard into recipient field
|
|
|
|
ui->payTo->setText(QApplication::clipboard()->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SendCoinsEntry::on_addressBookButton_clicked()
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!model)
|
|
|
|
return;
|
2013-10-16 15:14:26 +02:00
|
|
|
AddressBookPage dlg(AddressBookPage::ForSelection, AddressBookPage::SendingTab, this);
|
2011-07-16 19:01:05 +02:00
|
|
|
dlg.setModel(model->getAddressTableModel());
|
|
|
|
if(dlg.exec())
|
|
|
|
{
|
|
|
|
ui->payTo->setText(dlg.getReturnValue());
|
|
|
|
ui->payAmount->setFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SendCoinsEntry::on_payTo_textChanged(const QString &address)
|
|
|
|
{
|
2013-10-16 17:11:39 +02:00
|
|
|
updateLabel(address);
|
2012-04-13 21:08:46 +02:00
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
|
|
|
|
void SendCoinsEntry::setModel(WalletModel *model)
|
|
|
|
{
|
|
|
|
this->model = model;
|
2012-06-09 15:41:21 +02:00
|
|
|
|
2013-10-24 16:02:39 +02:00
|
|
|
if (model && model->getOptionsModel())
|
2012-06-09 15:41:21 +02:00
|
|
|
connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit()));
|
|
|
|
|
2012-03-16 13:23:59 +01:00
|
|
|
clear();
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SendCoinsEntry::clear()
|
|
|
|
{
|
2013-10-24 16:02:39 +02:00
|
|
|
// clear UI elements for normal payment
|
2011-07-16 19:01:05 +02:00
|
|
|
ui->payTo->clear();
|
|
|
|
ui->addAsLabel->clear();
|
2011-07-22 17:06:37 +02:00
|
|
|
ui->payAmount->clear();
|
2014-07-23 14:34:36 +02:00
|
|
|
ui->checkboxSubtractFeeFromAmount->setCheckState(Qt::Unchecked);
|
2014-01-21 23:39:29 +01:00
|
|
|
ui->messageTextLabel->clear();
|
|
|
|
ui->messageTextLabel->hide();
|
|
|
|
ui->messageLabel->hide();
|
2015-03-18 11:22:27 +01:00
|
|
|
// clear UI elements for unauthenticated payment request
|
2013-10-24 16:02:39 +02:00
|
|
|
ui->payTo_is->clear();
|
|
|
|
ui->memoTextLabel_is->clear();
|
|
|
|
ui->payAmount_is->clear();
|
2015-03-18 11:22:27 +01:00
|
|
|
// clear UI elements for authenticated payment request
|
2013-10-11 14:22:43 +02:00
|
|
|
ui->payTo_s->clear();
|
|
|
|
ui->memoTextLabel_s->clear();
|
|
|
|
ui->payAmount_s->clear();
|
|
|
|
|
2012-06-09 15:41:21 +02:00
|
|
|
// update the display unit, to not use the default ("BTC")
|
|
|
|
updateDisplayUnit();
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
|
|
|
|
2013-11-22 13:53:05 +01:00
|
|
|
void SendCoinsEntry::deleteClicked()
|
2011-07-16 19:01:05 +02:00
|
|
|
{
|
|
|
|
emit removeEntry(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SendCoinsEntry::validate()
|
|
|
|
{
|
2013-10-24 16:02:39 +02:00
|
|
|
if (!model)
|
|
|
|
return false;
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
// Check input validity
|
|
|
|
bool retval = true;
|
|
|
|
|
2013-10-24 16:02:39 +02:00
|
|
|
// Skip checks for payment request
|
|
|
|
if (recipient.paymentRequest.IsInitialized())
|
2013-07-22 08:50:39 +02:00
|
|
|
return retval;
|
|
|
|
|
2013-11-20 15:56:51 +01:00
|
|
|
if (!model->validateAddress(ui->payTo->text()))
|
2011-07-16 19:01:05 +02:00
|
|
|
{
|
2013-08-08 05:09:07 +02:00
|
|
|
ui->payTo->setValid(false);
|
2011-07-16 19:01:05 +02:00
|
|
|
retval = false;
|
|
|
|
}
|
2013-08-08 05:09:07 +02:00
|
|
|
|
2013-10-24 16:02:39 +02:00
|
|
|
if (!ui->payAmount->validate())
|
2011-07-26 13:08:34 +02:00
|
|
|
{
|
2013-08-08 05:09:07 +02:00
|
|
|
retval = false;
|
2011-07-26 13:08:34 +02:00
|
|
|
}
|
|
|
|
|
2014-07-18 16:31:13 +02:00
|
|
|
// Sending a zero amount is invalid
|
|
|
|
if (ui->payAmount->value(0) <= 0)
|
|
|
|
{
|
|
|
|
ui->payAmount->setValid(false);
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
|
2013-08-08 05:09:07 +02:00
|
|
|
// Reject dust outputs:
|
|
|
|
if (retval && GUIUtil::isDust(ui->payTo->text(), ui->payAmount->value())) {
|
|
|
|
ui->payAmount->setValid(false);
|
2011-07-16 19:01:05 +02:00
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
SendCoinsRecipient SendCoinsEntry::getValue()
|
|
|
|
{
|
2013-10-24 16:02:39 +02:00
|
|
|
// Payment request
|
|
|
|
if (recipient.paymentRequest.IsInitialized())
|
2013-07-22 08:50:39 +02:00
|
|
|
return recipient;
|
2011-07-16 19:01:05 +02:00
|
|
|
|
2013-10-24 16:02:39 +02:00
|
|
|
// Normal payment
|
2013-07-22 08:50:39 +02:00
|
|
|
recipient.address = ui->payTo->text();
|
|
|
|
recipient.label = ui->addAsLabel->text();
|
|
|
|
recipient.amount = ui->payAmount->value();
|
2014-01-21 23:39:29 +01:00
|
|
|
recipient.message = ui->messageTextLabel->text();
|
2014-07-23 14:34:36 +02:00
|
|
|
recipient.fSubtractFeeFromAmount = (ui->checkboxSubtractFeeFromAmount->checkState() == Qt::Checked);
|
2011-07-16 19:01:05 +02:00
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
return recipient;
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *SendCoinsEntry::setupTabChain(QWidget *prev)
|
|
|
|
{
|
|
|
|
QWidget::setTabOrder(prev, ui->payTo);
|
2014-01-02 09:32:03 +01:00
|
|
|
QWidget::setTabOrder(ui->payTo, ui->addAsLabel);
|
|
|
|
QWidget *w = ui->payAmount->setupTabChain(ui->addAsLabel);
|
2014-07-23 14:34:36 +02:00
|
|
|
QWidget::setTabOrder(w, ui->checkboxSubtractFeeFromAmount);
|
|
|
|
QWidget::setTabOrder(ui->checkboxSubtractFeeFromAmount, ui->addressBookButton);
|
2011-07-16 19:01:05 +02:00
|
|
|
QWidget::setTabOrder(ui->addressBookButton, ui->pasteButton);
|
|
|
|
QWidget::setTabOrder(ui->pasteButton, ui->deleteButton);
|
2014-01-02 09:32:03 +01:00
|
|
|
return ui->deleteButton;
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
2011-08-07 16:04:48 +02:00
|
|
|
|
|
|
|
void SendCoinsEntry::setValue(const SendCoinsRecipient &value)
|
|
|
|
{
|
2013-07-22 08:50:39 +02:00
|
|
|
recipient = value;
|
|
|
|
|
2013-10-24 16:02:39 +02:00
|
|
|
if (recipient.paymentRequest.IsInitialized()) // payment request
|
|
|
|
{
|
2015-03-18 11:22:27 +01:00
|
|
|
if (recipient.authenticatedMerchant.isEmpty()) // unauthenticated
|
2013-10-24 16:02:39 +02:00
|
|
|
{
|
|
|
|
ui->payTo_is->setText(recipient.address);
|
2013-10-27 21:52:01 +01:00
|
|
|
ui->memoTextLabel_is->setText(recipient.message);
|
2013-10-24 16:02:39 +02:00
|
|
|
ui->payAmount_is->setValue(recipient.amount);
|
|
|
|
ui->payAmount_is->setReadOnly(true);
|
2015-03-18 11:22:27 +01:00
|
|
|
setCurrentWidget(ui->SendCoins_UnauthenticatedPaymentRequest);
|
2013-10-24 16:02:39 +02:00
|
|
|
}
|
2015-03-18 11:22:27 +01:00
|
|
|
else // authenticated
|
2013-10-24 16:02:39 +02:00
|
|
|
{
|
|
|
|
ui->payTo_s->setText(recipient.authenticatedMerchant);
|
2013-10-27 21:52:01 +01:00
|
|
|
ui->memoTextLabel_s->setText(recipient.message);
|
2013-10-24 16:02:39 +02:00
|
|
|
ui->payAmount_s->setValue(recipient.amount);
|
|
|
|
ui->payAmount_s->setReadOnly(true);
|
2015-03-18 11:22:27 +01:00
|
|
|
setCurrentWidget(ui->SendCoins_AuthenticatedPaymentRequest);
|
2013-10-24 16:02:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else // normal payment
|
2013-10-11 14:22:43 +02:00
|
|
|
{
|
2014-01-21 23:39:29 +01:00
|
|
|
// message
|
|
|
|
ui->messageTextLabel->setText(recipient.message);
|
|
|
|
ui->messageTextLabel->setVisible(!recipient.message.isEmpty());
|
|
|
|
ui->messageLabel->setVisible(!recipient.message.isEmpty());
|
|
|
|
|
2014-03-12 17:03:56 +01:00
|
|
|
ui->addAsLabel->clear();
|
|
|
|
ui->payTo->setText(recipient.address); // this may set a label from addressbook
|
|
|
|
if (!recipient.label.isEmpty()) // if a label had been set from the addressbook, dont overwrite with an empty label
|
|
|
|
ui->addAsLabel->setText(recipient.label);
|
2013-10-11 14:22:43 +02:00
|
|
|
ui->payAmount->setValue(recipient.amount);
|
|
|
|
}
|
2011-08-07 16:04:48 +02:00
|
|
|
}
|
|
|
|
|
2013-01-25 18:46:53 +01:00
|
|
|
void SendCoinsEntry::setAddress(const QString &address)
|
|
|
|
{
|
|
|
|
ui->payTo->setText(address);
|
|
|
|
ui->payAmount->setFocus();
|
|
|
|
}
|
|
|
|
|
2011-08-07 16:04:48 +02:00
|
|
|
bool SendCoinsEntry::isClear()
|
|
|
|
{
|
2013-10-24 16:02:39 +02:00
|
|
|
return ui->payTo->text().isEmpty() && ui->payTo_is->text().isEmpty() && ui->payTo_s->text().isEmpty();
|
2011-08-07 16:04:48 +02:00
|
|
|
}
|
|
|
|
|
2011-12-07 06:00:04 +01:00
|
|
|
void SendCoinsEntry::setFocus()
|
|
|
|
{
|
|
|
|
ui->payTo->setFocus();
|
|
|
|
}
|
|
|
|
|
2012-06-09 15:41:21 +02:00
|
|
|
void SendCoinsEntry::updateDisplayUnit()
|
|
|
|
{
|
|
|
|
if(model && model->getOptionsModel())
|
|
|
|
{
|
|
|
|
// Update payAmount with the current unit
|
|
|
|
ui->payAmount->setDisplayUnit(model->getOptionsModel()->getDisplayUnit());
|
2013-10-24 16:02:39 +02:00
|
|
|
ui->payAmount_is->setDisplayUnit(model->getOptionsModel()->getDisplayUnit());
|
2013-07-22 08:50:39 +02:00
|
|
|
ui->payAmount_s->setDisplayUnit(model->getOptionsModel()->getDisplayUnit());
|
2012-06-09 15:41:21 +02:00
|
|
|
}
|
|
|
|
}
|
2013-10-16 17:11:39 +02:00
|
|
|
|
|
|
|
bool SendCoinsEntry::updateLabel(const QString &address)
|
|
|
|
{
|
|
|
|
if(!model)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Fill in label from address book, if address has an associated label
|
|
|
|
QString associatedLabel = model->getAddressTableModel()->labelForAddress(address);
|
|
|
|
if(!associatedLabel.isEmpty())
|
|
|
|
{
|
|
|
|
ui->addAsLabel->setText(associatedLabel);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|