-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathComment.tscn
129 lines (116 loc) · 3.09 KB
/
Comment.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[gd_scene load_steps=5 format=2]
[ext_resource path="res://OpenSeed-Godot/Comment.gd" type="Script" id=1]
[ext_resource path="res://OpenSeed-Godot/window-close-symbolic.svg" type="Texture" id=2]
[ext_resource path="res://OpenSeed-Godot/Fonts/titleFont.tres" type="DynamicFont" id=3]
[ext_resource path="res://OpenSeed-Godot/Contact.tscn" type="PackedScene" id=4]
[node name="Comment" type="Control"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -300.0
margin_top = -150.0
margin_right = 338.0
margin_bottom = 165.0
rect_min_size = Vector2( 600, 300 )
rect_clip_content = true
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="shadow" type="Panel" parent="."]
self_modulate = Color( 0.109804, 0.32549, 0.12549, 0.4 )
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 8.0
margin_top = 6.0
margin_right = 8.0
margin_bottom = 6.0
__meta__ = {
"_edit_lock_": true
}
[node name="Panel" type="Panel" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_lock_": true
}
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 8.0
margin_top = 6.0
margin_right = -10.0
margin_bottom = -6.0
[node name="Label" type="Label" parent="VBoxContainer"]
margin_right = 620.0
margin_bottom = 29.0
custom_fonts/font = ExtResource( 3 )
text = "Comment"
align = 1
valign = 1
[node name="HSeparator" type="HSeparator" parent="VBoxContainer"]
margin_top = 37.0
margin_right = 620.0
margin_bottom = 45.0
[node name="Bottom" type="HBoxContainer" parent="."]
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 8.0
margin_top = -49.0
margin_right = -108.0
margin_bottom = -7.0
rect_clip_content = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Contact" parent="Bottom" instance=ExtResource( 4 )]
[node name="Label" type="Label" parent="Bottom"]
margin_left = 50.0
margin_top = 8.0
margin_right = 500.0
margin_bottom = 33.0
grow_vertical = 2
rect_min_size = Vector2( 450, 0 )
valign = 3
clip_text = true
[node name="TextEdit" type="TextEdit" parent="."]
anchor_right = 1.0
margin_left = 7.0
margin_top = 40.0
margin_right = -6.0
margin_bottom = 244.0
wrap_enabled = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Send" type="Button" parent="."]
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -87.0
margin_top = -44.0
margin_right = -9.0
margin_bottom = -7.0
text = "Send"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Close" type="TextureButton" parent="."]
margin_left = 7.8028
margin_top = 4.87674
margin_right = 19.8028
margin_bottom = 16.8767
rect_min_size = Vector2( 12, 12 )
texture_normal = ExtResource( 2 )
texture_pressed = ExtResource( 2 )
texture_hover = ExtResource( 2 )
texture_disabled = ExtResource( 2 )
texture_focused = ExtResource( 2 )
expand = true
stretch_mode = 5
[connection signal="visibility_changed" from="." to="." method="_on_Comment_visibility_changed"]
[connection signal="pressed" from="Send" to="." method="_on_Send_pressed"]
[connection signal="pressed" from="Close" to="." method="_on_Close_pressed"]