mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 13:10:19 -04:00 
			
		
		
		
	These were using a hijacked custom spin box that was designed only for letters i.e. submodes. Now there are two new custom spin boxes. HistedSpinBox:- can be set with a list of integer values which the step up and down will follow. Optionally limits the maximum and minimum value to the upper and lower bounds of the values set. Note that intermediate values are still valid. RestrictedSpinBox:- more like a combo box because the provided values are the only ones that can be set. HintedSpinBox is used for the frequency tolerance and RestrictedSpinBox is used for T/R period. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7698 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			26 lines
		
	
	
		
			466 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			466 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef RESTRICTED_SPIN_BOX_HPP_
 | |
| #define RESTRICTED_SPIN_BOX_HPP_
 | |
| 
 | |
| #include "HintedSpinBox.hpp"
 | |
| 
 | |
| class QString;
 | |
| 
 | |
| //
 | |
| // RestrictedSpinBox - select only from a sequence of values
 | |
| //
 | |
| class RestrictedSpinBox final
 | |
|   : public HintedSpinBox
 | |
| {
 | |
| public:
 | |
|   RestrictedSpinBox (QWidget * parent = nullptr)
 | |
|     : HintedSpinBox {parent}
 | |
|   {
 | |
|   }
 | |
| 
 | |
| protected:
 | |
|   // override the base class validation
 | |
|   QValidator::State validate (QString& input, int& pos) const override;
 | |
| };
 | |
| 
 | |
| #endif
 |