blob: b7941df620b30b32f8a46353e98a45afcd6bf4a5 (
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
|
#include <toml.h>
#include "bootstrap.hxx"
Bootstrap::Bootstrap(QObject *parent):
QObject(parent),
bsMode(LightMode),
bsTheme(None),
bsLightBodyBg("#fff"),
bsDarkBodyBg("#212529")
{
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 bodyBg = toml_array_in(bootstrap, "BodyBg");
if (bodyBg) {
auto lightBodyBg = toml_string_at(bodyBg, 0).u.s;
bsLightBodyBg = QColor{lightBodyBg};
free(lightBodyBg);
auto darkBodyBg = toml_string_at(bodyBg, 1).u.s;
bsDarkBodyBg = QColor{darkBodyBg};
free(darkBodyBg);
}
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 bodyBgChanged();
}
Bootstrap::Theme Bootstrap::theme() const
{
return bsTheme;
}
void Bootstrap::setTheme(Theme theme)
{
if (theme == bsTheme) return;
bsTheme = theme;
emit themeChanged();
}
QColor Bootstrap::bodyBg() const
{
return bsMode ? bsDarkBodyBg : bsLightBodyBg;
}
|