aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoinamountfield.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/bitcoinamountfield.cpp')
-rw-r--r--src/qt/bitcoinamountfield.cpp77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/qt/bitcoinamountfield.cpp b/src/qt/bitcoinamountfield.cpp
new file mode 100644
index 0000000000..1359a32b87
--- /dev/null
+++ b/src/qt/bitcoinamountfield.cpp
@@ -0,0 +1,77 @@
+#include "bitcoinamountfield.h"
+
+#include <QLabel>
+#include <QLineEdit>
+#include <QRegExpValidator>
+#include <QHBoxLayout>
+#include <QKeyEvent>
+
+BitcoinAmountField::BitcoinAmountField(QWidget *parent):
+ QWidget(parent), amount(0), decimals(0)
+{
+ amount = new QLineEdit(this);
+ amount->setValidator(new QRegExpValidator(QRegExp("[0-9]+"), this));
+ amount->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+ amount->installEventFilter(this);
+ amount->setMaximumWidth(100);
+ decimals = new QLineEdit(this);
+ decimals->setValidator(new QRegExpValidator(QRegExp("[0-9]+"), this));
+ decimals->setMaxLength(8);
+ decimals->setAlignment(Qt::AlignLeft|Qt::AlignVCenter);
+ decimals->setMaximumWidth(75);
+
+ QHBoxLayout *layout = new QHBoxLayout(this);
+ layout->setSpacing(0);
+ layout->addWidget(amount);
+ layout->addWidget(new QLabel(QString(".")));
+ layout->addWidget(decimals);
+ layout->addWidget(new QLabel(QString(" BTC")));
+ layout->addStretch(1);
+ layout->setContentsMargins(0,0,0,0);
+
+ setFocusPolicy(Qt::TabFocus);
+ setLayout(layout);
+ setFocusProxy(amount);
+
+ // If one if the widgets changes, the combined content changes as well
+ connect(amount, SIGNAL(textChanged(QString)), this, SIGNAL(textChanged()));
+ connect(decimals, SIGNAL(textChanged(QString)), this, SIGNAL(textChanged()));
+}
+
+void BitcoinAmountField::setText(const QString &text)
+{
+ const QStringList parts = text.split(QString("."));
+ if(parts.size() == 2)
+ {
+ amount->setText(parts[0]);
+ decimals->setText(parts[1]);
+ }
+ else
+ {
+ amount->setText(QString());
+ decimals->setText(QString());
+ }
+}
+
+QString BitcoinAmountField::text() const
+{
+ if(amount->text().isEmpty() || decimals->text().isEmpty())
+ return QString();
+ return amount->text() + QString(".") + decimals->text();
+}
+
+// Intercept '.' and ',' keys, if pressed focus a specified widget
+bool BitcoinAmountField::eventFilter(QObject *object, QEvent *event)
+{
+ Q_UNUSED(object);
+ if(event->type() == QEvent::KeyPress)
+ {
+ QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
+ if(keyEvent->key() == Qt::Key_Period || keyEvent->key() == Qt::Key_Comma)
+ {
+ decimals->setFocus();
+ decimals->selectAll();
+ }
+ }
+ return false;
+}