2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2011-2014 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-06-20 21:31:42 +02:00
|
|
|
#include "bitcoinamountfield.h"
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2011-07-25 21:35:45 +02:00
|
|
|
#include "bitcoinunits.h"
|
2011-10-07 13:21:45 +02:00
|
|
|
#include "guiconstants.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "qvaluecombobox.h"
|
2011-10-07 13:21:45 +02:00
|
|
|
|
2013-07-23 08:52:24 +02:00
|
|
|
#include <QApplication>
|
2014-07-18 16:31:13 +02:00
|
|
|
#include <QAbstractSpinBox>
|
2011-06-20 21:31:42 +02:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QKeyEvent>
|
2014-07-18 16:31:13 +02:00
|
|
|
#include <QLineEdit>
|
2011-06-20 21:31:42 +02:00
|
|
|
|
2014-07-18 16:31:13 +02:00
|
|
|
/** QSpinBox that uses fixed-point numbers internally and uses our own
|
|
|
|
* formatting/parsing functions.
|
|
|
|
*/
|
|
|
|
class AmountSpinBox: public QAbstractSpinBox
|
2014-05-10 00:50:09 +02:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
Q_OBJECT
|
2015-01-10 15:02:12 +01:00
|
|
|
|
2014-05-10 00:50:09 +02:00
|
|
|
public:
|
|
|
|
explicit AmountSpinBox(QWidget *parent):
|
2014-07-18 16:31:13 +02:00
|
|
|
QAbstractSpinBox(parent),
|
|
|
|
currentUnit(BitcoinUnits::BTC),
|
|
|
|
singleStep(100000) // satoshis
|
2014-05-10 00:50:09 +02:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
setAlignment(Qt::AlignRight);
|
|
|
|
|
|
|
|
connect(lineEdit(), SIGNAL(textEdited(QString)), this, SIGNAL(valueChanged()));
|
|
|
|
}
|
|
|
|
|
|
|
|
QValidator::State validate(QString &text, int &pos) const
|
|
|
|
{
|
|
|
|
if(text.isEmpty())
|
|
|
|
return QValidator::Intermediate;
|
|
|
|
bool valid = false;
|
|
|
|
parse(text, &valid);
|
|
|
|
/* Make sure we return Intermediate so that fixup() is called on defocus */
|
|
|
|
return valid ? QValidator::Intermediate : QValidator::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
void fixup(QString &input) const
|
|
|
|
{
|
|
|
|
bool valid = false;
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount val = parse(input, &valid);
|
2014-07-18 16:31:13 +02:00
|
|
|
if(valid)
|
|
|
|
{
|
|
|
|
input = BitcoinUnits::format(currentUnit, val, false, BitcoinUnits::separatorAlways);
|
|
|
|
lineEdit()->setText(input);
|
|
|
|
}
|
2014-05-10 00:50:09 +02:00
|
|
|
}
|
2014-07-18 16:31:13 +02:00
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount value(bool *valid_out=0) const
|
2014-05-10 00:50:09 +02:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
return parse(text(), valid_out);
|
|
|
|
}
|
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
void setValue(const CAmount& value)
|
2014-07-18 16:31:13 +02:00
|
|
|
{
|
|
|
|
lineEdit()->setText(BitcoinUnits::format(currentUnit, value, false, BitcoinUnits::separatorAlways));
|
|
|
|
emit valueChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void stepBy(int steps)
|
|
|
|
{
|
|
|
|
bool valid = false;
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount val = value(&valid);
|
2014-07-18 16:31:13 +02:00
|
|
|
val = val + steps * singleStep;
|
2014-04-23 00:46:19 +02:00
|
|
|
val = qMin(qMax(val, CAmount(0)), BitcoinUnits::maxMoney());
|
2014-07-18 16:31:13 +02:00
|
|
|
setValue(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setDisplayUnit(int unit)
|
|
|
|
{
|
|
|
|
bool valid = false;
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount val = value(&valid);
|
2014-07-18 16:31:13 +02:00
|
|
|
|
|
|
|
currentUnit = unit;
|
|
|
|
|
|
|
|
if(valid)
|
|
|
|
setValue(val);
|
2014-05-10 00:50:09 +02:00
|
|
|
else
|
2014-07-18 16:31:13 +02:00
|
|
|
clear();
|
2014-05-10 00:50:09 +02:00
|
|
|
}
|
2014-07-18 16:31:13 +02:00
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
void setSingleStep(const CAmount& step)
|
2014-05-10 00:50:09 +02:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
singleStep = step;
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize minimumSizeHint() const
|
|
|
|
{
|
|
|
|
if(cachedMinimumSizeHint.isEmpty())
|
|
|
|
{
|
|
|
|
ensurePolished();
|
|
|
|
|
|
|
|
const QFontMetrics fm(fontMetrics());
|
|
|
|
int h = lineEdit()->minimumSizeHint().height();
|
|
|
|
int w = fm.width(BitcoinUnits::format(BitcoinUnits::BTC, BitcoinUnits::maxMoney(), false, BitcoinUnits::separatorAlways));
|
|
|
|
w += 2; // cursor blinking space
|
|
|
|
|
|
|
|
QStyleOptionSpinBox opt;
|
|
|
|
initStyleOption(&opt);
|
|
|
|
QSize hint(w, h);
|
|
|
|
QSize extra(35, 6);
|
|
|
|
opt.rect.setSize(hint + extra);
|
|
|
|
extra += hint - style()->subControlRect(QStyle::CC_SpinBox, &opt,
|
|
|
|
QStyle::SC_SpinBoxEditField, this).size();
|
|
|
|
// get closer to final result by repeating the calculation
|
|
|
|
opt.rect.setSize(hint + extra);
|
|
|
|
extra += hint - style()->subControlRect(QStyle::CC_SpinBox, &opt,
|
|
|
|
QStyle::SC_SpinBoxEditField, this).size();
|
|
|
|
hint += extra;
|
2014-11-16 01:07:09 +01:00
|
|
|
hint.setHeight(h);
|
2014-07-18 16:31:13 +02:00
|
|
|
|
|
|
|
opt.rect = rect();
|
|
|
|
|
|
|
|
cachedMinimumSizeHint = style()->sizeFromContents(QStyle::CT_SpinBox, &opt, hint, this)
|
|
|
|
.expandedTo(QApplication::globalStrut());
|
|
|
|
}
|
|
|
|
return cachedMinimumSizeHint;
|
|
|
|
}
|
2015-01-10 15:02:12 +01:00
|
|
|
|
2014-07-18 16:31:13 +02:00
|
|
|
private:
|
|
|
|
int currentUnit;
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount singleStep;
|
2014-07-18 16:31:13 +02:00
|
|
|
mutable QSize cachedMinimumSizeHint;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a string into a number of base monetary units and
|
|
|
|
* return validity.
|
|
|
|
* @note Must return 0 if !valid.
|
|
|
|
*/
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount parse(const QString &text, bool *valid_out=0) const
|
2014-07-18 16:31:13 +02:00
|
|
|
{
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount val = 0;
|
2014-07-18 16:31:13 +02:00
|
|
|
bool valid = BitcoinUnits::parse(currentUnit, text, &val);
|
|
|
|
if(valid)
|
|
|
|
{
|
|
|
|
if(val < 0 || val > BitcoinUnits::maxMoney())
|
|
|
|
valid = false;
|
|
|
|
}
|
|
|
|
if(valid_out)
|
|
|
|
*valid_out = valid;
|
|
|
|
return valid ? val : 0;
|
2014-05-10 00:50:09 +02:00
|
|
|
}
|
2014-07-18 16:31:13 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool event(QEvent *event)
|
2014-05-10 00:50:09 +02:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
if (event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease)
|
|
|
|
{
|
|
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
|
|
|
|
if (keyEvent->key() == Qt::Key_Comma)
|
|
|
|
{
|
|
|
|
// Translate a comma into a period
|
|
|
|
QKeyEvent periodKeyEvent(event->type(), Qt::Key_Period, keyEvent->modifiers(), ".", keyEvent->isAutoRepeat(), keyEvent->count());
|
|
|
|
return QAbstractSpinBox::event(&periodKeyEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QAbstractSpinBox::event(event);
|
2014-05-10 00:50:09 +02:00
|
|
|
}
|
2014-07-18 16:31:13 +02:00
|
|
|
|
2015-01-10 15:02:12 +01:00
|
|
|
StepEnabled stepEnabled() const
|
|
|
|
{
|
|
|
|
StepEnabled rv = 0;
|
|
|
|
if (isReadOnly()) // Disable steps when AmountSpinBox is read-only
|
|
|
|
return StepNone;
|
|
|
|
if(text().isEmpty()) // Allow step-up with empty field
|
|
|
|
return StepUpEnabled;
|
|
|
|
bool valid = false;
|
|
|
|
CAmount val = value(&valid);
|
|
|
|
if(valid)
|
|
|
|
{
|
|
|
|
if(val > 0)
|
|
|
|
rv |= StepDownEnabled;
|
|
|
|
if(val < BitcoinUnits::maxMoney())
|
|
|
|
rv |= StepUpEnabled;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-07-18 16:31:13 +02:00
|
|
|
signals:
|
|
|
|
void valueChanged();
|
2014-05-10 00:50:09 +02:00
|
|
|
};
|
|
|
|
|
2014-07-18 16:31:13 +02:00
|
|
|
#include "bitcoinamountfield.moc"
|
|
|
|
|
2013-12-16 22:54:02 +01:00
|
|
|
BitcoinAmountField::BitcoinAmountField(QWidget *parent) :
|
|
|
|
QWidget(parent),
|
2014-07-18 16:31:13 +02:00
|
|
|
amount(0)
|
2011-06-20 21:31:42 +02:00
|
|
|
{
|
2014-05-10 00:50:09 +02:00
|
|
|
amount = new AmountSpinBox(this);
|
2011-10-07 13:21:45 +02:00
|
|
|
amount->setLocale(QLocale::c());
|
2011-06-20 21:31:42 +02:00
|
|
|
amount->installEventFilter(this);
|
2011-10-07 13:21:45 +02:00
|
|
|
amount->setMaximumWidth(170);
|
2011-06-20 21:31:42 +02:00
|
|
|
|
|
|
|
QHBoxLayout *layout = new QHBoxLayout(this);
|
|
|
|
layout->addWidget(amount);
|
2011-07-29 14:36:35 +02:00
|
|
|
unit = new QValueComboBox(this);
|
2011-07-26 13:08:34 +02:00
|
|
|
unit->setModel(new BitcoinUnits(this));
|
|
|
|
layout->addWidget(unit);
|
2011-06-20 21:31:42 +02:00
|
|
|
layout->addStretch(1);
|
2011-06-21 07:35:59 +02:00
|
|
|
layout->setContentsMargins(0,0,0,0);
|
2011-06-20 21:31:42 +02:00
|
|
|
|
|
|
|
setLayout(layout);
|
2011-07-16 19:01:05 +02:00
|
|
|
|
|
|
|
setFocusPolicy(Qt::TabFocus);
|
2011-06-20 21:31:42 +02:00
|
|
|
setFocusProxy(amount);
|
|
|
|
|
|
|
|
// If one if the widgets changes, the combined content changes as well
|
2014-07-18 16:31:13 +02:00
|
|
|
connect(amount, SIGNAL(valueChanged()), this, SIGNAL(valueChanged()));
|
2011-07-26 13:08:34 +02:00
|
|
|
connect(unit, SIGNAL(currentIndexChanged(int)), this, SLOT(unitChanged(int)));
|
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Set default based on configuration
|
2011-07-26 13:08:34 +02:00
|
|
|
unitChanged(unit->currentIndex());
|
2011-06-20 21:31:42 +02:00
|
|
|
}
|
|
|
|
|
2011-07-22 17:06:37 +02:00
|
|
|
void BitcoinAmountField::clear()
|
|
|
|
{
|
|
|
|
amount->clear();
|
2011-07-26 13:31:59 +02:00
|
|
|
unit->setCurrentIndex(0);
|
2011-07-22 17:06:37 +02:00
|
|
|
}
|
|
|
|
|
2014-11-02 00:14:47 +01:00
|
|
|
void BitcoinAmountField::setEnabled(bool fEnabled)
|
|
|
|
{
|
|
|
|
amount->setEnabled(fEnabled);
|
|
|
|
unit->setEnabled(fEnabled);
|
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
bool BitcoinAmountField::validate()
|
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
bool valid = false;
|
|
|
|
value(&valid);
|
2011-10-07 13:21:45 +02:00
|
|
|
setValid(valid);
|
2011-07-16 19:01:05 +02:00
|
|
|
return valid;
|
|
|
|
}
|
|
|
|
|
2011-07-26 13:08:34 +02:00
|
|
|
void BitcoinAmountField::setValid(bool valid)
|
|
|
|
{
|
2011-10-07 13:21:45 +02:00
|
|
|
if (valid)
|
|
|
|
amount->setStyleSheet("");
|
|
|
|
else
|
|
|
|
amount->setStyleSheet(STYLE_INVALID);
|
2011-07-26 13:08:34 +02:00
|
|
|
}
|
|
|
|
|
2011-06-20 21:31:42 +02:00
|
|
|
bool BitcoinAmountField::eventFilter(QObject *object, QEvent *event)
|
|
|
|
{
|
2011-10-07 13:21:45 +02:00
|
|
|
if (event->type() == QEvent::FocusIn)
|
|
|
|
{
|
|
|
|
// Clear invalid flag on focus
|
|
|
|
setValid(true);
|
|
|
|
}
|
|
|
|
return QWidget::eventFilter(object, event);
|
2011-06-20 21:31:42 +02:00
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
|
|
|
|
QWidget *BitcoinAmountField::setupTabChain(QWidget *prev)
|
|
|
|
{
|
|
|
|
QWidget::setTabOrder(prev, amount);
|
2014-01-29 14:41:41 +01:00
|
|
|
QWidget::setTabOrder(amount, unit);
|
|
|
|
return unit;
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
2011-07-26 13:08:34 +02:00
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount BitcoinAmountField::value(bool *valid_out) const
|
2011-07-26 13:08:34 +02:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
return amount->value(valid_out);
|
2011-07-26 13:08:34 +02:00
|
|
|
}
|
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
void BitcoinAmountField::setValue(const CAmount& value)
|
2011-07-26 13:08:34 +02:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
amount->setValue(value);
|
2011-07-26 13:08:34 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 15:26:22 +02:00
|
|
|
void BitcoinAmountField::setReadOnly(bool fReadOnly)
|
2013-07-22 08:50:39 +02:00
|
|
|
{
|
2013-10-15 15:26:22 +02:00
|
|
|
amount->setReadOnly(fReadOnly);
|
|
|
|
unit->setEnabled(!fReadOnly);
|
2013-07-22 08:50:39 +02:00
|
|
|
}
|
|
|
|
|
2011-07-26 13:08:34 +02:00
|
|
|
void BitcoinAmountField::unitChanged(int idx)
|
|
|
|
{
|
|
|
|
// Use description tooltip for current unit for the combobox
|
|
|
|
unit->setToolTip(unit->itemData(idx, Qt::ToolTipRole).toString());
|
|
|
|
|
|
|
|
// Determine new unit ID
|
|
|
|
int newUnit = unit->itemData(idx, BitcoinUnits::UnitRole).toInt();
|
|
|
|
|
2014-07-18 16:31:13 +02:00
|
|
|
amount->setDisplayUnit(newUnit);
|
2011-07-29 14:36:35 +02:00
|
|
|
}
|
2011-07-26 13:08:34 +02:00
|
|
|
|
2011-07-29 14:36:35 +02:00
|
|
|
void BitcoinAmountField::setDisplayUnit(int newUnit)
|
|
|
|
{
|
|
|
|
unit->setValue(newUnit);
|
2011-07-26 13:08:34 +02:00
|
|
|
}
|
2014-02-02 04:12:30 +01:00
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
void BitcoinAmountField::setSingleStep(const CAmount& step)
|
2014-02-02 04:12:30 +01:00
|
|
|
{
|
2014-07-18 16:31:13 +02:00
|
|
|
amount->setSingleStep(step);
|
2014-02-02 04:12:30 +01:00
|
|
|
}
|