2011-07-25 21:35:45 +02:00
|
|
|
#ifndef BITCOINUNITS_H
|
|
|
|
#define BITCOINUNITS_H
|
|
|
|
|
|
|
|
#include <QString>
|
2011-07-26 13:08:34 +02:00
|
|
|
#include <QAbstractListModel>
|
2011-07-25 21:35:45 +02:00
|
|
|
|
|
|
|
// Bitcoin unit definitions
|
2011-07-26 13:08:34 +02:00
|
|
|
class BitcoinUnits: public QAbstractListModel
|
2011-07-25 21:35:45 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-07-26 13:08:34 +02:00
|
|
|
explicit BitcoinUnits(QObject *parent);
|
|
|
|
|
2011-07-25 21:35:45 +02:00
|
|
|
enum Unit
|
|
|
|
{
|
2011-07-26 13:08:34 +02:00
|
|
|
// Source: https://en.bitcoin.it/wiki/Units
|
|
|
|
// Please add only sensible ones
|
2011-07-25 21:35:45 +02:00
|
|
|
BTC,
|
|
|
|
mBTC,
|
|
|
|
uBTC
|
|
|
|
};
|
|
|
|
|
2011-07-26 13:08:34 +02:00
|
|
|
/// Static API
|
|
|
|
// Get list of units, for dropdown box
|
|
|
|
static QList<Unit> availableUnits();
|
2011-07-25 21:35:45 +02:00
|
|
|
// Short name
|
2011-07-26 13:08:34 +02:00
|
|
|
static QString name(int unit);
|
2011-07-25 21:35:45 +02:00
|
|
|
// Longer description
|
2011-07-26 13:08:34 +02:00
|
|
|
static QString description(int unit);
|
2011-07-25 21:35:45 +02:00
|
|
|
// Number of satoshis / unit
|
2011-07-26 13:08:34 +02:00
|
|
|
static qint64 factor(int unit);
|
|
|
|
// Number of amount digits (to represent max number of coins)
|
|
|
|
static int amountDigits(int unit);
|
2011-07-25 21:35:45 +02:00
|
|
|
// Number of decimals left
|
2011-07-26 13:08:34 +02:00
|
|
|
static int decimals(int unit);
|
2011-07-25 21:35:45 +02:00
|
|
|
// Format as string
|
2011-07-26 13:08:34 +02:00
|
|
|
static QString format(int unit, qint64 amount, bool plussign=false);
|
2011-07-25 21:35:45 +02:00
|
|
|
// Format as string (with unit)
|
2011-07-26 13:08:34 +02:00
|
|
|
static QString formatWithUnit(int unit, qint64 amount, bool plussign=false);
|
2011-07-25 21:35:45 +02:00
|
|
|
// Parse string to coin amount
|
2011-07-26 13:08:34 +02:00
|
|
|
static bool parse(int unit, const QString &value, qint64 *val_out);
|
2011-07-25 21:35:45 +02:00
|
|
|
|
2011-07-26 13:08:34 +02:00
|
|
|
/// AbstractListModel implementation
|
|
|
|
enum {
|
|
|
|
// Unit identifier
|
|
|
|
UnitRole = Qt::UserRole
|
|
|
|
} RoleIndex;
|
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
private:
|
|
|
|
QList<BitcoinUnits::Unit> unitlist;
|
2011-07-25 21:35:45 +02:00
|
|
|
};
|
2011-07-26 13:08:34 +02:00
|
|
|
typedef BitcoinUnits::Unit BitcoinUnit;
|
2011-07-25 21:35:45 +02:00
|
|
|
|
|
|
|
#endif // BITCOINUNITS_H
|