mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 08:07:10 -04:00
b6e81cfe8b
Two new validator classes CallsignValidator and MaidenheadLocatorValidator are introduced and used in the Configuration and MainWindow implementations. MaidenheadLocatorValidator supports different lengths and minimum required lengths with a default of subsquare with square being required. The message_aggregator application has been enhanced to show the current DX call and DX grid as shown in the WSJT-X main window. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6903 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
24 lines
468 B
C++
24 lines
468 B
C++
#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
|