-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDomainGraphLayout.qml
1884 lines (1712 loc) · 96.6 KB
/
DomainGraphLayout.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2023 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// This file is part of eProsima Fast DDS Monitor.
//
// eProsima Fast DDS Monitor is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// eProsima Fast DDS Monitor is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with eProsima Fast DDS Monitor. If not, see <https://www.gnu.org/licenses/>.
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import Theme 1.0
Item
{
id: domainGraphLayout
// Public properties
property var model: {} // domain view graph JSON model
property int domain_entity_id // entity id associated to the domain id
property int domain_id // domain id
required property string component_id // mandatory to be included when object created
// Public signals
signal update_tab_name(string new_name, string new_icon, string stack_id) // Update tab name based on selected domain id
signal openEntitiesMenu(string domainEntityId, string entityId, string currentAlias, string entityKind, int caller)
signal openTopicMenu(string domainEntityId, string domainId, string entityId, string currentAlias, string entityKind, int caller)
signal openLoadingGraphDialog() // let tab layout know that graph is about to be generated
signal initialized() // let tab layout know that graph has been generated
// Private properties
property var topic_locations_: {} // topic information needed for connection representation
property var topic_style_map_: {} // map with boolean values to alternate style in topics tags and connections
property var endpoint_topic_connections_: {} // endpoint information needed for connection representation
property var topic_painted_: [] // already painted topic connection references
property var endpoint_painted_: [] // already painted endpoint connection references
property var pending_endpoints_: [] // pending endpoints references that have not been resized yet
property var pending_connections_: [] // pending connections references that have not been generated yet
property var filtered_topics_: [] // flitered topic entity id in the graph
property var endpoints_per_topic: {} // list of endpoint ids associated to each topic
property int entity_box_width_: 0 // entity box width management
property bool topic_connections_generated: false // topic side connections generated
property bool endpoint_connections_generated: false // endpoint side connections generated
// Private (resize) signals The signal resize_elements_ will trigger all entities resize methods in
// HOST TOPIC ─┐ the order displayed in the left figure. All entities width value are
// 1↓ ... ↓4 5↑ 6└─>CONNECTIONS based on the var entity_box_width which would be updated with the max
// ENDPOINT ────┘ width. After that, connections between endpoints and topics are generated.
signal resize_elements_()
signal topics_updated_()
signal endpoints_updated_()
signal record_connections_()
signal topic_visibility_changed_(string endpoint_id, bool new_status)
// Read only design properties (sizes and colors)
readonly property int radius_: 10
readonly property int connection_thickness_: 6
readonly property int elements_spacing_: 5
readonly property int containers_spacing_: 100
readonly property int topic_tag_size_: 150
readonly property int topic_tag_margin_: 30
readonly property int max_topic_name_size_: 100
readonly property int endpoint_height_: 30
readonly property int first_indentation_: 5
readonly property int icon_size_: 18
readonly property int label_height_: 25
readonly property int spacing_icon_label_: 8
readonly property int spacing_icon_: 4
readonly property int scrollbar_min_size_: 8
readonly property int scrollbar_max_size_: 12
readonly property int topic_thickness_: 10
readonly property int wheel_displacement_: 30
readonly property int timer_initial_ms_interval_: 200
readonly property int hover_text_offset_: 50
readonly property int hover_delay_: 250
readonly property string topic_color_: Theme.grey
readonly property string topic_color_alias_: "grey" // color alias for svg icons
readonly property string topic_color2_: Theme.midGrey
readonly property string topic_color2_alias_: "mid_grey" // color alias for svg icons
readonly property string host_color_: Theme.darkGrey
readonly property string user_color_: Theme.eProsimaLightBlue
readonly property string process_color_: Theme.eProsimaDarkBlue
readonly property string participant_color_: Theme.whiteSmoke
readonly property string reader_color_: Theme.eProsimaYellow
readonly property string writer_color_: Theme.eProsimaGreen
// Horizontal scroll view for topics section. This will contain also a Flickable that replicates entities height
// and will move accordingly to display the connections
Flickable {
id: topicView
anchors.top: parent.top; anchors.bottom: parent.bottom
anchors.left: parent.left; anchors.leftMargin: entity_box_width_ + elements_spacing_
width: parent.width - entity_box_width_ - 9*elements_spacing_
flickableDirection: Flickable.HorizontalFlick
boundsBehavior: Flickable.StopAtBounds
contentWidth: topicsList.contentWidth + containers_spacing_
contentHeight: parent.height
ScrollBar.vertical: ScrollBar { policy: ScrollBar.AlwaysOff }
ScrollBar.horizontal: ScrollBar {
id: horizontal_bar
anchors.left: parent.left; anchors.leftMargin: 9*elements_spacing_
anchors.bottom: parent.bottom
policy: ScrollBar.AlwaysOn
visible: topicView.contentWidth > topicView.width
hoverEnabled: true
contentItem: Item {
implicitHeight: scrollbar_min_size_
Rectangle {
anchors.fill: parent
anchors.rightMargin: 2
anchors.leftMargin: 1
anchors.topMargin: 2
anchors.bottomMargin: 2
radius: height / 2
color: horizontal_bar.pressed ? Theme.eProsimaLightBlue : Theme.lightGrey
}
}
background: Item {
implicitHeight: scrollbar_max_size_
Rectangle {
anchors.fill: parent
color: horizontal_bar.pressed ? Theme.lightGrey : Theme.grey
}
}
}
// List view of topics model
ListView
{
id: topicsList
property int yOffset: label_height_ + elements_spacing_
model: domainGraphLayout.model ? domainGraphLayout.model["topics"] : undefined
anchors.left: parent.left; anchors.leftMargin: 9 * elements_spacing_
anchors.top: parent.top; anchors.topMargin: elements_spacing_;
anchors.bottom: parent.bottom
contentWidth: contentItem.childrenRect.width
spacing: -(topic_tag_size_/3 + elements_spacing_)
orientation: ListView.Horizontal
interactive: false
// Resizing management connections
Connections
{
target: domainGraphLayout
function onEndpoints_updated_()
{
topicsList.record_connections()
}
}
// Resize performed also when new element included in the model
onCountChanged:
{
topicsList.resize()
}
// Calculates the list height based on the number of contained entities, and width based on their widths
function resize()
{
var listViewHeight = 0
var listViewWidth = 0
// iterate over each element in the list item
for (var c = 0; c < topicsList.count; c++)
{
topicsList.currentIndex = c
if (topicsList.currentItem != null)
{
listViewHeight = topicsList.currentItem.height
listViewWidth += topicsList.currentItem.width + elements_spacing_
if (c > 1)
{
// The current item overlaps with the previous one
listViewWidth += topicsList.spacing
}
}
}
topicsList.height = listViewHeight
topicsList.width = listViewWidth
}
function record_connections()
{
var draw_width = 9*elements_spacing_
// load topic sizes
topicsList.resize()
// iterate over each element in the list item
for (var c = 0; c < topicsList.count; c++)
{
topicsList.currentIndex = c
topic_locations_[topicsList.currentItem.topic_id] = {
"id": topicsList.currentItem.topic_id,
"width" : draw_width + topicsList.currentItem.width/2
}
topic_style_map_[topicsList.currentItem.topic_id] = topicsList.currentItem.even_position
draw_width += topicsList.currentItem.width + topicsList.spacing
}
// announce topics are ready
topics_updated_()
}
// Topic delegated item box with vertical line
delegate: Rectangle
{
property string topic_id: modelData["id"]
property bool even_position: index % 2 === 0
implicitWidth: topic_tag.implicitWidth
height: topicsList.height
color: "transparent"
// Topic name and icon
Rectangle
{
id: topic_tag
height: label_height_
color: parent.even_position ? topic_color_ : topic_color2_
radius: radius_
y: !parent.even_position ? topicsList.yOffset : 0
property int textFullWidth: text_metrics.width
implicitWidth: topicsList.count > 1 ? topic_tag_size_ : Math.max(topic_tag_label.width + topic_tag_margin_, topic_tag_size_)
Label {
id: topic_tag_label
anchors.centerIn: parent
text: modelData["alias"]
Layout.rightMargin: 2* first_indentation_
color: "white"
width: topicsList.count > 1 ? max_topic_name_size_ : text.width
horizontalAlignment: Text.AlignHCenter
elide: Text.ElideRight
}
// Save total text size (without eliding)
TextMetrics {
id: text_metrics
text: modelData["alias"]
}
MouseArea
{
id: topic_tag_mouse_area
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
hoverEnabled: true
onClicked:
{
if(mouse.button & Qt.RightButton) {
openTopicMenu(domain_entity_id, domain_id, modelData["id"], modelData["alias"], modelData["kind"], panels.openMenuCaller.domainGraph)
} else {
controller.topic_click(modelData["id"])
}
}
}
Label {
id: hover_label
visible: false
anchors.top: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: hover_text_offset_
ToolTip.text: modelData["alias"]
// Show hover only if text is elided
ToolTip.visible: topic_tag_mouse_area.containsMouse && text_metrics.width > topic_tag_label.width
ToolTip.delay: hover_delay_
}
}
// Topic vertical line
Rectangle
{
id: topic_down_bar
anchors.top: topic_tag.bottom
anchors.bottom: parent.bottom
anchors.horizontalCenter: topic_tag.horizontalCenter
width: topic_thickness_
color: parent.even_position ? topic_color_ : topic_color2_
}
Connections {
target: topicView
function onContentXChanged()
{
domainGraphLayout.topic_visibility_changed(
topic_id, ((x + width/2 + topic_thickness_/2 + elements_spacing_) < topicView.contentX))
}
}
}
}
// Section where connections are represented
Flickable
{
id: topicSpace
anchors.top: parent.top; anchors.topMargin: topicsList.count > 1 ? label_height_ + topicsList.yOffset + 2* elements_spacing_ : label_height_ + 2* elements_spacing_
anchors.left: parent.left
width: parent.width
height: parent.height - (label_height_ + 2* elements_spacing_)
interactive: false
clip: true
contentWidth: topicsList.contentWidth + containers_spacing_
contentHeight: mainView.contentHeight
Rectangle {id: topic_connections; anchors.fill:parent; color: "transparent" }
// Not visible scroll bar
ScrollBar.vertical: ScrollBar{
id: custom_bar
visible: false
// connection to move vertically the view when entities view moves vertically
Connections {
target: vertical_bar
function onPositionChanged(){
custom_bar.position = vertical_bar.position
}
}
}
// Overriding mouse area to scroll horizontally on wheel event
MouseArea {
anchors.fill: parent
preventStealing: true
onWheel: {
if (topicView.contentWidth > topicView.width)
{
if (wheel.angleDelta.y > 0) {
topicView.contentX -= wheel_displacement_
if (topicView.contentX < 0) {
topicView.contentX = 0;
}
} else {
topicView.contentX += wheel_displacement_
if ((topicView.contentX + topicView.width) > topicView.contentWidth) {
topicView.contentX = topicView.contentWidth - topicView.width;
}
}
}
}
onClicked: mouse.accepted = false;
onPressed: mouse.accepted = false;
onReleased: mouse.accepted = false;
onDoubleClicked: mouse.accepted = false;
onPositionChanged: mouse.accepted = false;
onPressAndHold: mouse.accepted = false;
}
}
// Resizing management connections
Connections
{
target: domainGraphLayout
function onTopics_updated_()
{
topicView.generate_connections()
}
}
// Generate connections in topic side
function generate_connections()
{
for (var key in endpoint_topic_connections_)
{
var topic_id = endpoint_topic_connections_[key]["destination_id"]
if (topic_locations_[topic_id] != undefined)
{
if (!topic_painted_.includes(key))
{
var input = {"x": 0
,"right_direction": endpoint_topic_connections_[key]["right_direction"]
,"y": endpoint_topic_connections_[key]["y"] - (connection_thickness_ / 2)
,"width": topic_locations_[topic_id]["width"]
,"height":connection_thickness_, "z":200, "left_margin": 2*elements_spacing_
,"arrow_color": topic_style_map_[topic_id] ? topic_color_ : topic_color2_
,"arrow_head_color": topic_style_map_[topic_id] ? "grey" : "mid_grey"
,"background_color": background_color.color
,"endpoint_id": key
,"show_fill_gap": false }
var connection_bar = arrow_component.createObject(topic_connections, input)
topic_painted_[topic_painted_.length] = key;
}
}
}
topic_connections_generated = true
domainGraphLayout.connections_generated()
}
}
// Left section background (over right section)
Rectangle {
anchors.top: parent.top
anchors.left: parent.left
height: parent.height
width: entity_box_width_ + 9*elements_spacing_
color: "white"
}
// Entities vertical flickable (left section)
Flickable {
id: mainView
anchors.left: parent.left ; anchors.top: parent.top; anchors.bottom: parent.bottom
width: entity_box_width_ + elements_spacing_
anchors.topMargin: topicSpace.anchors.topMargin
flickableDirection: Flickable.VerticalFlick
boundsBehavior: Flickable.StopAtBounds
contentWidth: mainSpace.width
contentHeight: mainSpace.height
ScrollBar.horizontal: ScrollBar { policy: ScrollBar.AlwaysOff }
ScrollBar.vertical: ScrollBar {
id: vertical_bar
policy: ScrollBar.AlwaysOn
visible: mainView.contentHeight > mainView.height
anchors.top: parent.top; anchors.topMargin: -elements_spacing_
anchors.right: parent.right; anchors.rightMargin: parent.width - domainGraphLayout.width
hoverEnabled: true
contentItem: Item {
implicitWidth: scrollbar_min_size_
Rectangle {
anchors.fill: parent
anchors.topMargin: 1
anchors.rightMargin: 2
anchors.leftMargin: 2
radius: width / 2
color: vertical_bar.pressed ? Theme.eProsimaLightBlue : Theme.lightGrey
}
}
background: Item {
implicitWidth: scrollbar_max_size_
Rectangle {
anchors.fill: parent
color: vertical_bar.pressed ? Theme.lightGrey : Theme.grey
}
}
Rectangle {
anchors.top: parent.top
height: 1
width: parent.width
color: vertical_bar.pressed ? Theme.lightGrey : Theme.grey
}
}
// Space where entities will be represented
Rectangle
{
id: mainSpace
anchors.top: parent.top
width: hostsList.width + 2*elements_spacing_
height: hostsList.height < (domainGraphLayout.height - (label_height_ + 2*elements_spacing_))
? domainGraphLayout.height - (label_height_ + 2*elements_spacing_) : hostsList.height
// Entities background
Rectangle {
id: background_color
anchors.fill: parent
color: "white"
}
// Graph connection component definition for object creation purposes
Component {
id: arrow_component
GraphConnection{
id: conn
Connections{
target: domainGraphLayout
function onTopic_visibility_changed_(endpoint_id, new_status)
{
conn.topid_hidden(endpoint_id, new_status)
}
}
}
}
// List view of hosts model (which would contain remain entities nested)
ListView
{
id: hostsList
model: domainGraphLayout.model ? domainGraphLayout.model["hosts"] : undefined
anchors.top: parent.top
anchors.left: parent.left; anchors.leftMargin: elements_spacing_
interactive: false
spacing: elements_spacing_
// Resizing management connections
Connections
{
target: domainGraphLayout
function onResize_elements_()
{
hostsList.resize()
hostsList.resize_elements()
}
}
// Resize performed also when new element included in the model
onCountChanged:
{
hostsList.resize()
}
// Calculates the list height based on the number of contained entities, and width based on their widths
function resize()
{
var listViewHeight = 0
var aux_width = entity_box_width_
// iterate over each element in the list item
for (var c = 0; c < hostsList.count; c++)
{
hostsList.currentIndex = c
if (hostsList.currentItem != null)
{
listViewHeight += hostsList.currentItem.height + elements_spacing_
aux_width = Math.max(aux_width, hostsList.currentItem.width)
}
}
hostsList.height = listViewHeight
// update if necessary
if (aux_width > entity_box_width_)
{
entity_box_width_ = aux_width
}
}
// Makes each list element to be resized
function resize_elements()
{
// iterate over each element in the list item
for (var c = 0; c < hostsList.count; c++)
{
hostsList.currentIndex = c
if (hostsList.currentItem != null)
{
hostsList.currentItem.resize()
}
}
}
// Host delegated item box
delegate: Item
{
height: host_tag.height + usersList.height
width: hostRowLayout.implicitWidth > entity_box_width_
? hostRowLayout.implicitWidth
: entity_box_width_
function resize()
{
usersList.resize()
usersList.resize_elements()
}
// background
Rectangle
{
id: host_background
height: parent.height
width: parent.width
color: host_color_
radius: radius_
}
// host name and icons
Rectangle
{
id: host_tag
anchors.horizontalCenter: parent.horizontalCenter
implicitWidth: hostRowLayout.implicitWidth > entity_box_width_
? hostRowLayout.implicitWidth
: entity_box_width_
height: modelData["alias"] != "Unknown" ? label_height_ : 0
color: host_color_
radius: radius_
visible: modelData["alias"] != "Unknown"
RowLayout {
id: hostRowLayout
spacing: spacing_icon_label_
anchors.centerIn: parent
Rectangle {
color: "transparent"
width: first_indentation_
}
Rectangle {
visible: modelData["status"] != "OK"
color: modelData["status"] == "WARNING" ? "transparent" : "white"
width: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
height: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
radius: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
IconSVG {
anchors.centerIn: parent
name: modelData["status"] == "WARNING" ? "issues" : "error"
color: modelData["status"] == "WARNING" ? "yellow" : "red"
size: modelData["status"] != "OK"? icon_size_ : 0
}
}
IconSVG {
name: "host"
color: "white"
size: icon_size_
}
Label {
text: modelData["alias"]
Layout.rightMargin: first_indentation_
color: "white"
}
}
MouseArea
{
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked:
{
if(mouse.button & Qt.RightButton) {
openEntitiesMenu(domain_entity_id, modelData["id"], modelData["alias"], modelData["kind"], openMenuCaller.domainGraph)
} else {
controller.host_click(modelData["id"])
}
}
}
}
// List view of users model (which would contain remain entities nested)
ListView
{
id: usersList
model: modelData["users"]
anchors.top: host_tag.bottom; anchors.topMargin: elements_spacing_
anchors.left: parent.left; anchors.leftMargin: elements_spacing_
anchors.right: parent.right; anchors.rightMargin: elements_spacing_
interactive: false
spacing: elements_spacing_
// Resize performed also when new element included in the model
onCountChanged:
{
usersList.resize()
}
// Calculates the list height based on the number of contained entities, and width based on
// their widths
function resize()
{
var listViewHeight = 0
var aux_width = entity_box_width_
// iterate over each element in the list item
for (var c = 0; c < usersList.count; c++)
{
usersList.currentIndex = c
if (usersList.currentItem != null)
{
listViewHeight += usersList.currentItem.height + elements_spacing_
aux_width = Math.max(aux_width, usersList.currentItem.width+(2*elements_spacing_))
}
}
usersList.height = listViewHeight + elements_spacing_
// update if necessary
if (aux_width > entity_box_width_)
{
entity_box_width_ = aux_width
}
}
// Makes each list element to be resized
function resize_elements()
{
// iterate over each element in the list item
for (var c = 0; c < usersList.count; c++)
{
usersList.currentIndex = c
if (usersList.currentItem != null)
{
usersList.currentItem.resize()
}
}
}
// User delegated item box
delegate: Item
{
height: user_tag.height + processesList.height
width: userRowLayout.implicitWidth > (entity_box_width_-(2*elements_spacing_))
? userRowLayout.implicitWidth
: entity_box_width_-(2*elements_spacing_)
function resize()
{
processesList.resize()
processesList.resize_elements()
}
// background
Rectangle
{
id: user_background
height: parent.height
width: parent.width
color: user_color_
radius: radius_
}
// user name and icons
Rectangle
{
id: user_tag
anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter
implicitWidth: userRowLayout.implicitWidth > (entity_box_width_-(2*elements_spacing_))
? userRowLayout.implicitWidth
: entity_box_width_-(2*elements_spacing_)
height: modelData["alias"] != "Unknown" ? label_height_ : 0
color: user_color_
radius: radius_
visible: modelData["alias"] != "Unknown"
RowLayout {
id: userRowLayout
spacing: spacing_icon_label_
anchors.centerIn: parent
Rectangle {
color: "transparent"
width: first_indentation_
}
Rectangle {
visible: modelData["status"] != "OK"
color: modelData["status"] == "WARNING" ? "transparent" : "white"
width: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
height: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
radius: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
IconSVG {
anchors.centerIn: parent
name: modelData["status"] == "WARNING" ? "issues" : "error"
color: modelData["status"] == "WARNING" ? "yellow" : "red"
size: modelData["status"] != "OK"? icon_size_ : 0
}
}
IconSVG {
name: "user"
color: "white"
size: icon_size_
}
Label {
text: modelData["alias"]
Layout.rightMargin: first_indentation_
color: "white"
}
}
MouseArea
{
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked:
{
if(mouse.button & Qt.RightButton) {
openEntitiesMenu(domain_entity_id, modelData["id"], modelData["alias"], modelData["kind"], openMenuCaller.domainGraph)
} else {
controller.user_click(modelData["id"])
}
}
}
}
// List view of processes model (which would contain remain entities nested)
ListView
{
id: processesList
model: modelData["processes"]
anchors.top: user_tag.bottom; anchors.topMargin: elements_spacing_
anchors.left: parent.left; anchors.leftMargin: elements_spacing_
anchors.right: parent.right; anchors.rightMargin: elements_spacing_
interactive: false
spacing: elements_spacing_
// Resize performed also when new element included in the model
onCountChanged:
{
processesList.resize()
}
// Calculates the list height based on the number of contained entities,
// and width based on their widths
function resize()
{
var listViewHeight = 0
var aux_width = entity_box_width_
// iterate over each element in the list item
for (var c = 0; c < processesList.count; c++)
{
processesList.currentIndex = c
if (processesList.currentItem != null)
{
listViewHeight += processesList.currentItem.height + elements_spacing_
aux_width = Math.max(aux_width, processesList.currentItem.width+(4*elements_spacing_))
}
}
processesList.height = listViewHeight + elements_spacing_
// update if necessary
if (aux_width > entity_box_width_)
{
entity_box_width_ = aux_width
}
}
// Makes each list element to be resized
function resize_elements()
{
// iterate over each element in the list item
for (var c = 0; c < processesList.count; c++)
{
processesList.currentIndex = c
if (processesList.currentItem != null)
{
processesList.currentItem.resize()
}
}
}
// Process delegated item box
delegate: Item
{
height: process_tag.height + participantsList.height
width: processRowLayout.implicitWidth > (entity_box_width_-(4*elements_spacing_))
? processRowLayout.implicitWidth
: entity_box_width_-(4*elements_spacing_)
function resize()
{
participantsList.resize()
participantsList.resize_elements()
}
// background
Rectangle
{
id: process_background
height: parent.height
width: parent.width
color: process_color_
radius: radius_
}
// process name and icons
Rectangle
{
id: process_tag
anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter
implicitWidth: processRowLayout.implicitWidth > (entity_box_width_-(4*elements_spacing_))
? processRowLayout.implicitWidth
: entity_box_width_-(4*elements_spacing_)
height: modelData["alias"] != "Unknown" ? label_height_ : 0
color: process_color_
radius: radius_
visible: modelData["alias"] != "Unknown"
RowLayout {
id: processRowLayout
spacing: spacing_icon_label_
anchors.centerIn: parent
Rectangle {
color: "transparent"
width: first_indentation_
}
Rectangle {
visible: modelData["status"] != "OK"
color: modelData["status"] == "WARNING" ? "transparent" : "white"
width: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
height: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
radius: modelData["status"] != "OK"? icon_size_ + spacing_icon_: 0
IconSVG {
anchors.centerIn: parent
name: modelData["status"] == "WARNING" ? "issues" : "error"
color: modelData["status"] == "WARNING" ? "yellow" : "red"
size: modelData["status"] != "OK"? icon_size_ : 0
}
}
IconSVG {
name: "process"
color: "white"
size: icon_size_
}
Label {
text: modelData["alias"]
Layout.rightMargin: first_indentation_
color: "white"
}
}
MouseArea
{
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked:
{
if(mouse.button & Qt.RightButton) {
openEntitiesMenu(domain_entity_id, modelData["id"], modelData["alias"], modelData["kind"], openMenuCaller.domainGraph)
} else {
controller.process_click(modelData["id"])
}
}
}
}
// List view of participants model (which would contain remain endpoints nested)
ListView
{
id: participantsList
model: modelData["participants"]
anchors.top: process_tag.bottom; anchors.topMargin: elements_spacing_
anchors.left: parent.left; anchors.leftMargin: elements_spacing_
anchors.right: parent.right; anchors.rightMargin: elements_spacing_
interactive: false
spacing: elements_spacing_
// Resize performed also when new element included in the model
onCountChanged:
{
participantsList.resize()
}
// Calculates the list height based on the number of contained entities,
// and width based on their widths
function resize()
{
var listViewHeight = 0
var aux_width = entity_box_width_
// iterate over each element in the list item
for (var c = 0; c < participantsList.count; c++)
{
participantsList.currentIndex = c
if (participantsList.currentItem != null)
{
listViewHeight += participantsList.currentItem.height + elements_spacing_
aux_width = Math.max(aux_width, participantsList.currentItem.width+(6*elements_spacing_))
}
}
participantsList.height = listViewHeight + elements_spacing_
// update if necessary
if (aux_width > entity_box_width_)
{
entity_box_width_ = aux_width
}
}
// Makes each list element to be resized
function resize_elements()
{
// iterate over each element in the list item
for (var c = 0; c < participantsList.count; c++)
{
participantsList.currentIndex = c
if (participantsList.currentItem != null)
{
participantsList.currentItem.resize()