2018-08-06 17:25:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2018-08-14 10:25:15 +00:00
|
|
|
#include "qPrefGeocoding.h"
|
2018-08-06 17:25:06 +00:00
|
|
|
#include "qPrefPrivate.h"
|
|
|
|
|
|
|
|
static const QString group = QStringLiteral("geocoding");
|
|
|
|
|
|
|
|
qPrefGeocoding *qPrefGeocoding::instance()
|
|
|
|
{
|
|
|
|
static qPrefGeocoding *self = new qPrefGeocoding;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qPrefGeocoding::loadSync(bool doSync)
|
|
|
|
{
|
|
|
|
disk_first_taxonomy_category(doSync);
|
|
|
|
disk_second_taxonomy_category(doSync);
|
|
|
|
disk_third_taxonomy_category(doSync);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qPrefGeocoding::set_first_taxonomy_category(taxonomy_category value)
|
|
|
|
{
|
|
|
|
if (value != prefs.geocoding.category[0]) {
|
|
|
|
prefs.geocoding.category[0] = value;
|
|
|
|
disk_first_taxonomy_category(true);
|
2018-09-02 11:58:04 +00:00
|
|
|
emit instance()->first_taxonomy_categoryChanged(value);
|
2018-08-06 17:25:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void qPrefGeocoding::disk_first_taxonomy_category(bool doSync)
|
|
|
|
{
|
|
|
|
if (doSync)
|
2018-09-07 16:06:00 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "cat0"), prefs.geocoding.category[0], default_prefs.geocoding.category[0]);
|
2018-08-06 17:25:06 +00:00
|
|
|
else
|
2018-09-07 16:06:00 +00:00
|
|
|
prefs.geocoding.category[0] = (enum taxonomy_category)qPrefPrivate::propValue(keyFromGroupAndName(group, "cat0"), default_prefs.geocoding.category[0]).toInt();
|
2018-08-06 17:25:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void qPrefGeocoding::set_second_taxonomy_category(taxonomy_category value)
|
|
|
|
{
|
|
|
|
if (value != prefs.geocoding.category[1]) {
|
|
|
|
prefs.geocoding.category[1] = value;
|
|
|
|
disk_second_taxonomy_category(true);
|
2018-09-02 11:58:04 +00:00
|
|
|
emit instance()->second_taxonomy_categoryChanged(value);
|
2018-08-06 17:25:06 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-12 08:28:04 +00:00
|
|
|
|
2018-08-06 17:25:06 +00:00
|
|
|
void qPrefGeocoding::disk_second_taxonomy_category(bool doSync)
|
|
|
|
{
|
|
|
|
if (doSync)
|
2018-09-07 16:06:00 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "cat1"), prefs.geocoding.category[1], default_prefs.geocoding.category[1]);
|
2018-08-06 17:25:06 +00:00
|
|
|
else
|
2018-09-07 16:06:00 +00:00
|
|
|
prefs.geocoding.category[1] = (enum taxonomy_category)qPrefPrivate::propValue(keyFromGroupAndName(group, "cat1"), default_prefs.geocoding.category[1]).toInt();
|
2018-08-06 17:25:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void qPrefGeocoding::set_third_taxonomy_category(taxonomy_category value)
|
|
|
|
{
|
|
|
|
if (value != prefs.geocoding.category[2]) {
|
|
|
|
prefs.geocoding.category[2] = value;
|
|
|
|
disk_third_taxonomy_category(true);
|
2018-09-02 11:58:04 +00:00
|
|
|
emit instance()->third_taxonomy_categoryChanged(value);
|
2018-08-06 17:25:06 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-12 08:28:04 +00:00
|
|
|
|
2018-08-06 17:25:06 +00:00
|
|
|
void qPrefGeocoding::disk_third_taxonomy_category(bool doSync)
|
|
|
|
{
|
|
|
|
if (doSync)
|
2018-09-07 16:06:00 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "cat2"), prefs.geocoding.category[2], default_prefs.geocoding.category[2]);
|
2018-08-06 17:25:06 +00:00
|
|
|
else
|
2018-09-07 16:06:00 +00:00
|
|
|
prefs.geocoding.category[2] = (enum taxonomy_category)qPrefPrivate::propValue(keyFromGroupAndName(group, "cat2"), default_prefs.geocoding.category[2]).toInt();
|
2018-08-06 17:25:06 +00:00
|
|
|
}
|