You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
487 B
21 lines
487 B
#ifndef BITCOINADDRESSVALIDATOR_H |
|
#define BITCOINADDRESSVALIDATOR_H |
|
|
|
#include <QValidator> |
|
|
|
/** Base58 entry widget validator. |
|
Corrects near-miss characters and refuses characters that are not part of base58. |
|
*/ |
|
class BitcoinAddressValidator : public QValidator |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit BitcoinAddressValidator(QObject *parent = 0); |
|
|
|
State validate(QString &input, int &pos) const; |
|
|
|
static const int MaxAddressLength = 35; |
|
}; |
|
|
|
#endif // BITCOINADDRESSVALIDATOR_H
|
|
|