2019-12-07 18:27:25 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "qPrefEquipment.h"
|
|
|
|
#include "qPrefPrivate.h"
|
|
|
|
|
|
|
|
static const QString group = QStringLiteral("Equipment");
|
|
|
|
|
|
|
|
qPrefEquipment *qPrefEquipment::instance()
|
|
|
|
{
|
|
|
|
static qPrefEquipment *self = new qPrefEquipment;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qPrefEquipment::loadSync(bool doSync)
|
|
|
|
{
|
|
|
|
disk_default_cylinder(doSync);
|
2023-07-09 00:14:27 +00:00
|
|
|
disk_include_unused_tanks(doSync);
|
2020-12-11 22:55:18 +00:00
|
|
|
disk_display_default_tank_infos(doSync);
|
2019-12-07 18:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE_PREFERENCE_TXT(Equipment, "default_cylinder", default_cylinder);
|
2023-07-09 00:14:27 +00:00
|
|
|
// Keeping the persisted preference name the same to avoid resetting this for everybody
|
|
|
|
HANDLE_PREFERENCE_BOOL(Equipment, "display_unused_tanks", include_unused_tanks);
|
2020-12-11 22:55:18 +00:00
|
|
|
HANDLE_PREFERENCE_BOOL(Equipment, "display_default_tank_infos", display_default_tank_infos);
|