| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:43:33 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef INCLUDE_SCALEENGINE_H
 | 
					
						
							|  |  |  | #define INCLUDE_SCALEENGINE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-16 04:48:07 +02:00
										 |  |  | #include <math.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | #include <QFont>
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							|  |  |  | #include <QList>
 | 
					
						
							| 
									
										
										
										
											2021-05-29 00:55:04 +02:00
										 |  |  | #include "dsp/physicalunit.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRGUI_API ScaleEngine { | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | public: | 
					
						
							|  |  |  | 	struct Tick { | 
					
						
							|  |  |  | 		float pos; | 
					
						
							|  |  |  | 		bool major; | 
					
						
							|  |  |  | 		float textPos; | 
					
						
							|  |  |  | 		float textSize; | 
					
						
							|  |  |  | 		QString text; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	typedef QList<Tick> TickList; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 03:25:44 +02:00
										 |  |  | 	ScaleEngine(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void setOrientation(Qt::Orientation orientation); | 
					
						
							|  |  |  | 	void setFont(const QFont& font); | 
					
						
							|  |  |  | 	void setSize(float size); | 
					
						
							|  |  |  | 	float getSize() { return m_size; } | 
					
						
							|  |  |  | 	void setRange(Unit::Physical physicalUnit, float rangeMin, float rangeMax); | 
					
						
							|  |  |  |     float getRange() const { return m_rangeMax - m_rangeMin; } | 
					
						
							| 
									
										
										
										
											2020-07-06 02:44:11 +02:00
										 |  |  |     float getRangeMin() const { return m_rangeMin; } | 
					
						
							|  |  |  |     float getRangeMax() const { return m_rangeMax; } | 
					
						
							| 
									
										
										
										
											2020-07-05 03:25:44 +02:00
										 |  |  | 	void setMakeOpposite(bool makeOpposite) { m_makeOpposite = makeOpposite; } | 
					
						
							|  |  |  | 	void setFixedDecimalPlaces(int decimalPlaces) { m_fixedDecimalPlaces =decimalPlaces; } | 
					
						
							| 
									
										
										
										
											2022-10-16 04:48:07 +02:00
										 |  |  |     void setTruncateMode(bool mode); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:25:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	float getPosFromValue(double value); | 
					
						
							|  |  |  | 	float getValueFromPos(double pos); | 
					
						
							|  |  |  | 	const TickList& getTickList(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	float getScaleWidth(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | private: | 
					
						
							|  |  |  | 	// base configuration
 | 
					
						
							|  |  |  | 	Qt::Orientation m_orientation; | 
					
						
							|  |  |  | 	QFont m_font; | 
					
						
							|  |  |  | 	float m_charSize; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// graph configuration
 | 
					
						
							| 
									
										
										
										
											2022-10-16 04:48:07 +02:00
										 |  |  | 	double m_size; | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 	Unit::Physical m_physicalUnit; | 
					
						
							| 
									
										
										
										
											2022-10-16 04:48:07 +02:00
										 |  |  | 	double m_rangeMin; | 
					
						
							|  |  |  | 	double m_rangeMax; | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// calculated values
 | 
					
						
							|  |  |  | 	bool m_recalc; | 
					
						
							|  |  |  | 	double m_scale; | 
					
						
							|  |  |  | 	QString m_unitStr; | 
					
						
							| 
									
										
										
										
											2022-10-16 11:29:45 +02:00
										 |  |  |     QString m_multiplierStr; | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 	TickList m_tickList; | 
					
						
							|  |  |  | 	double m_majorTickValueDistance; | 
					
						
							|  |  |  | 	double m_firstMajorTickValue; | 
					
						
							|  |  |  | 	int m_numMinorTicks; | 
					
						
							|  |  |  | 	int m_decimalPlaces; | 
					
						
							| 
									
										
										
										
											2018-07-08 18:59:09 +02:00
										 |  |  | 	int m_fixedDecimalPlaces; | 
					
						
							| 
									
										
										
										
											2017-07-22 04:23:10 +02:00
										 |  |  | 	bool m_makeOpposite; // will show -value instead of value
 | 
					
						
							| 
									
										
										
										
											2022-10-16 04:48:07 +02:00
										 |  |  |     bool m_truncateMode; //!< truncate upper digits mode
 | 
					
						
							|  |  |  |     bool m_truncated; //!< true if upper digits are truncated
 | 
					
						
							|  |  |  |     double m_truncationValue; //!< value to subreact from tick display values
 | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-01 04:10:36 +02:00
										 |  |  | 	QString formatTick(double value, int decimalPlaces); | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 	void calcCharSize(); | 
					
						
							|  |  |  | 	void calcScaleFactor(); | 
					
						
							|  |  |  | 	double calcMajorTickUnits(double distance, int* retDecimalPlaces); | 
					
						
							| 
									
										
										
										
											2018-05-07 11:33:42 +02:00
										 |  |  | 	int calcTickTextSize(double distance); | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 	void forceTwoTicks(); | 
					
						
							|  |  |  | 	void reCalc(); | 
					
						
							| 
									
										
										
										
											2022-10-16 11:29:45 +02:00
										 |  |  |     void updateTruncation(); | 
					
						
							| 
									
										
										
										
											2022-10-16 04:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     inline int order(double value) { | 
					
						
							|  |  |  |         return floor(log10(value)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	double majorTickValue(int tick); | 
					
						
							|  |  |  | 	double minorTickValue(int tick); | 
					
						
							| 
									
										
										
										
											2022-10-16 11:29:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QString getRangeMinStr(); | 
					
						
							|  |  |  | 	QString getRangeMaxStr(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	float getPosFromValueTrunc(double value); | 
					
						
							|  |  |  | 	float getValueFromPosTrunc(double pos); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 18:29:05 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // INCLUDE_SCALEENGINE_H
 |