mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	
		
			
	
	
		
			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
							 |