mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	
		
			
	
	
		
			17 lines
		
	
	
		
			229 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			229 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
								 | 
							
								#ifndef BAND_COMBO_BOX_HPP__
							 | 
						||
| 
								 | 
							
								#define BAND_COMBO_BOX_HPP__
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <QComboBox>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class BandComboBox
							 | 
						||
| 
								 | 
							
								  : public QComboBox
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								public:
							 | 
						||
| 
								 | 
							
								  explicit BandComboBox (QWidget * = nullptr);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								private:
							 | 
						||
| 
								 | 
							
								  void showPopup () override;
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif
							 |