MemR/game/sort/Sort.tscn

123 lines
3.6 KiB
Plaintext

[gd_scene load_steps=2 format=2]
[ext_resource path="res://sort/Sort.gd" type="Script" id=1]
[node name="Sort" type="VBoxContainer"]
margin_right = 1024.0
margin_bottom = 600.0
script = ExtResource( 1 )
[node name="ScrollContainer" type="ScrollContainer" parent="."]
margin_right = 1024.0
margin_bottom = 500.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="TextureRect" type="TextureRect" parent="ScrollContainer"]
[node name="Categories" type="HBoxContainer" parent="."]
margin_top = 504.0
margin_right = 1024.0
margin_bottom = 524.0
size_flags_horizontal = 3
[node name="Categories" type="OptionButton" parent="Categories"]
margin_right = 1000.0
margin_bottom = 20.0
size_flags_horizontal = 3
[node name="Add" type="Button" parent="Categories"]
margin_left = 1004.0
margin_right = 1024.0
margin_bottom = 20.0
text = "+"
[node name="SubCategoies" type="HBoxContainer" parent="."]
margin_top = 528.0
margin_right = 1024.0
margin_bottom = 548.0
size_flags_horizontal = 3
[node name="SubCategoies" type="OptionButton" parent="SubCategoies"]
margin_right = 1000.0
margin_bottom = 20.0
size_flags_horizontal = 3
[node name="Add" type="Button" parent="SubCategoies"]
margin_left = 1004.0
margin_right = 1024.0
margin_bottom = 20.0
text = "+"
[node name="Apply" type="Button" parent="."]
margin_top = 552.0
margin_right = 1024.0
margin_bottom = 572.0
text = "Apply"
[node name="Skip" type="Button" parent="."]
margin_top = 576.0
margin_right = 1024.0
margin_bottom = 596.0
text = "Skip"
[node name="Control" type="Control" parent="."]
margin_top = 600.0
margin_right = 1024.0
margin_bottom = 600.0
[node name="NewCategoryPopup" type="ConfirmationDialog" parent="Control"]
margin_left = 291.0
margin_top = -404.0
margin_right = 491.0
margin_bottom = -318.0
window_title = "Add New Category"
[node name="VBoxContainer" type="VBoxContainer" parent="Control/NewCategoryPopup"]
margin_left = 8.0
margin_top = 8.0
margin_right = 192.0
margin_bottom = 50.0
[node name="Label" type="Label" parent="Control/NewCategoryPopup/VBoxContainer"]
margin_right = 184.0
margin_bottom = 14.0
text = "Name"
[node name="LineEdit" type="LineEdit" parent="Control/NewCategoryPopup/VBoxContainer"]
margin_top = 18.0
margin_right = 184.0
margin_bottom = 42.0
[node name="NewSubCategoryPopup" type="ConfirmationDialog" parent="Control"]
margin_left = 291.0
margin_top = -404.0
margin_right = 491.0
margin_bottom = -318.0
window_title = "Add Sub New Category"
[node name="VBoxContainer" type="VBoxContainer" parent="Control/NewSubCategoryPopup"]
margin_left = 8.0
margin_top = 8.0
margin_right = 192.0
margin_bottom = 50.0
[node name="Label" type="Label" parent="Control/NewSubCategoryPopup/VBoxContainer"]
margin_right = 184.0
margin_bottom = 14.0
text = "Name"
[node name="LineEdit" type="LineEdit" parent="Control/NewSubCategoryPopup/VBoxContainer"]
margin_top = 18.0
margin_right = 184.0
margin_bottom = 42.0
[connection signal="item_selected" from="Categories/Categories" to="." method="_on_Categories_item_selected"]
[connection signal="pressed" from="Categories/Add" to="." method="_on_Categories_Add_pressed"]
[connection signal="item_selected" from="SubCategoies/SubCategoies" to="." method="_on_SubCategoies_item_selected"]
[connection signal="pressed" from="SubCategoies/Add" to="." method="_on_SubCategoies_Add_pressed"]
[connection signal="pressed" from="Apply" to="." method="_on_Apply_pressed"]
[connection signal="pressed" from="Skip" to="." method="_on_Skip_pressed"]
[connection signal="confirmed" from="Control/NewCategoryPopup" to="." method="_on_NewCategoryPopup_confirmed"]
[connection signal="confirmed" from="Control/NewSubCategoryPopup" to="." method="_on_NewSubCategoryPopup_confirmed"]