mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	
		
			
	
	
		
			20 lines
		
	
	
		
			385 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			385 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
								 | 
							
								#ifndef EXCHANGE_VALIDATOR_HPP__
							 | 
						||
| 
								 | 
							
								#define EXCHANGE_VALIDATOR_HPP__
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <QValidator>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// ExchangeValidator - QValidator for Field Day and RTTY Roundup exchanges
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class ExchangeValidator final
							 | 
						||
| 
								 | 
							
								  : public QValidator
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								public:
							 | 
						||
| 
								 | 
							
								  ExchangeValidator (QObject * parent = nullptr);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  // QValidator implementation
							 | 
						||
| 
								 | 
							
								  State validate (QString& input, int& length) const override;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif
							 |