| 
									
										
										
										
											2023-11-19 13:31:45 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2015-2018 Edouard Griffiths, F4EXB <f4exb06@gmail.com>              //
 | 
					
						
							|  |  |  | //                                                                                   //
 | 
					
						
							|  |  |  | // 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/>.              //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2015-07-19 18:43:48 +02:00
										 |  |  | #ifndef INCLUDE_GPL_GUI_COLORMAPPER_H_
 | 
					
						
							|  |  |  | #define INCLUDE_GPL_GUI_COLORMAPPER_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QColor>
 | 
					
						
							|  |  |  | #include <vector>
 | 
					
						
							|  |  |  | #include <utility>
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2015-07-19 18:43:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRGUI_API ColorMapper | 
					
						
							| 
									
										
										
										
											2015-07-19 18:43:48 +02:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	enum Theme { | 
					
						
							|  |  |  | 		Normal, | 
					
						
							| 
									
										
										
										
											2015-07-19 19:39:16 +02:00
										 |  |  | 		Gold, | 
					
						
							| 
									
										
										
										
											2015-07-19 18:43:48 +02:00
										 |  |  | 		ReverseGold, | 
					
						
							| 
									
										
										
										
											2016-10-30 10:03:09 +01:00
										 |  |  | 		ReverseGreenEmerald, | 
					
						
							|  |  |  | 		ReverseGreen, | 
					
						
							|  |  |  | 		ReverseGreenApple, | 
					
						
							| 
									
										
										
										
											2017-05-16 09:07:58 +02:00
										 |  |  | 		ReverseGreenYellow, | 
					
						
							|  |  |  |         GrayGreenYellow, | 
					
						
							| 
									
										
										
										
											2017-05-16 21:24:25 +02:00
										 |  |  |         GrayGold, | 
					
						
							|  |  |  |         GrayYellow | 
					
						
							| 
									
										
										
										
											2015-07-19 18:43:48 +02:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	typedef std::vector<std::pair<float, QColor> > colormap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ColorMapper(Theme theme = Normal); | 
					
						
							|  |  |  | 	~ColorMapper(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const colormap& getDialBackgroundColorMap() const { return m_dialBackgroundcolorMap; }; | 
					
						
							|  |  |  | 	const QColor& getForegroundColor() const { return m_foregroundColor; }; | 
					
						
							|  |  |  | 	const QColor& getSecondaryForegroundColor() const { return m_secondaryForegroundColor; }; | 
					
						
							|  |  |  | 	const QColor& getHighlightColor() const { return m_highlightColor; }; | 
					
						
							| 
									
										
										
										
											2015-07-19 19:39:16 +02:00
										 |  |  | 	const QColor& getBoundaryColor() const { return m_boundaryColor; }; | 
					
						
							|  |  |  | 	const QColor& getBoundaryAlphaColor() const { return m_boundaryAlphaColor; }; | 
					
						
							| 
									
										
										
										
											2017-05-16 20:21:32 +02:00
										 |  |  |     const QColor& getLightBorderColor() const { return m_lightBorderColor; }; | 
					
						
							|  |  |  |     const QColor& getDarkBorderColor() const { return m_darkBorderColor; }; | 
					
						
							| 
									
										
										
										
											2015-07-19 18:43:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	Theme m_theme; | 
					
						
							|  |  |  | 	std::vector<std::pair<float, QColor> > m_dialBackgroundcolorMap; | 
					
						
							|  |  |  | 	QColor m_foregroundColor; | 
					
						
							|  |  |  | 	QColor m_secondaryForegroundColor; | 
					
						
							|  |  |  | 	QColor m_highlightColor; | 
					
						
							| 
									
										
										
										
											2015-07-19 19:39:16 +02:00
										 |  |  | 	QColor m_boundaryColor; | 
					
						
							|  |  |  | 	QColor m_boundaryAlphaColor; | 
					
						
							| 
									
										
										
										
											2017-05-16 20:21:32 +02:00
										 |  |  | 	QColor m_lightBorderColor; | 
					
						
							|  |  |  |     QColor m_darkBorderColor; | 
					
						
							| 
									
										
										
										
											2015-07-19 18:43:48 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* INCLUDE_GPL_GUI_COLORMAPPER_H_ */
 |