summaryrefslogtreecommitdiff
path: root/Bootstrap.cxx
blob: 7183cb71afd7e13b86188742ca032077bf7c1846 (plain)
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
95
96
97
98
99
100
101
#include "tomlc99/toml.h"
#include "Bootstrap.hxx"

Bootstrap::Bootstrap(QObject *parent):
	QObject{parent},
	bsMode{Light},
	bsTheme{Theme::None},
	bodyColors{{"#212529", "#adb5bd"}},
	bodyBgs{{"#fff", "#212529"}},
	borderColors{{"#dee2e6", "#495057"}}
{
	QFile conf{QStringLiteral(":/qtquickcontrols2.conf")};
	if (!conf.open(QIODevice::ReadOnly | QIODevice::Text)) return;
	auto toml = toml_parse(conf.readAll().data(), nullptr, 0);
	conf.close();

	auto bootstrap = toml_table_in(toml, "Bootstrap");
	if (!bootstrap) {
		toml_free(toml);
		return;
	}

	auto mode = toml_int_in(bootstrap, "Mode");
	if (mode.ok) bsMode = static_cast<Mode>(mode.u.i);

	auto colors = toml_array_in(bootstrap, "BodyColors");
	if (colors)
		for (int i = 0; ; i++) {
			auto color = toml_string_at(colors, i);
			if (!color.ok) break;
			bodyColors.append(QColor{color.u.s});
			free(color.u.s);
		}

	colors = toml_array_in(bootstrap, "BodyBgs");
	if (colors)
		for (int i = 0; ; i++) {
			auto color = toml_string_at(colors, i);
			if (!color.ok) break;
			bodyBgs.append(QColor{color.u.s});
			free(color.u.s);
		}

	colors = toml_array_in(bootstrap, "BorderColors");
	if (colors)
		for (int i = 0; ; i++) {
			auto color = toml_string_at(colors, i);
			if (!color.ok) break;
			borderColors.append(QColor{color.u.s});
			free(color.u.s);
		}

	toml_free(toml);
}

Bootstrap *Bootstrap::qmlAttachedProperties(QObject *object)
{
	return new Bootstrap(object);
}

Bootstrap::Mode Bootstrap::mode() const
{
	return bsMode;
}

void Bootstrap::setMode(Mode mode)
{
	if (mode == bsMode) return;
	bsMode = mode;
	emit modeChanged();
	emit bodyColorChanged();
	emit bodyBgChanged();
	emit borderColorChanged();
}

Bootstrap::Theme Bootstrap::theme() const
{
	return bsTheme;
}

void Bootstrap::setTheme(Theme theme)
{
	if (theme == bsTheme) return;
	bsTheme = theme;
	emit themeChanged();
}

QColor Bootstrap::bodyColor() const
{
	return bodyColors.at(bsMode);
}

QColor Bootstrap::bodyBg() const
{
	return bodyBgs.at(bsMode);
}

QColor Bootstrap::borderColor() const
{
	return borderColors.at(bsMode);
}