| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  | // Copyright (C) 2020 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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-09-20 01:06:34 +02:00
										 |  |  | #ifndef INCLUDE_SDRGUI_BASICFEATURESETTINGSDIALOG_H
 | 
					
						
							|  |  |  | #define INCLUDE_SDRGUI_BASICFEATURESETTINGSDIALOG_H
 | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <QDialog>
 | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "../../exports/export.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Ui { | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  |     class BasicFeatureSettingsDialog; | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  | class SDRGUI_API BasicFeatureSettingsDialog : public QDialog | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  |     explicit BasicFeatureSettingsDialog(QWidget *parent = nullptr); | 
					
						
							|  |  |  |     ~BasicFeatureSettingsDialog(); | 
					
						
							|  |  |  |     void setTitle(const QString& title); | 
					
						
							|  |  |  |     const QString& getTitle() const { return m_title; } | 
					
						
							| 
									
										
										
										
											2020-09-21 03:13:36 +02:00
										 |  |  |     bool useReverseAPI() const { return m_useReverseAPI; } | 
					
						
							|  |  |  |     const QString& getReverseAPIAddress() const { return m_reverseAPIAddress; } | 
					
						
							|  |  |  |     uint16_t getReverseAPIPort() const { return m_reverseAPIPort; } | 
					
						
							| 
									
										
										
										
											2020-09-28 00:20:37 +02:00
										 |  |  |     uint16_t getReverseAPIFeatureSetIndex() const { return m_reverseAPIFeatureSetIndex; } | 
					
						
							|  |  |  |     uint16_t getReverseAPIFeatureIndex() const { return m_reverseAPIFeatureIndex; } | 
					
						
							| 
									
										
										
										
											2020-09-21 03:13:36 +02:00
										 |  |  |     void setUseReverseAPI(bool useReverseAPI); | 
					
						
							|  |  |  |     void setReverseAPIAddress(const QString& address); | 
					
						
							|  |  |  |     void setReverseAPIPort(uint16_t port); | 
					
						
							| 
									
										
										
										
											2020-09-28 00:20:37 +02:00
										 |  |  |     void setReverseAPIFeatureSetIndex(uint16_t featureSetIndex); | 
					
						
							|  |  |  |     void setReverseAPIFeatureIndex(uint16_t featureIndex); | 
					
						
							| 
									
										
										
										
											2022-04-18 12:08:33 +02:00
										 |  |  |     void setDefaultTitle(const QString& title) { m_defaultTitle = title; } | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  |     bool hasChanged() const { return m_hasChanged; } | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  |     void on_title_editingFinished(); | 
					
						
							| 
									
										
										
										
											2022-04-18 12:08:33 +02:00
										 |  |  |     void on_titleReset_clicked(); | 
					
						
							| 
									
										
										
										
											2020-09-28 00:20:37 +02:00
										 |  |  |     void on_reverseAPI_toggled(bool checked); | 
					
						
							|  |  |  |     void on_reverseAPIAddress_editingFinished(); | 
					
						
							|  |  |  |     void on_reverseAPIPort_editingFinished(); | 
					
						
							|  |  |  |     void on_reverseAPIFeatureSetIndex_editingFinished(); | 
					
						
							|  |  |  |     void on_reverseAPIFeatureIndex_editingFinished(); | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  |     void accept(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  |     Ui::BasicFeatureSettingsDialog *ui; | 
					
						
							|  |  |  |     QString m_title; | 
					
						
							| 
									
										
										
										
											2020-09-21 03:13:36 +02:00
										 |  |  |     bool m_useReverseAPI; | 
					
						
							|  |  |  |     QString m_reverseAPIAddress; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIPort; | 
					
						
							| 
									
										
										
										
											2020-09-28 00:20:37 +02:00
										 |  |  |     uint16_t m_reverseAPIFeatureSetIndex; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIFeatureIndex; | 
					
						
							| 
									
										
										
										
											2022-04-18 12:08:33 +02:00
										 |  |  |     QString m_defaultTitle; | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  |     bool m_hasChanged; | 
					
						
							| 
									
										
										
										
											2020-09-08 15:47:20 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-20 01:06:34 +02:00
										 |  |  | #endif // INCLUDE_SDRGUI_BASICFEATURESETTINGSDIALOG_H
 |