2011-06-20 21:31:42 +02:00
|
|
|
#ifndef BITCOINFIELD_H
|
|
|
|
#define BITCOINFIELD_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
2011-07-16 19:01:05 +02:00
|
|
|
class QValidatedLineEdit;
|
2011-07-26 13:08:34 +02:00
|
|
|
class QComboBox;
|
2011-06-20 21:31:42 +02:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2011-06-21 07:35:59 +02:00
|
|
|
// Coin amount entry widget with separate parts for whole
|
|
|
|
// coins and decimals.
|
2011-06-20 21:31:42 +02:00
|
|
|
class BitcoinAmountField: public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2011-07-26 13:08:34 +02:00
|
|
|
//Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged USER true);
|
|
|
|
Q_PROPERTY(qint64 value READ value WRITE setValue NOTIFY textChanged USER true);
|
2011-06-20 21:31:42 +02:00
|
|
|
public:
|
|
|
|
explicit BitcoinAmountField(QWidget *parent = 0);
|
|
|
|
|
2011-07-26 13:08:34 +02:00
|
|
|
qint64 value(bool *valid=0) const;
|
|
|
|
void setValue(qint64 value);
|
2011-07-22 17:06:37 +02:00
|
|
|
|
2011-07-26 13:08:34 +02:00
|
|
|
// Mark current valid as invalid in UI
|
|
|
|
void setValid(bool valid);
|
2011-07-16 19:01:05 +02:00
|
|
|
bool validate();
|
2011-07-26 13:08:34 +02:00
|
|
|
|
|
|
|
// Make field empty and ready for new input
|
|
|
|
void clear();
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
// Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907)
|
|
|
|
// Hence we have to set it up manually
|
|
|
|
QWidget *setupTabChain(QWidget *prev);
|
2011-06-20 21:31:42 +02:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void textChanged();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Intercept '.' and ',' keys, if pressed focus a specified widget
|
|
|
|
bool eventFilter(QObject *object, QEvent *event);
|
|
|
|
|
|
|
|
private:
|
2011-07-16 19:01:05 +02:00
|
|
|
QValidatedLineEdit *amount;
|
|
|
|
QValidatedLineEdit *decimals;
|
2011-07-26 13:08:34 +02:00
|
|
|
QComboBox *unit;
|
|
|
|
int currentUnit;
|
|
|
|
|
|
|
|
void setText(const QString &text);
|
|
|
|
QString text() const;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void unitChanged(int idx);
|
|
|
|
|
2011-06-20 21:31:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // BITCOINFIELD_H
|