-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
main.tscn
101 lines (92 loc) · 2.39 KB
/
main.tscn
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
[gd_scene load_steps=2 format=3 uid="uid://bcw2442lg1ymu"]
[ext_resource type="Script" uid="uid://bmknk42p3rmaf" path="res://main.gd" id="1"]
[node name="Main" type="Panel"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1")
[node name="Label" type="Label" parent="."]
layout_mode = 0
offset_left = 20.0
offset_top = 10.0
offset_right = 285.0
offset_bottom = 48.0
text = "Available Benchmarks:"
vertical_alignment = 1
[node name="Tree" type="Tree" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = 10.0
offset_top = 56.0
offset_right = -10.0
offset_bottom = -74.0
grow_horizontal = 2
grow_vertical = 2
hide_root = true
metadata/_edit_layout_mode = 1
[node name="SelectAll" type="Button" parent="."]
layout_mode = 1
anchors_preset = 2
anchor_top = 1.0
anchor_bottom = 1.0
offset_left = 10.0
offset_top = -66.0
offset_right = 158.0
offset_bottom = -9.0
grow_vertical = 0
text = "Select All"
metadata/_edit_layout_mode = 1
[node name="SelectNone" type="Button" parent="."]
layout_mode = 1
anchors_preset = 2
anchor_top = 1.0
anchor_bottom = 1.0
offset_left = 184.0
offset_top = -66.0
offset_right = 365.0
offset_bottom = -9.0
grow_vertical = 0
text = "Select None"
metadata/_edit_layout_mode = 1
[node name="CopyJSON" type="Button" parent="."]
layout_mode = 1
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -542.0
offset_top = -66.0
offset_right = -224.0
offset_bottom = -9.0
grow_horizontal = 0
grow_vertical = 0
text = "Copy JSON to Clipboard"
metadata/_edit_layout_mode = 1
[node name="Run" type="Button" parent="."]
layout_mode = 1
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -182.0
offset_top = -66.0
offset_right = -11.0
offset_bottom = -9.0
grow_horizontal = 0
grow_vertical = 0
theme_override_font_sizes/font_size = 30
disabled = true
text = "Run
"
metadata/_edit_layout_mode = 1
[connection signal="item_edited" from="Tree" to="." method="_on_Tree_item_edited"]
[connection signal="pressed" from="SelectAll" to="." method="_on_SelectAll_pressed"]
[connection signal="pressed" from="SelectNone" to="." method="_on_SelectNone_pressed"]
[connection signal="pressed" from="CopyJSON" to="." method="_on_CopyJSON_pressed"]
[connection signal="pressed" from="Run" to="." method="_on_Run_pressed"]