forked from paceholder/nodeeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlowViewStyle.cpp
More file actions
111 lines (84 loc) · 2.46 KB
/
FlowViewStyle.cpp
File metadata and controls
111 lines (84 loc) · 2.46 KB
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
102
103
104
105
106
107
108
109
110
111
#include "FlowViewStyle.hpp"
#include <QtCore/QFile>
#include <QtCore/QJsonDocument>
#include <QtCore/QJsonObject>
#include <QtCore/QJsonValueRef>
#include <QtCore/QJsonArray>
#include <QDebug>
#include "StyleCollection.hpp"
using QtNodes::FlowViewStyle;
inline void initResources() { Q_INIT_RESOURCE(resources); }
FlowViewStyle::
FlowViewStyle()
{
// Explicit resources inialization for preventing the static initialization
// order fiasco: https://isocpp.org/wiki/faq/ctors#static-init-order
initResources();
// This configuration is stored inside the compiled unit and is loaded statically
loadJsonFile(":DefaultStyle.json");
}
FlowViewStyle::
FlowViewStyle(QString jsonText)
{
loadJsonText(jsonText);
}
void
FlowViewStyle::
setStyle(QString jsonText)
{
FlowViewStyle style(jsonText);
StyleCollection::setFlowViewStyle(style);
}
#ifdef STYLE_DEBUG
#define FLOW_VIEW_STYLE_CHECK_UNDEFINED_VALUE(v, variable) { \
if (v.type() == QJsonValue::Undefined || \
v.type() == QJsonValue::Null) \
qWarning() << "Undefined value for parameter:" << #variable; \
}
#else
#define FLOW_VIEW_STYLE_CHECK_UNDEFINED_VALUE(v, variable)
#endif
#define FLOW_VIEW_STYLE_READ_COLOR(values, variable) { \
auto valueRef = values[#variable]; \
FLOW_VIEW_STYLE_CHECK_UNDEFINED_VALUE(valueRef, variable) \
if (valueRef.isArray()) { \
auto colorArray = valueRef.toArray(); \
std::vector<int> rgb; rgb.reserve(3); \
for (auto it = colorArray.begin(); it != colorArray.end(); ++it) { \
rgb.push_back((*it).toInt()); \
} \
variable = QColor(rgb[0], rgb[1], rgb[2]); \
} else { \
variable = QColor(valueRef.toString()); \
} \
}
void
FlowViewStyle::
loadJsonFile(QString styleFile)
{
QFile file(styleFile);
if (!file.open(QIODevice::ReadOnly))
{
qWarning() << "Couldn't open file " << styleFile;
return;
}
loadJsonFromByteArray(file.readAll());
}
void
FlowViewStyle::
loadJsonText(QString jsonText)
{
loadJsonFromByteArray(jsonText.toUtf8());
}
void
FlowViewStyle::
loadJsonFromByteArray(QByteArray const &byteArray)
{
QJsonDocument json(QJsonDocument::fromJson(byteArray));
QJsonObject topLevelObject = json.object();
QJsonValueRef nodeStyleValues = topLevelObject["FlowViewStyle"];
QJsonObject obj = nodeStyleValues.toObject();
FLOW_VIEW_STYLE_READ_COLOR(obj, BackgroundColor);
FLOW_VIEW_STYLE_READ_COLOR(obj, FineGridColor);
FLOW_VIEW_STYLE_READ_COLOR(obj, CoarseGridColor);
}