subsurface/core/settings/qPrefUpdateManager.cpp
Berthold Stoeger ccdd92aeb7 preferences: use std::string in struct preferences
This is a messy commit, because the "qPref" system relies
heavily on QString, which means lots of conversions between
the two worlds. Ultimately, I plan to base the preferences
system on std::string and only convert to QString when
pushing through Qt's property system or when writing into
Qt's settings.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2024-08-13 19:28:30 +02:00

47 lines
1.4 KiB
C++

// SPDX-License-Identifier: GPL-2.0
#include "qPrefUpdateManager.h"
#include "qPrefPrivate.h"
static const QString group = QStringLiteral("UpdateManager");
QString qPrefUpdateManager::st_uuidString;
static const QString st_uuidString_default;
qPrefUpdateManager *qPrefUpdateManager::instance()
{
static qPrefUpdateManager *self = new qPrefUpdateManager;
return self;
}
void qPrefUpdateManager::loadSync(bool doSync)
{
disk_dont_check_for_updates(doSync);
disk_last_version_used(doSync);
disk_next_check(doSync);
if (!doSync) {
load_uuidString();
}
}
HANDLE_PREFERENCE_BOOL_EXT(UpdateManager, "DontCheckForUpdates", dont_check_for_updates, update_manager.);
HANDLE_PREFERENCE_TXT_EXT(UpdateManager, "LastVersionUsed", last_version_used, update_manager.);
void qPrefUpdateManager::set_next_check(const QDate& value)
{
long time_value = value.toJulianDay();
if (time_value != prefs.update_manager.next_check) {
prefs.update_manager.next_check = time_value;
disk_next_check(true);
emit instance()->next_checkChanged(value);
}
}
void qPrefUpdateManager::disk_next_check(bool doSync)
{
if (doSync)
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "NextCheck"), prefs.update_manager.next_check, default_prefs.update_manager.next_check);
else
prefs.update_manager.next_check = qPrefPrivate::propValue(keyFromGroupAndName(group, "NextCheck"), QVariant(0)).toInt();
}
HANDLE_PROP_QSTRING(UpdateManager, "UpdateManager/UUID", uuidString);