Initial Commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#ifndef CALLSIGN_VALIDATOR_HPP__
|
||||
#define CALLSIGN_VALIDATOR_HPP__
|
||||
|
||||
#include <QValidator>
|
||||
#include <QRegularExpression>
|
||||
|
||||
//
|
||||
// CallsignValidator - QValidator implementation for callsigns
|
||||
//
|
||||
class CallsignValidator final
|
||||
: public QValidator
|
||||
{
|
||||
public:
|
||||
CallsignValidator (QObject * parent = nullptr, bool allow_compound = true);
|
||||
|
||||
// QValidator implementation
|
||||
State validate (QString& input, int& pos) const override;
|
||||
|
||||
private:
|
||||
QRegularExpression re_;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user