mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 13:10:19 -04:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			32 lines
		
	
	
		
			518 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			518 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef LETTERS_SPIN_BOX_HPP_
 | |
| #define LETTERS_SPIN_BOX_HPP_
 | |
| 
 | |
| #include <QSpinBox>
 | |
| 
 | |
| class QString;
 | |
| 
 | |
| //
 | |
| // LettersSpinBox - select from consecutive letters
 | |
| //
 | |
| class LettersSpinBox final
 | |
|   : public QSpinBox
 | |
| {
 | |
|   Q_OBJECT
 | |
|   Q_PROPERTY (bool lowercase MEMBER lowercase_)
 | |
| 
 | |
| public:
 | |
|   LettersSpinBox (QWidget * parent = nullptr)
 | |
|     : QSpinBox {parent}
 | |
|     , lowercase_ {false}
 | |
|   {
 | |
|   }
 | |
| 
 | |
|   QString textFromValue (int) const override;
 | |
| //  int valueFromText (QString const&) const override;
 | |
| 
 | |
| private:
 | |
|   bool lowercase_;
 | |
| };
 | |
| 
 | |
| #endif
 |