mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: activate qPrefLocationService
remove LocationService from SettingsObjectWrapper and reference qPrefLocationService update files using SettingsObjectWrapper/LocationService to use qPrefLocationService this activated qPrefLocationService and removed the similar class from SettingsObjectWrapper. Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
parent
2b11fd4cc8
commit
75ce813a27
6 changed files with 15 additions and 72 deletions
|
@ -532,44 +532,6 @@ void LanguageSettingsObjectWrapper::setDateFormatOverride(bool value)
|
|||
}
|
||||
|
||||
|
||||
LocationServiceSettingsObjectWrapper::LocationServiceSettingsObjectWrapper(QObject* parent):
|
||||
QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
int LocationServiceSettingsObjectWrapper::distanceThreshold() const
|
||||
{
|
||||
return prefs.distance_threshold;
|
||||
}
|
||||
|
||||
int LocationServiceSettingsObjectWrapper::timeThreshold() const
|
||||
{
|
||||
return prefs.time_threshold;
|
||||
}
|
||||
|
||||
void LocationServiceSettingsObjectWrapper::setDistanceThreshold(int value)
|
||||
{
|
||||
if (value == prefs.distance_threshold)
|
||||
return;
|
||||
QSettings s;
|
||||
s.beginGroup(group);
|
||||
s.setValue("distance_threshold", value);
|
||||
prefs.distance_threshold = value;
|
||||
emit distanceThresholdChanged(value);
|
||||
}
|
||||
|
||||
void LocationServiceSettingsObjectWrapper::setTimeThreshold(int value)
|
||||
{
|
||||
if (value == prefs.time_threshold)
|
||||
return;
|
||||
|
||||
QSettings s;
|
||||
s.beginGroup(group);
|
||||
s.setValue("time_threshold", value);
|
||||
prefs.time_threshold = value;
|
||||
emit timeThresholdChanged(value);
|
||||
}
|
||||
|
||||
SettingsObjectWrapper::SettingsObjectWrapper(QObject* parent):
|
||||
QObject(parent),
|
||||
techDetails(new qPrefTechnicalDetails(this)),
|
||||
|
@ -584,7 +546,7 @@ QObject(parent),
|
|||
display_settings(new qPrefDisplay(this)),
|
||||
language_settings(new LanguageSettingsObjectWrapper(this)),
|
||||
animation_settings(new qPrefAnimations(this)),
|
||||
location_settings(new LocationServiceSettingsObjectWrapper(this)),
|
||||
location_settings(new qPrefLocationService(this)),
|
||||
update_manager_settings(new qPrefUpdateManager(this)),
|
||||
dive_computer_settings(new qPrefDiveComputer(this))
|
||||
{
|
||||
|
@ -633,10 +595,7 @@ void SettingsObjectWrapper::load()
|
|||
s.endGroup();
|
||||
|
||||
// GPS service time and distance thresholds
|
||||
s.beginGroup("LocationService");
|
||||
GET_INT("time_threshold", time_threshold);
|
||||
GET_INT("distance_threshold", distance_threshold);
|
||||
s.endGroup();
|
||||
qPrefLocationService::instance()->load();
|
||||
|
||||
qPrefDivePlanner::instance()->load();
|
||||
qPrefDiveComputer::instance()->load();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue