-
Notifications
You must be signed in to change notification settings - Fork 4
/
ClassBox.qml
277 lines (233 loc) · 7.74 KB
/
ClassBox.qml
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import QtQuick 2.0
import codeviz 1.0
Item {
id: root
height: classContent.height
clip: true
property real baseSize: 25
property real coefficientSize: baseSize + centralityCoefficient * baseSize
property real centralityCoefficient: 1.0
property double zoom: 1.0
property alias title: classNamePlaceHolder.text
property alias inheritsListModel:inheritageListModel
property alias callOutsideListModel: callOutsideListModel
property string focusedMethodFrom: ""
property string focusedMethodTo: ""
signal methodFocused(var className ,var methodName)
signal methodUnFocused()
Behavior on width {
NumberAnimation { }
}
Behavior on height {
NumberAnimation { }
}
Rectangle {
color: "grey"
opacity: 0.5
anchors.fill: parent
}
ListModel {
id: lineList;
}
function getAttributePoint(attrName)
{
for(var i = 0 ; i < attributeRepeater.model.count ; ++i)
{
if(attributeRepeater.itemAt(i).attributeName === attrName)
{
return attributeRepeater.itemAt(i);
}
}
}
function getMethodPoint(methodName)
{
for(var i = 0 ; i < methodRepeater.model.count ; ++i)
{
if(methodRepeater.itemAt(i).methodName === methodName)
{
return methodRepeater.itemAt(i);
}
}
}
function refreshLinks()
{
}
Component.onCompleted: {
methodListModel.append(DataModel.queryMethods(root.title))
attributeListModel.append(DataModel.queryAttributes(root.title))
callInsideListModel.append(DataModel.queryCallsInsideClass(root.title))
callOutsideListModel.append(DataModel.queryCallsOutsideClass(root.title))
inheritageListModel.append(DataModel.queryInherits(root.title))
// Récupérer les références
var i = 0
var j
for (; i < methodListModel.count; ++i)
{ var tmp = DataModel.queryMethodReferences(root.title, methodListModel.get(i).name)
j = 0
while (tmp[j])
{
referenceListModel.append(tmp[j++])
}
} // Ranger les noms de fonction 1 à 1 dans la ListModel
}
ListModel {
id: methodListModel
}
ListModel {
id: attributeListModel
}
ListModel {
id: referenceListModel
}
ListModel {
id: callInsideListModel
}
ListModel {
id: callOutsideListModel
}
ListModel {
id: inheritageListModel
}
states: [
State {
name: "zeroZoom"
when: zoom > 3
PropertyChanges {
target: root
width: 450 // Math.min(classNamePlaceHolder.implicitWidth, 400)
}
},
State {
name: "firstZoom"
when: zoom <= 3 && zoom > 2
PropertyChanges {
target: root
width: 300 // Math.min(classNamePlaceHolder.implicitWidth, 300)
}
},
State {
name: "secondZoom"
when: zoom <= 2
PropertyChanges {
target: root
width: Math.min(classNamePlaceHolder.implicitWidth, 200)
}
}
]
Column {
id: classContent
anchors.left: parent.left
anchors.right: parent.right
Rectangle {
id: titleContainer
anchors.left: parent.left
anchors.right: parent.right
height: coefficientSize
color: "steelblue"
opacity: 0.8
Text {
id: classNamePlaceHolder
anchors.fill: parent
elide: Text.ElideRight
font.pixelSize: titleContainer.height - 10
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
}
}
Row {
id: classRow
height: attributesContainer.height > methodsContainer.height
? attributesContainer.height
: methodsContainer.height
Column {
id: attributesContainer
visible: opacity > 0.0
opacity: root.state === "zeroZoom" ? 1.0 : 0.0
Behavior on opacity {
NumberAnimation {}
}
width: root.state === "zeroZoom" ? titleContainer.width / 2 : 0
onWidthChanged: refreshLinks();
Repeater{
id: attributeRepeater
model: attributeListModel
width: parent.width
delegate:
Row {
width: parent.width
property string attributeName: name
Text {
text: type + " "+ name
width: parent.width
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
}
}
}
}
Column {
id: methodsContainer
width: /*titleContainer.width / 2*/ root.state === "zeroZoom" ? titleContainer.width / 2 : titleContainer.width
visible: opacity > 0.0
opacity: !(root.state === "secondZoom") ? 1.0 : 0.0
Behavior on opacity {
NumberAnimation {}
}
Repeater {
id: methodRepeater
model: methodListModel
width: parent.width
delegate:
Row {
property string methodName: name
width: parent.width
Text {
MouseArea{
anchors.fill: parent
hoverEnabled: true
onEntered: {
methodFocused(root.title, methodName)
}
onExited: {
methodUnFocused()
}
}
id: textField
visible: (root.state === "firstZoom" && visibility === "public") || (root.state === "zeroZoom");
font.pixelSize: 15
width: parent.width
text: (root.state === "firstZoom" ? "" : visibility+": " ) + name + "()"
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
color: methodName == root.focusedMethodFrom || methodName == root.focusedMethodTo ? "red" : "black"
}
}
}
}
}
}
Repeater {
id:linksRepeater
model: lineList
anchors.fill: parent;
delegate: Rectangle {
id: rec
transform: Rotation {
angle: Math.atan((toY - fromY)/(toX - fromX))*180/Math.PI
}
x: fromX
y: fromY
z: classContent.z + 1
height: 2
color: "green"
width: Math.sqrt((fromX - toX)*(fromX - toX) + (fromY - toY)*(fromY - toY))
}
}
MouseArea {
anchors.fill: parent
onClicked: {
}
}
}