mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	
		
			
	
	
		
			32 lines
		
	
	
		
			632 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			32 lines
		
	
	
		
			632 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
								 | 
							
								#ifndef PHASE_EQUALIZATION_DIALOG_HPP__
							 | 
						||
| 
								 | 
							
								#define PHASE_EQUALIZATION_DIALOG_HPP__
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <QObject>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include "pimpl_h.hpp"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class QWidget;
							 | 
						||
| 
								 | 
							
								class QSettings;
							 | 
						||
| 
								 | 
							
								class QDir;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class PhaseEqualizationDialog
							 | 
						||
| 
								 | 
							
								  : public QObject
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  Q_OBJECT
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								public:
							 | 
						||
| 
								 | 
							
								  explicit PhaseEqualizationDialog (QSettings *
							 | 
						||
| 
								 | 
							
								                                    , QDir const& data_directory
							 | 
						||
| 
								 | 
							
								                                    , QVector<float> const& coefficients
							 | 
						||
| 
								 | 
							
								                                    , QWidget * = nullptr);
							 | 
						||
| 
								 | 
							
								  Q_SLOT void show ();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  Q_SIGNAL void phase_equalization_changed (QVector<float> const&);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								private:
							 | 
						||
| 
								 | 
							
								  class impl;
							 | 
						||
| 
								 | 
							
								  pimpl<impl> m_;
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif
							 |