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
[gd_scene load_steps=4 format=2]

[ext_resource path="res://WS.gd" type="Script" id=1]
[ext_resource path="res://Chat.gd" type="Script" id=2]
[ext_resource path="res://theme.tres" type="Theme" id=3]

[node name="Main" type="Node"]
script = ExtResource( 1 )

[node name="Chat" type="Control" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 3 )
script = ExtResource( 2 )

[node name="v" type="VBoxContainer" parent="Chat"]
anchor_right = 1.0
anchor_bottom = 1.0
custom_constants/separation = 0

[node name="h" type="HBoxContainer" parent="Chat/v"]
margin_right = 1024.0
margin_bottom = 38.0
custom_constants/separation = 0

[node name="Panel" type="Panel" parent="Chat/v/h"]
margin_right = 10.0
margin_bottom = 38.0
rect_min_size = Vector2( 10, 0 )

[node name="whoami" type="LineEdit" parent="Chat/v/h"]
margin_left = 10.0
margin_right = 230.0
margin_bottom = 38.0
rect_min_size = Vector2( 220, 0 )
text = "Anonymous"
max_length = 30
expand_to_text_length = true
placeholder_text = "Anonymous"
caret_blink = true
caret_blink_speed = 0.5

[node name="Panel2" type="Panel" parent="Chat/v/h"]
margin_left = 230.0
margin_right = 370.0
margin_bottom = 38.0
rect_min_size = Vector2( 140, 0 )

[node name="Label" type="Label" parent="Chat/v/h/Panel2"]
anchor_right = 1.0
anchor_bottom = 1.0
text = "room 2"
align = 1
valign = 1

[node name="p" type="Panel" parent="Chat/v"]
margin_top = 38.0
margin_right = 1024.0
margin_bottom = 562.0
rect_min_size = Vector2( 896, 400 )
size_flags_vertical = 3

[node name="scroller" type="ScrollContainer" parent="Chat/v/p"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 10.0
rect_min_size = Vector2( 1000, 400 )

[node name="labels" type="VBoxContainer" parent="Chat/v/p/scroller"]

[node name="h2" type="HBoxContainer" parent="Chat/v"]
margin_top = 562.0
margin_right = 1024.0
margin_bottom = 600.0
custom_constants/separation = 0

[node name="Panel" type="Panel" parent="Chat/v/h2"]
margin_right = 10.0
margin_bottom = 38.0
rect_min_size = Vector2( 10, 0 )

[node name="text" type="LineEdit" parent="Chat/v/h2"]
margin_left = 10.0
margin_right = 900.0
margin_bottom = 38.0
rect_min_size = Vector2( 890, 0 )
max_length = 400
context_menu_enabled = false
placeholder_text = "message body goes here"
caret_blink = true
caret_blink_speed = 0.5

[node name="send" type="Button" parent="Chat/v/h2"]
margin_left = 900.0
margin_right = 1024.0
margin_bottom = 38.0
focus_mode = 0
size_flags_horizontal = 3
enabled_focus_mode = 0
text = "send"

[node name="Tween" type="Tween" parent="Chat"]

[connection signal="err" from="." to="Chat" method="_on_Main_err"]
[connection signal="recieved" from="." to="Chat" method="_on_Main_recieved"]
[connection signal="text_entered" from="Chat/v/h/whoami" to="Chat" method="_on_whoami_text_entered"]
[connection signal="text_entered" from="Chat/v/h2/text" to="Chat" method="_on_text_entered"]
[connection signal="pressed" from="Chat/v/h2/send" to="Chat" method="_on_send_pressed"]