aboutsummaryrefslogtreecommitdiffstats
path: root/core/settings/qPref.cpp
blob: 4254a2dac1beb497419d3158f4715967be7bc466 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// SPDX-License-Identifier: GPL-2.0
#include "qPref.h"
#include "qPrefPrivate.h"
#include "qPrefCloudStorage.h"
#include "qPrefDisplay.h"
#include "qPrefDiveComputer.h"
#include "qPrefDivePlanner.h"
#include "qPrefGeneral.h"
#include "qPrefGeocoding.h"
#include "qPrefLanguage.h"
#include "qPrefLocationService.h"
#include "qPrefPartialPressureGas.h"
#include "qPrefProxy.h"
#include "qPrefTechnicalDetails.h"
#include "qPrefUnit.h"
#include "qPrefUpdateManager.h"
#include "qPrefEquipment.h"
#include "qPrefMedia.h"
#include "qPrefLog.h"

#include <QtQml>
#include <QQmlContext>

void qPref::loadSync(bool doSync)
{
	// the following calls, ensures qPref* is instanciated, registred and
	// that properties are loaded
	qPrefCloudStorage::loadSync(doSync);
	qPrefDisplay::loadSync(doSync);
	qPrefDiveComputer::loadSync(doSync);
	qPrefDivePlanner::loadSync(doSync);
	qPrefGeneral::loadSync(doSync);
	qPrefGeocoding::loadSync(doSync);
	qPrefLanguage::loadSync(doSync);
	qPrefLocationService::loadSync(doSync);
	qPrefPartialPressureGas::loadSync(doSync);
	qPrefProxy::loadSync(doSync);
	qPrefTechnicalDetails::loadSync(doSync);
	qPrefUnits::loadSync(doSync);
	qPrefUpdateManager::loadSync(doSync);
	qPrefEquipment::loadSync(doSync);
	qPrefMedia::loadSync(doSync);
	qPrefLog::loadSync(doSync);
}

Q_DECLARE_METATYPE(deco_mode);
Q_DECLARE_METATYPE(def_file_behavior);
Q_DECLARE_METATYPE(taxonomy_category);
Q_DECLARE_METATYPE(units::DURATION);
Q_DECLARE_METATYPE(units::LENGTH);
Q_DECLARE_METATYPE(units::PRESSURE);
Q_DECLARE_METATYPE(units::TEMPERATURE);
Q_DECLARE_METATYPE(unit_system_values);
Q_DECLARE_METATYPE(units::TIME);
Q_DECLARE_METATYPE(units::VOLUME);
Q_DECLARE_METATYPE(units::WEIGHT);

void qPref::registerQML(QQmlEngine *engine)
{
	if (engine) {
		QQmlContext *ct = engine->rootContext();

		ct->setContextProperty("PrefCloudStorage", qPrefCloudStorage::instance());
		ct->setContextProperty("PrefDisplay", qPrefDisplay::instance());
		ct->setContextProperty("PrefDiveComputer", qPrefDiveComputer::instance());
		ct->setContextProperty("PrefDivePlanner", qPrefDivePlanner::instance());
		ct->setContextProperty("PrefGeneral", qPrefGeneral::instance());
		ct->setContextProperty("PrefGeocoding", qPrefGeocoding::instance());
		ct->setContextProperty("PrefLanguage", qPrefLanguage::instance());
		ct->setContextProperty("PrefLocationService", qPrefLocationService::instance());
		ct->setContextProperty("PrefPartialPressureGas", qPrefPartialPressureGas::instance());
		ct->setContextProperty("PrefProxy", qPrefProxy::instance());
		ct->setContextProperty("PrefTechnicalDetails", qPrefTechnicalDetails::instance());
		ct->setContextProperty("PrefUnits", qPrefUnits::instance());
		ct->setContextProperty("PrefUpdateManager", qPrefUpdateManager::instance());
		ct->setContextProperty("PrefEquipment", qPrefEquipment::instance());
		ct->setContextProperty("PrefMedia", qPrefMedia::instance());
		ct->setContextProperty("PrefLog", qPrefLog::instance());
	}

	// Register special types
	qmlRegisterUncreatableType<qPrefCloudStorage>("org.subsurfacedivelog.mobile",1,0,"CloudStatus","Enum is not a type");
	qRegisterMetaType<deco_mode>();
	qRegisterMetaType<def_file_behavior>();
	qRegisterMetaType<taxonomy_category>();
	qRegisterMetaType<units::DURATION>();
	qRegisterMetaType<units::LENGTH>();
	qRegisterMetaType<units::PRESSURE>();
	qRegisterMetaType<units::TEMPERATURE>();
	qRegisterMetaType<unit_system_values>();
	qRegisterMetaType<units::TIME>();
	qRegisterMetaType<units::VOLUME>();
	qRegisterMetaType<units::WEIGHT>();
}