AppManager/src/Node2D.tscn

86 lines
2.2 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="Node2D" type="Node2D"]
script = ExtResource( 1 )
[node name="Panel" type="Panel" parent="."]
margin_right = 1022.0
margin_bottom = 596.0
[node name="LineEdit" type="LineEdit" parent="Panel"]
margin_left = 400.0
margin_top = 5.0
margin_right = 600.0
margin_bottom = 29.0
[node name="Tree" type="Tree" parent="Panel"]
margin_top = 30.0
margin_right = 1022.0
margin_bottom = 596.0
mouse_default_cursor_shape = 2
columns = 2
allow_reselect = true
allow_rmb_select = true
[node name="Button" type="Button" parent="Panel"]
margin_left = 5.0
margin_top = 5.0
margin_right = 69.0
margin_bottom = 25.0
text = "APPLY CHANGES"
[node name="Panel" type="Panel" parent="Panel"]
visible = false
margin_left = 200.0
margin_top = 150.0
margin_right = 800.0
margin_bottom = 550.0
custom_styles/panel = SubResource( 1 )
[node name="RichTextLabel" type="RichTextLabel" parent="Panel/Panel"]
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="Panel/Panel"]
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="Panel/Panel"]
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"
[node name="Search_Descr" type="CheckButton" parent="Panel"]
margin_left = 600.0
margin_right = 782.0
margin_bottom = 40.0
text = "Search in DESCR"
[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="Panel/Panel/Accept" to="." method="_on_Accept_pressed"]
[connection signal="pressed" from="Panel/Panel/Cancel" to="." method="_on_Cancel_pressed"]