summaryrefslogtreecommitdiffstats
path: root/screens/Task/Body.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'screens/Task/Body.tscn')
-rw-r--r--screens/Task/Body.tscn57
1 files changed, 57 insertions, 0 deletions
diff --git a/screens/Task/Body.tscn b/screens/Task/Body.tscn
new file mode 100644
index 0000000..9185ad4
--- /dev/null
+++ b/screens/Task/Body.tscn
@@ -0,0 +1,57 @@
+[gd_scene load_steps=5 format=2]
+
+[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1]
+[ext_resource path="res://screens/Task/SubtaskItem.tscn" type="PackedScene" id=2]
+
+[sub_resource type="DynamicFont" id=2]
+size = 100
+font_data = ExtResource( 1 )
+
+[sub_resource type="DynamicFont" id=3]
+size = 50
+font_data = ExtResource( 1 )
+
+[node name="TaskBody" type="VBoxContainer"]
+margin_left = 20.0
+margin_top = 20.0
+margin_right = 1046.0
+margin_bottom = 1664.0
+
+[node name="HBoxContainer" type="HBoxContainer" parent="."]
+margin_right = 1026.0
+margin_bottom = 300.0
+
+[node name="Length" type="Label" parent="HBoxContainer"]
+margin_right = 511.0
+margin_bottom = 300.0
+rect_min_size = Vector2( 0, 300 )
+size_flags_horizontal = 3
+custom_fonts/font = SubResource( 2 )
+text = "10 min."
+valign = 1
+clip_text = true
+
+[node name="Description" type="TextEdit" parent="HBoxContainer"]
+margin_left = 515.0
+margin_right = 1026.0
+margin_bottom = 300.0
+size_flags_horizontal = 3
+custom_fonts/font = SubResource( 3 )
+text = "Do various stretches.
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+readonly = true
+wrap_enabled = true
+
+[node name="ScrollContainer" type="ScrollContainer" parent="."]
+margin_top = 304.0
+margin_right = 1026.0
+margin_bottom = 1644.0
+size_flags_vertical = 3
+
+[node name="SubtaskList" type="VBoxContainer" parent="ScrollContainer"]
+unique_name_in_owner = true
+margin_right = 1026.0
+margin_bottom = 110.0
+size_flags_horizontal = 3
+
+[node name="TaskItem" parent="ScrollContainer/SubtaskList" instance=ExtResource( 2 )]