AppManager/src/Node2D.tscn

99 lines
2.6 KiB
Plaintext

[gd_scene load_steps=3 format=2]
[ext_resource path="res://Node2D.gd" type="Script" id=1]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0, 0, 0, 1 )
[node name="Control" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
size_flags_vertical = 3
script = ExtResource( 1 )
[node name="Panel" type="Panel" parent="."]
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="LineEdit" type="LineEdit" parent="Panel"]
margin_left = 293.0
margin_top = 7.0
margin_right = 484.0
margin_bottom = 47.0
caret_blink = true
caret_blink_speed = 0.5
[node name="Tree" type="Tree" parent="Panel"]
margin_top = 55.0
margin_right = 1024.0
margin_bottom = 600.0
rect_min_size = Vector2( 400, 400 )
mouse_default_cursor_shape = 2
size_flags_horizontal = 3
size_flags_vertical = 3
columns = 2
allow_reselect = true
allow_rmb_select = true
[node name="Button" type="Button" parent="Panel"]
margin_left = 63.0
margin_top = 7.0
margin_right = 245.0
margin_bottom = 47.0
text = "APPLY CHANGES"
[node name="Search_Descr" type="CheckButton" parent="Panel"]
margin_left = 527.0
margin_top = 7.0
margin_right = 709.0
margin_bottom = 47.0
text = "Include description to search"
[node name="ConsolePanel" type="Panel" parent="."]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 63.0
margin_top = 75.0
margin_right = -104.0
margin_bottom = -66.0
custom_styles/panel = SubResource( 1 )
[node name="RichTextLabel" type="RichTextLabel" parent="ConsolePanel"]
margin_left = 5.0
margin_top = 5.0
margin_right = 600.0
margin_bottom = 300.0
custom_colors/default_color = Color( 0, 1, 0.0156863, 1 )
scroll_following = true
[node name="Accept" type="Button" parent="ConsolePanel"]
visible = false
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = -28.0
margin_top = -25.0
margin_right = 28.0
margin_bottom = -5.0
text = "Accept"
[node name="Cancel" type="Button" parent="ConsolePanel"]
visible = false
anchor_top = 1.0
anchor_bottom = 1.0
margin_left = 100.0
margin_top = -25.0
margin_right = 154.0
margin_bottom = -5.0
text = "Cancel"
[connection signal="resized" from="." to="." method="_on_Control_resized"]
[connection signal="text_entered" from="Panel/LineEdit" to="." method="_on_LineEdit_text_entered"]
[connection signal="item_selected" from="Panel/Tree" to="." method="_on_Tree_multi_selected"]
[connection signal="pressed" from="Panel/Button" to="." method="_on_Button_pressed"]
[connection signal="pressed" from="ConsolePanel/Accept" to="." method="_on_Accept_pressed"]
[connection signal="pressed" from="ConsolePanel/Cancel" to="." method="_on_Cancel_pressed"]