| 
									
										
										
										
											2021-01-13 20:37:09 +00:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-18 13:12:18 +01:00
										 |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | // Copyright (C) 2015-2019 Edouard Griffiths, F4EXB <f4exb06@gmail.com>          //
 | 
					
						
							|  |  |  | // Copyright (C) 2021 Jon Beniston, M7RCE <jon@beniston.com>                     //
 | 
					
						
							| 
									
										
										
										
											2021-01-13 20:37:09 +00: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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "aprssettingsdialog.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-02 21:14:49 +01:00
										 |  |  | APRSSettingsDialog::APRSSettingsDialog(APRSSettings* settings, QWidget* parent) : | 
					
						
							| 
									
										
										
										
											2021-01-13 20:37:09 +00:00
										 |  |  |     QDialog(parent), | 
					
						
							| 
									
										
										
										
											2021-04-02 21:14:49 +01:00
										 |  |  |     ui(new Ui::APRSSettingsDialog), | 
					
						
							|  |  |  |     m_settings(settings) | 
					
						
							| 
									
										
										
										
											2021-01-13 20:37:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     ui->setupUi(this); | 
					
						
							| 
									
										
										
										
											2021-04-02 21:14:49 +01:00
										 |  |  |     ui->igateServer->setCurrentText(m_settings->m_igateServer); | 
					
						
							|  |  |  |     ui->igateCallsign->setText(m_settings->m_igateCallsign); | 
					
						
							|  |  |  |     ui->igatePasscode->setText(m_settings->m_igatePasscode); | 
					
						
							|  |  |  |     ui->igateFilter->setText(m_settings->m_igateFilter); | 
					
						
							|  |  |  |     ui->altitudeUnits->setCurrentIndex((int)m_settings->m_altitudeUnits); | 
					
						
							|  |  |  |     ui->speedUnits->setCurrentIndex((int)m_settings->m_speedUnits); | 
					
						
							|  |  |  |     ui->temperatureUnits->setCurrentIndex((int)m_settings->m_temperatureUnits); | 
					
						
							|  |  |  |     ui->rainfallUnits->setCurrentIndex((int)m_settings->m_rainfallUnits); | 
					
						
							| 
									
										
										
										
											2021-01-13 20:37:09 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | APRSSettingsDialog::~APRSSettingsDialog() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void APRSSettingsDialog::accept() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-04-02 21:14:49 +01:00
										 |  |  |     m_settings->m_igateServer = ui->igateServer->currentText(); | 
					
						
							|  |  |  |     m_settings->m_igateCallsign = ui->igateCallsign->text(); | 
					
						
							|  |  |  |     m_settings->m_igatePasscode = ui->igatePasscode->text(); | 
					
						
							|  |  |  |     m_settings->m_igateFilter = ui->igateFilter->text(); | 
					
						
							|  |  |  |     m_settings->m_altitudeUnits = (APRSSettings::AltitudeUnits)ui->altitudeUnits->currentIndex(); | 
					
						
							|  |  |  |     m_settings->m_speedUnits = (APRSSettings::SpeedUnits)ui->speedUnits->currentIndex(); | 
					
						
							|  |  |  |     m_settings->m_temperatureUnits = (APRSSettings::TemperatureUnits)ui->temperatureUnits->currentIndex(); | 
					
						
							|  |  |  |     m_settings->m_rainfallUnits = (APRSSettings::RainfallUnits)ui->rainfallUnits->currentIndex(); | 
					
						
							| 
									
										
										
										
											2021-01-13 20:37:09 +00:00
										 |  |  |     QDialog::accept(); | 
					
						
							|  |  |  | } |