summaryrefslogtreecommitdiffstats
path: root/core/settings/qPrefEquipment.cpp
blob: 3a5ec1b67a710feb15c0e4d257e8923f245ff25c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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);
	disk_display_unused_tanks(doSync);
	disk_display_default_tank_infos(doSync);
}

HANDLE_PREFERENCE_TXT(Equipment, "default_cylinder", default_cylinder);
HANDLE_PREFERENCE_BOOL(Equipment, "display_unused_tanks", display_unused_tanks);
HANDLE_PREFERENCE_BOOL(Equipment, "display_default_tank_infos", display_default_tank_infos);