2013-11-04 12:20:43 -03:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-13 16:00:27 -04:00
|
|
|
#ifndef BITCOINADDRESSVALIDATOR_H
|
|
|
|
#define BITCOINADDRESSVALIDATOR_H
|
|
|
|
|
2013-01-23 17:51:02 -03:00
|
|
|
#include <QValidator>
|
2011-05-13 16:00:27 -04:00
|
|
|
|
2013-09-02 11:27:27 -04:00
|
|
|
/** Base58 entry widget validator.
|
|
|
|
Corrects near-miss characters and refuses characters that are not part of base58.
|
2011-06-03 04:52:49 -04:00
|
|
|
*/
|
|
|
|
class BitcoinAddressValidator : public QValidator
|
2011-05-13 16:00:27 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-01-23 17:51:02 -03:00
|
|
|
|
2011-05-13 16:00:27 -04:00
|
|
|
public:
|
|
|
|
explicit BitcoinAddressValidator(QObject *parent = 0);
|
|
|
|
|
2011-06-02 09:57:23 -04:00
|
|
|
State validate(QString &input, int &pos) const;
|
|
|
|
|
2012-02-15 13:08:34 -03:00
|
|
|
static const int MaxAddressLength = 35;
|
2011-05-13 16:00:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOINADDRESSVALIDATOR_H
|