2017-04-27 18:26:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-09-17 22:22:19 +00:00
|
|
|
#include "preferences_georeference.h"
|
2018-01-01 19:23:40 +00:00
|
|
|
#include "ui_preferences_georeference.h"
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "core/qthelper.h"
|
2018-08-15 09:50:53 +00:00
|
|
|
#include "core/settings/qPrefGeocoding.h"
|
2015-09-17 22:22:19 +00:00
|
|
|
#include "qt-models/divelocationmodel.h"
|
|
|
|
|
|
|
|
#include <ctime>
|
|
|
|
|
2019-12-09 18:58:20 +00:00
|
|
|
PreferencesGeoreference::PreferencesGeoreference() : AbstractPreferencesWidget(tr("Georeference"), QIcon(":geotag-icon"), 8)
|
2015-09-17 22:22:19 +00:00
|
|
|
{
|
|
|
|
ui = new Ui::PreferencesGeoreference();
|
|
|
|
ui->setupUi(this);
|
|
|
|
ui->first_item->setModel(GeoReferencingOptionsModel::instance());
|
|
|
|
ui->second_item->setModel(GeoReferencingOptionsModel::instance());
|
|
|
|
ui->third_item->setModel(GeoReferencingOptionsModel::instance());
|
|
|
|
}
|
|
|
|
|
|
|
|
PreferencesGeoreference::~PreferencesGeoreference()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PreferencesGeoreference::refreshSettings()
|
|
|
|
{
|
|
|
|
ui->first_item->setCurrentIndex(prefs.geocoding.category[0]);
|
|
|
|
ui->second_item->setCurrentIndex(prefs.geocoding.category[1]);
|
|
|
|
ui->third_item->setCurrentIndex(prefs.geocoding.category[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PreferencesGeoreference::syncSettings()
|
|
|
|
{
|
2018-08-15 09:50:53 +00:00
|
|
|
qPrefGeocoding::set_first_taxonomy_category((taxonomy_category) ui->first_item->currentIndex());
|
|
|
|
qPrefGeocoding::set_second_taxonomy_category((taxonomy_category) ui->second_item->currentIndex());
|
|
|
|
qPrefGeocoding::set_third_taxonomy_category((taxonomy_category) ui->third_item->currentIndex());
|
2016-04-05 05:02:03 +00:00
|
|
|
}
|