32af5266cf
- try to enforce the same style to all Qt related files - remove unneeded includes from the files - add missing Q_OBJECT, QT_BEGIN_NAMESPACE / QT_END_NAMESPACE - prepares for a pull-req to include Qt5 compatibility
21 lines
486 B
C++
21 lines
486 B
C++
#ifndef BITCOINADDRESSVALIDATOR_H
|
|
#define BITCOINADDRESSVALIDATOR_H
|
|
|
|
#include <QValidator>
|
|
|
|
/** Base48 entry widget validator.
|
|
Corrects near-miss characters and refuses characters that are no part of base48.
|
|
*/
|
|
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
|