-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGroupComment.cpp
130 lines (107 loc) · 2.77 KB
/
GroupComment.cpp
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#include "GroupComment.h"
using namespace VisNodeSys;
char GroupComment::GroupCommentRename[GROUP_COMMENT_CAPTION_MAX_LENGHT] = "";
GroupComment::GroupComment(const std::string ID)
{
this->ID = ID;
if (ID.empty())
this->ID = NODE_CORE.GetUniqueHexID();
SetSize(ImVec2(200, 200));
}
GroupComment::GroupComment(const GroupComment& Src)
{
ParentArea = Src.ParentArea;
ID = NODE_CORE.GetUniqueHexID();
Position = Src.Position;
Size = Src.Size;
Caption = Src.Caption;
bMoveElementsWithComment = Src.bMoveElementsWithComment;
BackgroundColor = Src.BackgroundColor;
}
std::string GroupComment::GetID()
{
return ID;
}
ImVec2 GroupComment::GetPosition() const
{
return Position;
}
void GroupComment::SetPosition(const ImVec2 NewValue)
{
Position = NewValue;
}
ImVec2 GroupComment::GetSize() const
{
return Size;
}
void GroupComment::SetSize(const ImVec2 NewValue)
{
Size = NewValue;
}
void GroupComment::Draw() {}
Json::Value GroupComment::ToJson()
{
Json::Value Result;
Result["ID"] = ID;
Result["position"]["x"] = Position.x;
Result["position"]["y"] = Position.y;
Result["size"]["x"] = Size.x;
Result["size"]["y"] = Size.y;
Result["caption"] = Caption;
Result["bMoveElementsWithComment"] = bMoveElementsWithComment;
Result["BackgroundColor"]["x"] = BackgroundColor.x;
Result["BackgroundColor"]["y"] = BackgroundColor.y;
Result["BackgroundColor"]["z"] = BackgroundColor.z;
Result["BackgroundColor"]["w"] = BackgroundColor.w;
return Result;
}
void GroupComment::FromJson(Json::Value Json)
{
ID = Json["ID"].asCString();
Position.x = Json["position"]["x"].asFloat();
Position.y = Json["position"]["y"].asFloat();
Size.x = Json["size"]["x"].asFloat();
Size.y = Json["size"]["y"].asFloat();
Caption = Json["caption"].asCString();
bMoveElementsWithComment = Json["bMoveElementsWithComment"].asBool();
BackgroundColor.x = Json["BackgroundColor"]["x"].asFloat();
BackgroundColor.y = Json["BackgroundColor"]["y"].asFloat();
BackgroundColor.z = Json["BackgroundColor"]["z"].asFloat();
BackgroundColor.w = Json["BackgroundColor"]["w"].asFloat();
}
bool GroupComment::IsHovered() const
{
return bHovered;
}
bool GroupComment::IsSelected() const
{
return bSelected;
}
NodeArea* GroupComment::GetParentArea() const
{
return ParentArea;
}
void GroupComment::SetCaption(std::string NewValue)
{
Caption = NewValue;
}
std::string GroupComment::GetCaption() const
{
return Caption;
}
float GroupComment::GetCaptionHeight(float Zoom) const
{
return 50.0f * Zoom;
}
ImVec2 GroupComment::GetCaptionSize(float Zoom) const
{
return ImVec2((GetSize() * Zoom).x - 8.0f * Zoom, GetCaptionHeight(Zoom));
}
bool GroupComment::MoveElementsWithComment() const
{
return bMoveElementsWithComment;
}
void GroupComment::SetMoveElementsWithComment(bool NewValue)
{
bMoveElementsWithComment = NewValue;
}