summaryrefslogtreecommitdiffstats
path: root/screens/TimeSlot/TaskItem.tscn
blob: 1a9948d70ecd827e7e69bdc4367df7b49412093d (plain) (blame)
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
[gd_scene load_steps=5 format=2]

[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://screens/TimeSlot/TaskItem.gd" type="Script" id=2]

[sub_resource type="DynamicFont" id=1]
size = 72
font_data = ExtResource( 1 )

[sub_resource type="DynamicFont" id=2]
size = 72
font_data = ExtResource( 1 )

[node name="TaskItem" type="MarginContainer"]
margin_right = 1026.0
margin_bottom = 110.0
custom_constants/margin_top = 5
custom_constants/margin_bottom = 5
script = ExtResource( 2 )

[node name="Button" type="Button" parent="."]
margin_top = 5.0
margin_right = 1026.0
margin_bottom = 105.0
rect_min_size = Vector2( 0, 100 )

[node name="HBoxContainer" type="HBoxContainer" parent="Button"]
margin_right = 1026.0
margin_bottom = 100.0
alignment = 2

[node name="Name" type="Label" parent="Button/HBoxContainer"]
unique_name_in_owner = true
margin_top = 8.0
margin_right = 493.0
margin_bottom = 92.0
size_flags_horizontal = 3
custom_fonts/font = SubResource( 1 )
text = "Stretching"
clip_text = true

[node name="Length" type="Label" parent="Button/HBoxContainer"]
unique_name_in_owner = true
margin_left = 497.0
margin_top = 8.0
margin_right = 722.0
margin_bottom = 92.0
custom_fonts/font = SubResource( 1 )
text = "10 min"
align = 2

[node name="Frequency" type="Label" parent="Button/HBoxContainer"]
unique_name_in_owner = true
margin_left = 726.0
margin_top = 8.0
margin_right = 1026.0
margin_bottom = 92.0
rect_min_size = Vector2( 300, 0 )
custom_fonts/font = SubResource( 2 )
text = "Daily"
align = 2
clip_text = true

[connection signal="button_up" from="Button" to="." method="_on_Button_button_up"]