mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 23:41:16 -05:00
71 lines
3.7 KiB
C++
71 lines
3.7 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2021 Jon Beniston, M7RCE //
|
|
// //
|
|
// 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 "startrackersettingsdialog.h"
|
|
#include <QDebug>
|
|
|
|
StarTrackerSettingsDialog::StarTrackerSettingsDialog(StarTrackerSettings *settings,
|
|
QWidget* parent) :
|
|
QDialog(parent),
|
|
m_settings(settings),
|
|
ui(new Ui::StarTrackerSettingsDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->epoch->setCurrentIndex(settings->m_jnow ? 1 : 0);
|
|
ui->azElUnits->setCurrentIndex((int)settings->m_azElUnits);
|
|
ui->updatePeriod->setValue(settings->m_updatePeriod);
|
|
ui->serverPort->setValue(settings->m_serverPort);
|
|
ui->enableServer->setChecked(settings->m_enableServer);
|
|
ui->refraction->setCurrentIndex(ui->refraction->findText(settings->m_refraction));
|
|
ui->pressure->setValue(settings->m_pressure);
|
|
ui->temperature->setValue(settings->m_temperature);
|
|
ui->humidity->setValue(settings->m_humidity);
|
|
ui->height->setValue(settings->m_heightAboveSeaLevel);
|
|
ui->temperatureLapseRate->setValue(settings->m_temperatureLapseRate);
|
|
ui->frequency->setValue(settings->m_frequency/1000000.0);
|
|
ui->solarFluxUnits->setCurrentIndex((int)settings->m_solarFluxUnits);
|
|
ui->drawSunOnMap->setChecked(settings->m_drawSunOnMap);
|
|
ui->drawMoonOnMap->setChecked(settings->m_drawMoonOnMap);
|
|
ui->drawStarOnMap->setChecked(settings->m_drawStarOnMap);
|
|
}
|
|
|
|
StarTrackerSettingsDialog::~StarTrackerSettingsDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void StarTrackerSettingsDialog::accept()
|
|
{
|
|
m_settings->m_jnow = ui->epoch->currentIndex() == 1;
|
|
m_settings->m_azElUnits = (StarTrackerSettings::AzElUnits)ui->azElUnits->currentIndex();
|
|
m_settings->m_updatePeriod = ui->updatePeriod->value();
|
|
m_settings->m_serverPort = (uint16_t)ui->serverPort->value();
|
|
m_settings->m_enableServer = ui->enableServer->isChecked();
|
|
m_settings->m_refraction = ui->refraction->currentText();
|
|
m_settings->m_pressure = ui->pressure->value();
|
|
m_settings->m_temperature = ui->temperature->value();
|
|
m_settings->m_humidity = ui->humidity->value();
|
|
m_settings->m_heightAboveSeaLevel = ui->height->value();
|
|
m_settings->m_temperatureLapseRate = ui->temperatureLapseRate->value();
|
|
m_settings->m_frequency = ui->frequency->value() * 1000000.0;
|
|
m_settings->m_solarFluxUnits = (StarTrackerSettings::SolarFluxUnits)ui->solarFluxUnits->currentIndex();
|
|
m_settings->m_drawSunOnMap = ui->drawSunOnMap->isChecked();
|
|
m_settings->m_drawMoonOnMap = ui->drawMoonOnMap->isChecked();
|
|
m_settings->m_drawStarOnMap = ui->drawStarOnMap->isChecked();
|
|
QDialog::accept();
|
|
}
|