Bitcoin Core 22.99.0
P2P Digital Currency
bitcoinamountfield.h
Go to the documentation of this file.
1// Copyright (c) 2011-2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_QT_BITCOINAMOUNTFIELD_H
6#define BITCOIN_QT_BITCOINAMOUNTFIELD_H
7
8#include <consensus/amount.h>
9
10#include <QWidget>
11
12class AmountSpinBox;
13
14QT_BEGIN_NAMESPACE
15class QValueComboBox;
16QT_END_NAMESPACE
17
20class BitcoinAmountField: public QWidget
21{
22 Q_OBJECT
23
24 // ugly hack: for some unknown reason CAmount (instead of qint64) does not work here as expected
25 // discussion: https://github.com/bitcoin/bitcoin/pull/5117
26 Q_PROPERTY(qint64 value READ value WRITE setValue NOTIFY valueChanged USER true)
27
28public:
29 explicit BitcoinAmountField(QWidget *parent = nullptr);
30
31 CAmount value(bool *value=nullptr) const;
32 void setValue(const CAmount& value);
33
35 void SetAllowEmpty(bool allow);
36
38 void SetMinValue(const CAmount& value);
39
41 void SetMaxValue(const CAmount& value);
42
44 void setSingleStep(const CAmount& step);
45
47 void setReadOnly(bool fReadOnly);
48
50 void setValid(bool valid);
52 bool validate();
53
55 void setDisplayUnit(int unit);
56
58 void clear();
59
61 void setEnabled(bool fEnabled);
62
66 QWidget *setupTabChain(QWidget *prev);
67
68Q_SIGNALS:
69 void valueChanged();
70
71protected:
73 bool eventFilter(QObject *object, QEvent *event) override;
74
75private:
78
79private Q_SLOTS:
80 void unitChanged(int idx);
81
82};
83
84#endif // BITCOIN_QT_BITCOINAMOUNTFIELD_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
QSpinBox that uses fixed-point numbers internally and uses our own formatting/parsing functions.
Widget for entering bitcoin amounts.
AmountSpinBox * amount
void setEnabled(bool fEnabled)
Enable/Disable.
QValueComboBox * unit
void SetMaxValue(const CAmount &value)
Set the maximum value in satoshis.
void setSingleStep(const CAmount &step)
Set single step in satoshis.
void SetMinValue(const CAmount &value)
Set the minimum value in satoshis.
bool eventFilter(QObject *object, QEvent *event) override
Intercept focus-in event and ',' key presses.
void setReadOnly(bool fReadOnly)
Make read-only.
BitcoinAmountField(QWidget *parent=nullptr)
void setDisplayUnit(int unit)
Change unit used to display amount.
void clear()
Make field empty and ready for new input.
bool validate()
Perform input validation, mark field as invalid if entered value is not valid.
QWidget * setupTabChain(QWidget *prev)
Qt messes up the tab chain by default in some cases (issue https://bugreports.qt-project....
void setValid(bool valid)
Mark current value as invalid in UI.
void setValue(const CAmount &value)
void SetAllowEmpty(bool allow)
If allow empty is set to false the field will be set to the minimum allowed value if left empty.