| 
									
										
										
										
											2019-08-05 01:56:29 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2019 Edouard Griffiths, F4EXB.                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							|  |  |  | // (at your option) any later version.                                           //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-30 14:42:57 +02:00
										 |  |  | #ifndef SDRBASE_DSP_GLSPECTRUMSETTNGS_H
 | 
					
						
							|  |  |  | #define SDRBASE_DSP_GLSPECTRUMSETTNGS_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-05 01:56:29 +02:00
										 |  |  | #include <QByteArray>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "export.h"
 | 
					
						
							|  |  |  | #include "dsp/dsptypes.h"
 | 
					
						
							| 
									
										
										
										
											2020-04-30 14:42:57 +02:00
										 |  |  | #include "dsp/fftwindow.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-07 18:50:26 +02:00
										 |  |  | #include "settings/serializable.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-05 01:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-07 18:50:26 +02:00
										 |  |  | class SDRBASE_API GLSpectrumSettings : public Serializable | 
					
						
							| 
									
										
										
										
											2019-08-05 01:56:29 +02:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     enum AveragingMode | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         AvgModeNone, | 
					
						
							|  |  |  |         AvgModeMoving, | 
					
						
							|  |  |  |         AvgModeFixed, | 
					
						
							|  |  |  |         AvgModeMax | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int m_fftSize; | 
					
						
							|  |  |  | 	int m_fftOverlap; | 
					
						
							| 
									
										
										
										
											2020-04-30 14:42:57 +02:00
										 |  |  | 	FFTWindow::Function m_fftWindow; | 
					
						
							| 
									
										
										
										
											2019-08-05 01:56:29 +02:00
										 |  |  | 	Real m_refLevel; | 
					
						
							|  |  |  | 	Real m_powerRange; | 
					
						
							|  |  |  | 	int m_decay; | 
					
						
							|  |  |  | 	int m_decayDivisor; | 
					
						
							|  |  |  | 	int m_histogramStroke; | 
					
						
							|  |  |  | 	int m_displayGridIntensity; | 
					
						
							|  |  |  | 	int m_displayTraceIntensity; | 
					
						
							|  |  |  | 	bool m_displayWaterfall; | 
					
						
							|  |  |  | 	bool m_invertedWaterfall; | 
					
						
							|  |  |  |     Real m_waterfallShare; | 
					
						
							|  |  |  | 	bool m_displayMaxHold; | 
					
						
							|  |  |  | 	bool m_displayCurrent; | 
					
						
							|  |  |  | 	bool m_displayHistogram; | 
					
						
							|  |  |  | 	bool m_displayGrid; | 
					
						
							|  |  |  | 	bool m_invert; | 
					
						
							|  |  |  | 	AveragingMode m_averagingMode; | 
					
						
							|  |  |  | 	int m_averagingIndex; | 
					
						
							|  |  |  | 	unsigned int m_averagingNb; | 
					
						
							|  |  |  | 	bool m_linear; //!< linear else logarithmic scale
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     GLSpectrumSettings(); | 
					
						
							| 
									
										
										
										
											2019-08-07 18:50:26 +02:00
										 |  |  | 	virtual ~GLSpectrumSettings(); | 
					
						
							| 
									
										
										
										
											2019-08-05 01:56:29 +02:00
										 |  |  |     void resetToDefaults(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-07 18:50:26 +02:00
										 |  |  |     virtual QByteArray serialize() const; | 
					
						
							|  |  |  |     virtual bool deserialize(const QByteArray& data); | 
					
						
							| 
									
										
										
										
											2019-08-05 01:56:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     static int getAveragingMaxScale(AveragingMode averagingMode); | 
					
						
							|  |  |  |     static int getAveragingValue(int averagingIndex, AveragingMode averagingMode); | 
					
						
							|  |  |  |     static int getAveragingIndex(int averagingValue, AveragingMode averagingMode); | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2020-04-30 14:42:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // SDRBASE_DSP_GLSPECTRUMSETTNGS_H
 |